Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
8c94f84e
Commit
8c94f84e
authored
Dec 22, 2009
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Zope 2.12.2
parent
1cd36a0c
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
210 deletions
+4
-210
configure
configure
+0
-206
doc/CHANGES.rst
doc/CHANGES.rst
+1
-1
inst/WinBuilders/mk/zope.mk
inst/WinBuilders/mk/zope.mk
+1
-1
inst/versions.py
inst/versions.py
+1
-1
setup.py
setup.py
+1
-1
No files found.
configure
deleted
100755 → 0
View file @
1cd36a0c
#!/bin/sh
# Zope configure script
# $Id$
#####################################################################
# BEGIN EDITABLE PARAMETERS #
#####################################################################
# Place the optimal target version number for Zope (as returned by sys.version)
# below
TARGET
=
"2.5.4"
# Order a list of "acceptable" python version numbers (as returned by
# sys.version) below in "best" to "worst" order, not including the
# target version. Up to six acceptable python versions are allowed.
# Do not include the target version number in this list!
ACCEPTABLE
=
"2.6.1"
# provide the executable names for all the acceptable versions
# (and the target version) below
EXENAMES
=
"python python2 python2.5 python2.6"
#####################################################################
# END EDITABLE PARAMETERS #
#####################################################################
# where are we?
HERE
=
`
dirname
$0
`
# should we be quiet?
QUIET
=
""
usage
()
{
echo
echo
"configure [--help] [--quiet] [--with-python=path] [--prefix=path] "
echo
" [--build-base=path] [--ignore-largefile] [--ignore-zlib]"
echo
" [--optimize]"
echo
echo
" Creates a Makefile suitable for building and installing Zope"
echo
echo
" Options: "
echo
" --help shows usage and quits"
echo
" --quiet suppress nonessential output"
echo
" --with-python specify a path to a Python interpreter to use"
echo
" --prefix specify an installation path for binary data"
echo
" --build-base specify a temporary path for build files"
echo
" --ignore-largefile ignore large file support warnings"
echo
" --ignore-expat ignore warnings about expat/pyexpat"
echo
" --ignore-zlib ignore warnings about zlib"
echo
" --optimize optimize compiled Python bytecode"
echo
" --no-compile Dont compile Python bytecode"
echo
echo
" Given no options, configure will search your PATH for a suitable"
echo
" Python interpreter and will use '/opt/Zope-<ZOPE_MAJOR_VERSION>'"
echo
" as a prefix."
echo
}
# bootstrap ourselves by finding a Python interpreter if necessary
get_python
()
{
OLDIFS
=
"
$IFS
"
IFS
=
":"
FOUND
=
""
VERSION
=
""
FOUNDLIST
=
""
out
"Testing for an acceptable Python interpreter..."
out
""
for
DIR
in
$PATH
;
do
IFS
=
"
$OLDIFS
"
for
EXECUTABLE
in
$EXENAMES
;
do
FULL
=
"
$DIR
/
$EXECUTABLE
"
if
[
-x
"
$FULL
"
-a
!
-d
"
$FULL
"
]
;
then
CMD
=
"import string,sys;a=string.split(sys.version)[0]"
# Strip trailing + from version number
CMD
=
"
$CMD
;a=(a[-1]=='+')and(a[:-1])or(a);print a"
VERSION
=
`
"
$FULL
"
-c
"
$CMD
"
`
out
" Python version
$VERSION
found at
$FULL
"
if
[
"
$VERSION
"
=
"
$TARGET
"
]
;
then
FOUND
=
"
$FULL
"
FOUNDVERSION
=
$VERSION
break
2
else
i
=
1
;
for
ACC
in
$ACCEPTABLE
;
do
i
=
`
expr
$i
+ 1
`
for
SLOT
in
$FOUNDLIST
;
do
if
[
$SLOT
-eq
$i
]
;
then
# slot "i" already populated. This means we've
# already found this particular version of
# python. Continue the for ACC in
# $ACCEPTABLE loop and don't overwrite the
# one we already found (interpreters first
# on the path win).
continue
2
fi
done
if
[
"
$VERSION
"
=
"
$ACC
"
]
;
then
FOUNDLIST
=
"
$FOUNDLIST
$i
"
eval
"FOUND
$i
=
$FULL
"
eval
"FOUNDVERSION
$i
=
$VERSION
"
fi
done
fi
fi
done
done
if
[
"
$VERSION
"
=
"
$TARGET
"
]
;
then
out
""
out
" The optimum Python version (
$TARGET
) was found at
$FOUND
."
elif
[
-z
"
$FOUND1
"
]
&&
[
-z
"
$FOUND2
"
]
&&
[
-z
"
$FOUND3
"
]
&&
[
-z
"
$FOUND4
"
]
&&
[
-z
"
$FOUND5
"
]
&&
[
-z
"
$FOUND6
"
]
;
then
out
""
out
" No suitable Python version found. You should install"
out
" Python version
$TARGET
before continuing."
if
[
"
$ACCEPTABLE
"
]
;
then
out
" Versions
$ACCEPTABLE
also work, but not as optimally."
fi
exit
1
else
if
[
-n
"
$FOUND1
"
]
;
then
FOUND
=
$FOUND1
FOUNDVERSION
=
$FOUNDVERSION1
elif
[
-n
"
$FOUND2
"
]
;
then
FOUND
=
$FOUND2
FOUNDVERSION
=
$FOUNDVERSION2
elif
[
-n
"
$FOUND3
"
]
;
then
FOUND
=
$FOUND3
FOUNDVERSION
=
$FOUNDVERSION3
elif
[
-n
"
$FOUND4
"
]
;
then
FOUND
=
$FOUND4
FOUNDVERSION
=
$FOUNDVERSION4
elif
[
-n
"
$FOUND5
"
]
;
then
FOUND
=
$FOUND5
FOUNDVERSION
=
$FOUNDVERSION5
elif
[
-n
"
$FOUND6
"
]
;
then
FOUND
=
$FOUND6
FOUNDVERSION
=
$FOUNDVERSION6
fi
out
""
out
" !! WARNING !! "
out
" An acceptable, but non-optimal Python version (
$FOUNDVERSION
) "
out
" was found at '
$FOUND
'."
out
" But consider installing version '
$TARGET
' before running "
out
" 'make'. If this isn't the Python version or interpreter "
out
" instance you wish to use, you may specify a Python interpreter"
out
" manually by rerunning the ./configure script with the "
out
" '--with-python' option."
fi
out
""
}
out
()
{
if
[
-z
"
$QUIET
"
]
;
then
echo
$1
fi
}
NEWOPTS
=
""
for
OPT
in
$@
;
do
case
"
$OPT
"
in
--h
*
|
-h
*
)
usage
exit
0
;;
--with-python
=
*
)
# pop this argument from the arglist, it is not valid to
# pass this along to the Python configurator.
shift
;
FOUND
=
`
echo
$OPT
|
sed
-e
's/--with-python\=//'
`
# use eval to do tilde expansion below
eval
"FOUND='
$FOUND
'"
out
""
out
"Using Python interpreter at
$FOUND
"
;;
--with-python
)
# in case someone passed in a --with-python without a value,
# we raise an error instead of passing it along to configure.py
# (which would raise an inscrutable error were it to receive this
# option).
out
"--with-python argument requires an option"
exit
1
;;
--quiet
*
|
-q
*
)
QUIET
=
"true"
NEWOPTS
=
"
$NEWOPTS
$OPT
"
;;
*
)
NEWOPTS
=
"
$NEWOPTS
$OPT
"
;;
esac
done
out
""
out
"Configuring Zope installation"
out
""
if
[
-z
"
$FOUND
"
]
;
then
get_python
fi
# run the Python configurator
"
$FOUND
"
"
$HERE
/inst/configure.py"
$NEWOPTS
doc/CHANGES.rst
View file @
8c94f84e
...
...
@@ -5,7 +5,7 @@ This file contains change information for the current Zope release.
Change information for previous versions of Zope can be found in the
file HISTORY.txt.
Zope 2.12.2 (
unreleased
)
Zope 2.12.2 (
2009-12-22
)
------------------------
Features Added
...
...
inst/WinBuilders/mk/zope.mk
View file @
8c94f84e
ZOPEVERSION
=
2.12.
1
-final
ZOPEVERSION
=
2.12.
2
-final
ZOPEDIRNAME
:=
Zope-
$(ZOPEVERSION)
ZOPE_REQUIRED_FILES
=
tmp/
$(ZOPEDIRNAME)
.tgz
...
...
inst/versions.py
View file @
8c94f84e
ZOPE_MAJOR_VERSION
=
'2.12'
ZOPE_MINOR_VERSION
=
'
1
'
ZOPE_MINOR_VERSION
=
'
2
'
ZOPE_BRANCH_NAME
=
'$Name$'
[
6
:]
or
'no-branch'
# always start prerelease branches with '0' to avoid upgrade
...
...
setup.py
View file @
8c94f84e
...
...
@@ -19,7 +19,7 @@ from setuptools import setup, find_packages, Extension
EXTENSIONCLASS_INCLUDEDIRS
=
[
'include'
,
'src'
]
params
=
dict
(
name
=
'Zope2'
,
version
=
'2.12.2
-dev
'
,
version
=
'2.12.2'
,
url
=
'http://www.zope.org'
,
license
=
'ZPL 2.1'
,
description
=
'Zope2 application server / web framework'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment