python: update to 2.4.3
This commit is contained in:
parent
f905ae12fe
commit
4b455c0241
@ -1189,7 +1189,6 @@ drwxr-xr-x root/root usr/lib/python2.4/lib-dynload/
|
||||
-rwxr-xr-x root/root usr/lib/python2.4/lib-dynload/operator.so
|
||||
-rwxr-xr-x root/root usr/lib/python2.4/lib-dynload/ossaudiodev.so
|
||||
-rwxr-xr-x root/root usr/lib/python2.4/lib-dynload/parser.so
|
||||
-rwxr-xr-x root/root usr/lib/python2.4/lib-dynload/pwd.so
|
||||
-rwxr-xr-x root/root usr/lib/python2.4/lib-dynload/pyexpat.so
|
||||
-r-xr-xr-x root/root usr/lib/python2.4/lib-dynload/readline.so
|
||||
-rwxr-xr-x root/root usr/lib/python2.4/lib-dynload/regex.so
|
||||
|
@ -1,3 +1,2 @@
|
||||
98db1465629693fc434d4dc52db93838 Python-2.4.2.tar.bz2
|
||||
3df7e7060e9a8dea0e46e1103b5bf7a0 python-2.4.2-bsddb.patch
|
||||
84c40c182680d71e2d2330a4f38e5647 python-2.4.2.patch
|
||||
141c683447d5e76be1d2bd4829574f02 Python-2.4.3.tar.bz2
|
||||
a54587fd362438b02bc6ab8bdf0e7757 python-2.4.3.patch
|
||||
|
@ -4,16 +4,15 @@
|
||||
# Depends on: db, gdbm, ncurses, openssl, readline, zlib
|
||||
|
||||
name=python
|
||||
version=2.4.2
|
||||
release=2
|
||||
version=2.4.3
|
||||
release=1
|
||||
source=(http://www.python.org/ftp/$name/$version/Python-$version.tar.bz2 \
|
||||
$name-$version.patch $name-$version-bsddb.patch)
|
||||
$name-$version.patch)
|
||||
|
||||
build () {
|
||||
cd Python-$version
|
||||
|
||||
patch -p1 < ../$name-$version.patch
|
||||
patch -p1 < ../$name-$version-bsddb.patch
|
||||
patch -p1 < $SRC/$name-$version.patch
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--enable-shared \
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,16 +1,16 @@
|
||||
diff -Nru Python-2.4.2.orig/Lib/cgi.py Python-2.4.2/Lib/cgi.py
|
||||
--- Python-2.4.2.orig/Lib/cgi.py 2005-09-28 18:54:08.000000000 +0200
|
||||
+++ Python-2.4.2/Lib/cgi.py 2005-09-28 18:54:29.000000000 +0200
|
||||
diff -Nru Python-2.4.3.orig/Lib/cgi.py Python-2.4.3/Lib/cgi.py
|
||||
--- Python-2.4.3.orig/Lib/cgi.py 2006-03-30 09:23:03.000000000 +0200
|
||||
+++ Python-2.4.3/Lib/cgi.py 2006-03-30 09:23:19.000000000 +0200
|
||||
@@ -1,4 +1,4 @@
|
||||
-#! /usr/local/bin/python
|
||||
+#! /usr/bin/python
|
||||
|
||||
# NOTE: the above "/usr/local/bin/python" is NOT a mistake. It is
|
||||
# intentionally NOT "/usr/bin/env python". On many systems
|
||||
diff -Nru Python-2.4.2.orig/Modules/Setup.dist Python-2.4.2/Modules/Setup.dist
|
||||
--- Python-2.4.2.orig/Modules/Setup.dist 2005-09-28 18:54:10.000000000 +0200
|
||||
+++ Python-2.4.2/Modules/Setup.dist 2005-09-28 18:54:29.000000000 +0200
|
||||
@@ -147,7 +147,7 @@
|
||||
diff -Nru Python-2.4.3.orig/Modules/Setup.dist Python-2.4.3/Modules/Setup.dist
|
||||
--- Python-2.4.3.orig/Modules/Setup.dist 2006-03-30 09:23:03.000000000 +0200
|
||||
+++ Python-2.4.3/Modules/Setup.dist 2006-03-30 09:23:19.000000000 +0200
|
||||
@@ -149,7 +149,7 @@
|
||||
# modules are to be built as shared libraries (see above for more
|
||||
# detail; also note that *static* reverses this effect):
|
||||
|
||||
@ -19,7 +19,7 @@ diff -Nru Python-2.4.2.orig/Modules/Setup.dist Python-2.4.2/Modules/Setup.dist
|
||||
|
||||
# GNU readline. Unlike previous Python incarnations, GNU readline is
|
||||
# now incorporated in an optional module, configured in the Setup file
|
||||
@@ -157,7 +157,7 @@
|
||||
@@ -159,7 +159,7 @@
|
||||
# it, depending on your system -- see the GNU readline instructions.
|
||||
# It's okay for this to be a shared library, too.
|
||||
|
||||
@ -28,7 +28,7 @@ diff -Nru Python-2.4.2.orig/Modules/Setup.dist Python-2.4.2/Modules/Setup.dist
|
||||
|
||||
|
||||
# Modules that should always be present (non UNIX dependent):
|
||||
@@ -349,9 +349,9 @@
|
||||
@@ -350,9 +350,9 @@
|
||||
#
|
||||
# First, look at Setup.config; configure may have set this for you.
|
||||
|
||||
@ -40,7 +40,7 @@ diff -Nru Python-2.4.2.orig/Modules/Setup.dist Python-2.4.2/Modules/Setup.dist
|
||||
|
||||
|
||||
# Generic (SunOS / SVR4) dynamic loading module.
|
||||
@@ -376,13 +376,13 @@
|
||||
@@ -377,13 +377,13 @@
|
||||
#
|
||||
# First, look at Setup.config; configure may have set this for you.
|
||||
|
||||
@ -56,7 +56,7 @@ diff -Nru Python-2.4.2.orig/Modules/Setup.dist Python-2.4.2/Modules/Setup.dist
|
||||
|
||||
|
||||
# Sleepycat Berkeley DB interface.
|
||||
@@ -397,11 +397,11 @@
|
||||
@@ -398,11 +398,11 @@
|
||||
#
|
||||
# Edit the variables DB and DBLIBVERto point to the db top directory
|
||||
# and the subdirectory of PORT where you built it.
|
||||
@ -73,10 +73,10 @@ diff -Nru Python-2.4.2.orig/Modules/Setup.dist Python-2.4.2/Modules/Setup.dist
|
||||
|
||||
# Historical Berkeley DB 1.85
|
||||
#
|
||||
diff -Nru Python-2.4.2.orig/configure Python-2.4.2/configure
|
||||
--- Python-2.4.2.orig/configure 2005-09-28 18:54:09.000000000 +0200
|
||||
+++ Python-2.4.2/configure 2005-09-28 18:54:29.000000000 +0200
|
||||
@@ -3743,7 +3743,7 @@
|
||||
diff -Nru Python-2.4.3.orig/configure Python-2.4.3/configure
|
||||
--- Python-2.4.3.orig/configure 2006-03-30 09:23:03.000000000 +0200
|
||||
+++ Python-2.4.3/configure 2006-03-30 09:23:19.000000000 +0200
|
||||
@@ -3752,7 +3752,7 @@
|
||||
# debug builds.
|
||||
OPT="-g -Wall -Wstrict-prototypes"
|
||||
else
|
Loading…
x
Reference in New Issue
Block a user