diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2006-10-09 14:29:18 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2006-10-09 14:29:18 +0000 |
commit | 1d18bb4fff9ca7e0fca8452b1874fe1f58ffca6f (patch) | |
tree | 147f92d454787d912bee658515932bf0eeae4d6c /lang/python25/files/patch-setup.py | |
parent | - Update the main python version to 2.5. (diff) |
- Update the main python version to 2.5.
- Now, lang/python is just a meta-port which depends on lang/python25.
- And all versions of Python ports have short version identifier in its
package name; python25-2.5, python24-2.4.3 and etc.
- Also you must upgrade all python modules after lang/python updated,
cd /usr/ports/lang/python && make upgrade-site-packages
- Give maintainership of Python ports to the new python@ group which
includes me, alexbl@ and others.
Notes
Notes:
svn path=/head/; revision=175093
Diffstat (limited to 'lang/python25/files/patch-setup.py')
-rw-r--r-- | lang/python25/files/patch-setup.py | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/lang/python25/files/patch-setup.py b/lang/python25/files/patch-setup.py index cf0beedab0c6..07708de2c558 100644 --- a/lang/python25/files/patch-setup.py +++ b/lang/python25/files/patch-setup.py @@ -1,5 +1,5 @@ ---- setup.py.orig Fri Jun 30 15:18:39 2006 -+++ setup.py Thu Aug 10 18:41:33 2006 +--- setup.py.orig Thu Aug 10 08:42:18 2006 ++++ setup.py Thu Oct 5 13:26:43 2006 @@ -15,7 +15,7 @@ from distutils.command.install_lib import install_lib @@ -18,13 +18,12 @@ # Modules that provide persistent dictionary-like semantics. You will -@@ -1498,8 +1500,7 @@ - ext_modules=[Extension('_struct', ['_struct.c'])], - - # Scripts to install -- scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle', -- 'Lib/smtpd.py'] -+ scripts = [] - ) - - # --install-platlib +@@ -903,7 +905,7 @@ + # Curses support, requiring the System V version of curses, often + # provided by the ncurses library. + panel_library = 'panel' +- if (self.compiler.find_library_file(lib_dirs, 'ncursesw')): ++ if (self.compiler.find_library_file(lib_dirs, 'xxxncursesw')): + curses_libs = ['ncursesw'] + # Bug 1464056: If _curses.so links with ncursesw, + # _curses_panel.so must link with panelw. |