summaryrefslogtreecommitdiff
path: root/lang/python22
AgeCommit message (Collapse)AuthorFilesLines
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-5/+7
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-10The BUILDLINK_DEPENDS.<pkg> lines should match between the buildlink3.mkjlam1-2/+2
and any pre-existing buildlink2.mk files.
2004-01-29use ${EGREP} instead of relying on GNU grep features.grant1-2/+2
2004-01-27Add USE_GCC_SHLIB to python2 packages:abs2-2/+4
python20 to python20-2.0.1nb6 python21 to python21-2.1.3nb2 python21-pth to python21-2.1.3nb4 python22 to python22-2.2.3nb1 python22-pth to python22-2.2.3nb1 python23 to python23-2.3.3nb1 python23-pth to python23-2.3.3nb1
2004-01-25* Follow the new buildlink3 standard and append to BUILDLINK_DEPENDS.<pkg>.jlam1-14/+9
* Use BUILDLINK_{INCDIRS,LIBDIRS}.<pkg> instead of using BUILDLINK_{CPPFLAGS,LDFLAGS}.<pkg> since we're just dealing with adding directories to the various search paths.
2004-01-25bl3ifyrecht1-3/+3
2004-01-25add buildlink3.mkrecht1-0/+30
2004-01-24split the common parts of python22 and python22-pth into Makefile.commongrant9-2241/+2248
and fix PLIST for some modules which are only installed on Solaris.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-06g/c the now unneeded explicite export of LINK_ALL_LIBGCC_HACK to thedrochner1-2/+1
environment
2003-06-06update Python22 to 2.2.3drochner6-26/+97
This is a bugfix release. Also, use the LINK_ALL_LIBGCC_HACK just introduced to link the interpreter against libgcc. This should fix PR pkg/16144 in the Python2.2 (and NetBSD-1.5) case.
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-04-17test_gettext doesn't hang with threaded Python in -current anymorejdolecek1-2/+1
2003-04-17Remove comment about PR lib/20214 (libpthread assertion failure triggereddarcy1-2/+1
by py-bsddb3) since the PR has been closed. Two other issues remain.
2003-04-08modify a selftest which uses unportable struct packing so that itdrochner2-1/+15
succeeds on alpha
2003-04-05Forgot to add in last commit.jschauma1-0/+67
2003-04-05IRIX also uses LOWER_OPSYS as PY_PLATFORM.jschauma1-2/+2
2003-03-14(1) Publicly export the value of _OPSYS_RPATH_NAME as RPATH_FLAG;jlam1-2/+3
Makefiles simply need to use this value often, for better or for worse. (2) Create a new variable FIX_RPATH that lists variables that should be cleansed of -R or -rpath values if ${_USE_RPATH} is "no". By default, FIX_RPATH contains LIBS, X11_LDFLAGS, and LDFLAGS, and additional variables may be appended from package Makefiles.
2003-02-06revert previous, adding some commentsdrochner1-2/+7
Before using native pthreads per default, we should make sure it is at least stable enough for the Python selftests and pkgsrc applications. (in response to PR pkg/20214)
2003-01-20don't disable threads on NetBSD if native threads are availablejdolecek1-2/+2
XXX only python22 pkg is changed this way, since this is the only XXX one having special case for NetBSD; python15, python20, python21 disable XXX threads on all pkgsrc operating systems
2002-12-25Use automatic PLIST handling.grant6-8/+6
2002-11-23Provide Darwin-specific packing list entries.schmonz2-1/+35
2002-10-30Add PLIST for Solaris.markd2-1/+22
2002-10-16Add an unofficial patch that allows xmlrpclib to supply Basic Auth.tsarna2-1/+90
Shouldn't affect other uses, just ads a missing feature.
2002-10-15Upgrade python22 package from 2.2.1 to 2.2.2.tsarna3-12/+53
Mostly bug fixes, a few enhancements, notably in the email package.
2002-10-13Use BUILDLINK_FILES_CMD.<pkg> instead of manually adding the shell pipelinejlam1-3/+2
to BUILDLINK_FILES.<pkg>.
2002-10-12Remove debugging code.jlam1-4/+1
2002-10-12Revert previous...GREP is correct.jlam1-2/+5
2002-10-12Use EGREP instead of GREP.jlam1-2/+2
2002-10-10Clean up my previous commit. The --withouts where no-ops (hence thetsarna1-5/+1
nned for the updated patch in the previous commit) and the empty "PLIST_SRC+=" was kinda silly.
2002-10-09Don't automatically add BUILDLINK_LDFLAGS.python22 to the LDFLAGS. Allowjlam1-3/+1
package Makefiles to make that decision for themselves.
2002-10-09Use BUILDLINK_PLIST_CMD.python22 to create BUILDLINK_FILES.python22,jlam1-6/+6
instead of trying to parse the PLIST, which may not exist, or may not have a full list of files installed by the package.
2002-10-09Create BUILDLINK_CPPFLAGS and BUILDLINK_LDFLAGS for the python packages sojlam1-1/+10
as to find their headers and libraries. Also allow "-lpython" to resolve to the versioned libpython (-lpython2.2, etc.).
2002-10-09Fix up BUILDLINK_FILES shell expression after PLIST was split into manyjlam1-3/+5
files.
2002-10-09Remove trailing newline.jlam1-2/+1
2002-09-24Add Zoularis/Linux supporttsarna7-36/+110
2002-09-20Python extensions also install headers into ${PYINC}, so we can't justjlam1-2/+5
assume all of those headers belong to the python package. We use the trick for kdelibs2 and generate the BUILDLINK_FILES list from the PLIST.
2002-09-20Add buildlink2.mk file for use by other package Makefiles, and byjlam1-0/+23
python/pyversion.mk in particular.
2002-09-20buildlink1 -> buildlink2jlam1-3/+3
2002-04-15update to 2.2.1drochner6-84/+24
Changes: -Added new builtin function bool() and new builtin constants True and False to ease backporting of code developed for Python 2.3. In 2.2, bool() returns 1 or 0, True == 1, and False == 0. -C API: A type can now inherit its metatype from its base type. -Fixes
2002-04-09Teach the extension building process about buildlink, and allow passingjlam4-18/+68
LDFLAGS to the linker command when linking a python extension. This lets us pass the right flags to correctly find libraries required for certain extensions, e.g. zlib.so.
2002-03-22-remove hardwired "/usr/local" and "/usr/contrib" library search paths,drochner4-6/+111
as suggested by Johnny Lam -don't try to build the "locale" module - it doesn't work anyway -pull up a fix from Python CVS to get more consistent math exceptions (eg pow(1e-200,2) vs. math.pow(1e-200,2)) This will be part of 2.2.1.
2002-01-28-don't build modules which don't work on 64-bit platformsdrochner3-9/+35
-don't even try to build the curses modules - its failure is detected during build but this causes a lot of noise
2002-01-15initial import of a Python-2.2 pkgdrochner6-0/+2039