aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python26
Commit message (Collapse)AuthorAgeFilesLines
* - Use dirrmtry in lib-old dir to fix some plist leftloversmiwi2009-08-132-2/+2
|
* - Fix build with WITH_SEM but ${OSVERSION} < 701106 (mark IGNORE correctly)lwhsu2009-08-021-1/+0
| | | | | PR: ports/136992 Submitted by: Andrey Zonov <andrey.zonov AT gmail.com>
* - Ask the first Python installed to install the bin/python link,lwhsu2009-07-141-2/+3
| | | | | | | | and be the default Python version PR: ports/109550 Submitted by: David Yeske <dyeske AT yahoo.com> Obtained from: tmclaugh
* - Honor EXAMPLESDIR, DATADIR, NOPORTEXAMPLES, NOPORTDATAlwhsu2009-07-132-576/+578
| | | | - portlint(1)
* - Update lang/python26 and make Python 2.6.2 to the default Python versionmiwi2009-06-094-15/+30
| | | | | Tested by: 3 pointyhat runs Thanks to: pav, gahr, lwhsu, mva, amdmi3
* Add support for building Python against GNU Portable Threads (Pth),bms2009-03-147-21/+129
| | | | | | | | | | | | | | | | and also add experimental support for POSIX semaphores in FreeBSD 7-STABLE and up. The option knobs PTH and SEM respectively are added to enable this behaviour. Python is able to use POSIX semaphores for thread synchronization in threading, and prefers them. The multiprocessing module in Python 2.6 requires POSIX semaphores, however, the FreeBSD rtld and malloc need further work to allow a process to call pthread_create() immediately after fork() as it is not something allowed by a strict interpretation of the POSIX specs; therefore allow GNU Pth to be used until the situation is resolved. Approved by: miwi
* Make sure the singal is delivered to the main thread, where pythonsobomax2009-02-272-1/+31
| | | | | | | | | | | | | | | runs its signal handlers, not to a random thread that happens to be executing at the time when signal arrives. This functionality has been lost since Python 2.3, possible cause is that the linux implementation of POSIX threads always delivered signal to the main thread. This bug results in rather annoying inability to terminate threading script with ^C for example and there could be other issues as well. Bump PORTREVISION. PR: ports/131080 Submitted by: Andriy Pylypenko <bamby@sippysoft.com> Approved by: MAINTAINER's timeout
* Fix typo in UCS4 knob handling.tmclaugh2009-02-231-1/+2
| | | | Noted by: Dominic Fandrey <kamikaze@bsdforen.de> via freebsd-python@
* - Update to python 2.5.4 and python 2.6.1miwi2009-02-173-14/+23
| | | | | Reviewed by: perky | lwhsu Tested with: exp-run via pav
* Introduce two new versions of Python: 2.6 and 3.0rc1 (finally!)perky2008-10-1327-1945/+323
| | | | | | | | Python 2.6 will be the next default python version when enough testings of consumer ports are done. The new "2to3" program is renamed to 2to3-2.6 and 2to3-3.0 for each version, respectively. Repo-copied by: marcus
* - Security fixesmiwi2008-09-0820-1/+877
| | | | | | | | | | | | | | | | | | | Multiple vulnerabilities: 1) Various integer overflow errors exist in core modules e.g. stringobject, unicodeobject, bufferobject, longobject, tupleobject, stropmodule, gcmodule, mmapmodule. 2) An integer overflow in the hashlib module can lead to an unreliable cryptographic digest results. 3) Integer overflow errors in the processing of unicode strings can be exploited to cause buffer overflows on 32-bit systems. 4) An integer overflow exists in the PyOS_vsnprintf() function on architectures that do not have a "vsnprintf()" function. 5) An integer underflow error in the PyOS_vsnprintf() function when passing zero-length strings can lead to memory corruption. PR: 127172 (based on) Submitted by: bf <bf2006a@yahoo.com> Obtained from: python svn Security: CVE-2008-2315, CVE-2008-2316, CVE-2008-3142, CVE-2008-3144, CVE-2008-3143. (vuxml come later)
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.rafan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav)
* - Fix zlib crash from zlib.decompressobj().flush(val)miwi2008-04-253-1/+28
| | | | | | | | | | when val was not positive. It tried to allocate negative or zero memory. That fails. - Bump PORTREVISION Reviewed by: alexbl Obtained from: python svn Security: http://www.vuxml.org/freebsd/ec41c3e2-129c-11dd-bab7-0016179b2dd5.html
* - Remove unneeded dependency from gtk12/gtk20 [1]miwi2008-04-201-2/+2
| | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
* Force to build bsddb185 module to make pkg-plist consistent.perky2008-02-291-9/+18
| | | | Reported by: ports/121191
* - Fix plistpav2008-02-262-0/+2
| | | | Reported by: pointyhat
* Update to Python 2.5.2.perky2008-02-243-10/+125
|
* Add support for FreeBSD 8.perky2007-10-293-8/+945
| | | | Obtained from: Python SVN (r58697, r58698)
* Remove support for OSVERSION < 5edwin2007-10-041-10/+2
|
* - Make Python 2.5.1 the default Python versionalexbl2007-07-303-13/+40
| | | | | | | | | | - Add significantly better support in bsd.python.mk for working with Python Eggs and the easy_install system Tested by: pointyhat runs Approved by: pav (portmgr) Most work by: perky Thanks to: pav
* - Force setup.py picks up readline and ncurses from base. This fixes buildrafan2007-02-281-3/+37
| | | | | | | | | when devel/ncurses installed. - Similar to python24, don't pick up ncursesw in python25. This results in both ncurses are linked into _curses.so Tested by: krion Approved by: alexbl (python@)
* Correct a patch not to install unwanted files.perky2006-10-161-10/+10
| | | | Approved by: portmgr (kris)
* Revert the default version of Python to 2.4 for the ports freezeperky2006-10-133-14/+13
| | | | | | | | | period. Python 2.5 brought a vast range of incompatibility to a large number of ports, so the python@ team will do more basic compatibility work in a private repository and merge it later. Sorry for the inconvenience. Approved by: portmgr (kris)
* Fix build with WITH_FPECTL=yes on i386.perky2006-10-101-0/+1
| | | | | PR: 104243 Submitted by: S Roberts <stacey@vickiandstacey.com>
* - Restrict a dependency to the real interpreter to _RUN only. Thisperky2006-10-091-7/+0
| | | | | allows portupgrade to upgrade lang/python from 2.4 flawlessly. - So remove obsolete instruction.
* Simple portupgrade doesn't upgrade python correctly, so add a checkperky2006-10-091-0/+7
| | | | and an instruction.
* - Update the main python version to 2.5.perky2006-10-095-22/+45
| | | | | | | | | | | - 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.
* - Update lang/python-devel to Python 2.5c2perky2006-09-143-10/+22
| | | | - Sync some recent workarounds from lang/python.
* Fix plist for FreeBSD 7 or systems with OpenSSL 0.9.8.perky2006-08-102-3/+17
| | | | Spotted by: pointyhat via kris
* Update python-devel to 2.5b3.perky2006-08-043-35/+39
|
* Mark broken: fails to install cleanly.linimon2006-07-161-0/+2
|
* Update python-devel to 2.5b1.perky2006-06-234-22/+149
|
* Remove USE_REINPLACE from the categories starting with Ledwin2006-05-101-1/+0
|
* Fix build on environments without python.perky2006-03-281-0/+3
|
* Update to Python trunk snapshot as of 2006-03-26.perky2006-03-264-2969/+1322
|
* SHA256ifyedwin2006-01-221-0/+1
| | | | Approved by: krion@
* Update python-devel to 2.5.a0.20050728 snapshot.perky2005-07-283-25/+43
|
* At Kris's request, back out the MACHINE_ARCH spelling correction untilobrien2005-04-121-1/+1
| | | | after 5.4-RELEASE.
* Assist getting more ports working on AMD64 by obeying theobrien2005-04-111-1/+1
| | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
* Fix package building on non-i386 platforms by unrestrict `audioop`perky2005-03-291-1/+1
| | | | | | module for them in plist. Approved by: portmgr (kris)
* Unbreak package building on ia64, alpha, amd64 and sparc64 byperky2005-03-231-1/+1
| | | | | | adding ossaudiodev module to their plists, either. Approved by: portmgr (kris)
* Add a patch from PSF-2005-001 which fixes SimpleXMLRPCServerperky2005-02-042-0/+6
| | | | | | | | vulnerability. Security: CAN-2005-0089 Security: http://www.vuxml.org/freebsd/6afa87d3-764b-11d9-b0e7-0000e249a0a2.html Security: SimpleXMLRPCServer.py allows unrestricted traversal
* Resurrect lang/python-devel port with Python 2.5 development snapshotperky2005-01-295-563/+58
| | | | as of today.
* IGNORE this port for a while. Some 2.5.a0 snapshot will be availableperky2004-12-011-1/+3
| | | | in this port soon.
* - Update python-devel to 2.4c1perky2004-11-212-3/+3
|
* farewell to libxpg4.sf2004-11-151-7/+0
|
* Update -devel to Python-2.4b2.perky2004-11-073-6/+14
|
* Update to 2.4a3perky2004-09-046-160/+43
| | | | | PR: 71340 Submitted by: Marcus Grando <marcus@corp.grupos.com.br>
* - Add support for FreeBSD 6.perky2004-08-215-14/+667
| | | | | | | | - Drop FreeBSD 2 support. - Fix build on -stable. Spotted by: marcus, kris Obtained from: Python CVS
* - Update to 2.4a2perky2004-08-075-53/+82
| | | | | | | - Add IPV6 option [1] PR: 69950 [1] Submitted by: Marcus Grando <marcus@corp.grupos.com.br> [1]
* Allow to install and use 3rd party packages in X11BASE.perky2004-07-101-4/+8
| | | | | | | ${X11BASE}/lib/{python2.3{,/site-packages},site-python} will be added to your python's sys.path if each directory exists. Suggested by: marcus
* The tarball for Python 2.4a1 is renamed in the site.perky2004-07-101-2/+2
|
* - Update to 2.4a1, the first alpha release of Python 2.4.perky2004-07-086-37/+89
| | | | | | | | | | - Provide USE_PYTHON_BUILD and USE_PYTHON_RUN to allow explicit dependencies. [1] - Provide PYDISTUTILS_CONFIGUREARGS and run ${PYSETUP} config on 'do-configure' targets. [2] Reviewed by: eik [1] Submitted by: Mike Brown <mike@skew.org>
* More OPTIONS change of UCS2->UCS4 which is missed in previous commit.perky2004-06-281-1/+1
|
* Test lack of non-default options for CONFIG-unaware environmentsperky2004-06-281-3/+3
| | | | | | as done in lang/python either. Submitted by: fjoe
* Use OPTIONS.perky2004-05-071-12/+13
| | | | Submitted by: Stephane E. Potvin <sepotvin@videotron.ca>
* Reduce configure warning.perky2004-04-181-0/+1
| | | | | | PR: 55180 [1], 65680 [2] Submitted by: Rui Lopes <rui@ruilopes.com> [1], Roman Neuhauser <neuhauser@chello.cz> [2]
* Correct pre-install target to pre-su-install so that the credentialperky2004-03-181-1/+1
| | | | | | switch happens before directories are created under PREFIX. Submitted by: marcel
* Update to Python development snapshot as of 040311.perky2004-03-113-6/+133
| | | | | I must say that it's faster by 10%~ than previous snapshot or 2.3. And it incorporated CJKCodecs from this! :)
* Create a symbolic link to lib/python2.3.so on lib/python2.3/config/perky2004-03-092-1/+3
| | | | | | for seamless upgrade from a static library. Suggested by: dd
* Build and install a shared library and its frontend besides static oneperky2004-03-082-19/+51
| | | | | | | | | | | by default. [HEADS UP] The python executable and static library isn't built PIC anymore even on amd64 and ia64. Please use a shared library instead. Requested by: jhay, dd Tested by: Charles Swiger <cswiger@mac.com>, Tim Middleton <x@Vex.Net>
* Fix plist.perky2004-01-091-0/+1
| | | | Reported by: Mun-Kyo Seo <munggo@pmy.lv>
* Add missed deltas on 2.4 040106 update.perky2004-01-092-7/+23
|
* Update python-devel to 2.4 20040106 snapshot.perky2004-01-091-2/+5
|
* Add WWW.demon2003-12-041-0/+2
| | | | Approved by: maintainer
* Ignore syntax errors on compiling 3rd party packages.perky2003-11-161-0/+16
| | | | Tested by: Lee Harr <missive@hotmail.com>
* - Include pyexpat module in python base ports because python incorporatedperky2003-11-053-1/+3
| | | | | | | | expat 1.95.6 in its distribution from Python-2.3. - Bump PORTREVISION subsequently. Requested by: Mike Brown <mike@skew.org> Jeremy Kloth <jeremy.kloth@fourthought.com>
* - Update lang/python-devel to Python-2.4 031022 snapshot.perky2003-10-306-35/+68
| | | | | | | | | | - Correct USE_ZOPE dependency to Python 2.1. [1] - Fetch from correct MASTER_SITE_SUBDIR when upgrading python in same branch. [2] - Enable installing separated standard modules for python-devel port. Reported by: Filippo Natali <pitonat@libero.it> [1], Yoshihiko Sarumaru <mistral@imasy.or.jp> [2]
* Don't use PYTHON_DISTFILE as well as PYTHON_WRKSRC on lang/python* portsperky2003-10-221-2/+2
| | | | | | | because it does not point the most recent version of each from ports/Mk/bsd.python.mk 1.38. Reported by: Andy Fawcett <andy@athame.co.uk>
* BUILD_STATIC by default as lang/python does.perky2003-08-231-1/+2
|
* Update to 2.4a0 snapshot of 1 Aug 2003perky2003-08-013-10/+10
|
* Update to 2.3c1perky2003-07-195-21/+13
|
* o Utilize MASTER_SITE_PYTHON.perky2003-07-043-19/+33
| | | | | | | | o Rename pydoc to pydoc${PORTVERSION} to avoid conflicts among these ports. (lang/python port keeps both of bin/pydoc and bin/pydoc2.2) o Set LATEST_LINK to ${PYTHON_VERSION:S/.//} except lang/python. Now, we can install all of these python versions together cleanly.
* Update new python-devel port to 2.3.b2.perky2003-07-034-445/+864
| | | | | | | | | | | | | This update introduces two new knobs to _disable_ somewhat experimental options: BUILD_STATIC=yes Unless this option is specified, the port will build python as shared binary. WITH_UCS2=yes Unless this option is specified, Py_UNICODE type will charge 4 bytes per character (as we do for wchar_t) Repo-copied by: joe (thanks!)
* Take maintainerships from alane's python ports.perky2003-06-091-1/+1
| | | | Rest in Peace, Alan.
* REST IN PEACEwill2003-06-091-1/+1
| | | | | | | | | Alan Eldridge Born December 15, 1961 in Iowa Died June 6, 2003 in Denver, Colorado Thank you for your contributions, you will be greatly missed.
* Update to 2.2.3perky2003-06-043-4/+62
| | | | | | PR: 52830 Submitted by: Chuck Swiger <chuck@pkix.net> (partly) Approved by: maintainer (implicitly)
* Destroy pkg-comment for some of the stranger uses in the tree,ade2003-03-072-1/+1
| | | | | | pending the final semi-automatic purge. Approved by: portmgr (implicitly)
* PORTREVSION => 2.alane2002-11-222-170/+2
| | | | | Fix error pointed out by tg@. Now just blow away the Tools subdir on uninstall in case something compiled that stuff.
* PORTREVISION => 1alane2002-11-221-0/+12
| | | | | | | | | | | | | | | | | | | Added lotsa missing files to pllist. Added dl module for those who like to live dangerously (petef?). PR: Submitted by: Reviewed by: Approved by: Obtained from: MFC after: PR: Submitted by: Reviewed by: Approved by: Obtained from: MFC after:
* PORTREVISION => 1alane2002-11-222-2/+168
| | | | | | | | | | | | | | | | | | | | | | | | | | Added lotsa missing files to pllist. Added dl module for those who like to live dangerously (petef?). PR: Submitted by: Reviewed by: Approved by: Obtained from: MFC after: PR: Submitted by: Reviewed by: Approved by: Obtained from: MFC after: PR: Submitted by: Reviewed by: Approved by: Obtained from: MFC after:
* Simplified threads configuration.alane2002-11-211-3/+5
|
* Take over as maintainer since tg is taking a leave of absence from portalane2002-11-161-1/+1
| | | | maintenance.
* Upgrade to Python-2.2.2.perky2002-10-175-30/+44
| | | | Approved by: tg
* Use new PYTHONPREFIX_*DIR variables to make these ports PREFIX-clean.tg2002-06-141-6/+6
|
* Fix building on the Alpha.tg2002-05-162-4/+10
| | | | Submitted by: gallatin
* Add patch from SF PR #541980. This fixes 4suite.tg2002-04-171-0/+14
| | | | Submitted by: nectar
* Upgrade to Python-2.2.tg2002-04-124-64/+6
| | | | | PR: 36977 Submitted by: Hye-Shik Chang <perky@fallin.lv>
* Add SourceForge as a well connected secondary MASTER_SITES location.tg2002-04-021-0/+2
| | | | Submitted by: "Jason R. Mastaler" <jason-dated-1018216403.d8ed28@mastaler.com>
* Explicitly enable IPv6 support.tg2002-04-021-2/+8
| | | | Submitted by: sumikawa
* Fix sizeof(wchar_t) calculation.tg2002-01-211-0/+10
|
* Implement PyObject_DelItemString(), which was obviously forgotten fortg2002-01-162-0/+57
| | | | | | | | Python-2.2. This will fix at least the metakit port. Bump PORTREVISION. Obtained from: Python CVS tree
* Upgrade lang/python to 2.2. Adjust bsd.python.mk accordingly.tg2002-01-074-134/+346
| | | | | | | PR: 33444 Submitted by: Hye-Shik Chang <perky@fallin.lv> Add new MD5 to dependent ports.
* Re-add fpectl.so to the plist to fix packaging. Re-enable supporttg2001-11-202-2/+2
| | | | | | for it in the python binary. Noticed by: will
* Don't build mpz extension, it's moved to a separate port.tg2001-10-193-10/+3
|
* Depend on math/libgmp when running a recent -current.tg2001-09-251-0/+6
|
* Upgrade to 2.1.1.tg2001-07-253-2/+10
|
* Upgrade to 2.1.tg2001-05-0212-1169/+876
|
* Fix building on -current.tg2001-04-261-0/+38
| | | | | PR: 26778 Obtained from: Python CVS
* -pthread --> ${PTHREAD_LIBS}sobomax2001-03-301-2/+2
| | | | | | | -D_THREAD_SAFE --> ${PTHREAD_CFLAGS} Note: my first intention was to test this out on bento/beta, but per ade's requiest I opted to do it quickly.
* Allow MAINTAINER to be redefined in a slave port.sobomax2001-03-291-1/+1
|
* MASTER_SITE changed.tg2000-12-071-1/+2
| | | | Submitted by: sobomax
* Install Demo/ dir to $PREFIX/share/examples/python.tg2000-11-292-3/+325
|
* Fix compilation on FreeBSD-3.x.tg2000-11-131-0/+6
| | | | | PR: 22226 Reviewed by: Alan Bawden <Alan@LCS.MIT.EDU>
* Upgrade to 2.0.tg2000-10-187-133/+302
|
* Rename PLIST.{Tools,gmp} to pkg-plist.{Tools,gmp}.asami2000-10-081-3/+3
|
* Use USE_PYTHON.tg2000-09-281-0/+1
|
* Upgrade to 1.6.tg2000-09-089-1239/+1726
|
* Don't create group-writable directories.tg2000-08-141-5/+12
| | | | Submitted by: jedgar
* Clarify comment even further.tg2000-07-281-1/+1
|
* - Clarify comment on thread support.tg2000-07-271-6/+10
| | | | | | - Don't link against libxpg4 on newer systems. - Remove last remnants of Tkinter support, it's all in x11-toolkits/py-tkinter.
* Standardize all user defined options to the booleans WITH_FOO andreg2000-04-171-5/+3
| | | | | | | WITHOUT_FOO. Begin the process of reserving these prefixes for user defined options. No comment by: ports
* Convert to the PORTNAME - PORTVERSION syntax.obrien2000-04-121-3/+3
|
* Separate the Python Tk module from the main port. I've beentg2000-04-041-15/+1
| | | | | | | wanting do to this for a long time now. Now we got rid of the stupid dependency on Tcl/Tk and save some checks in python's makefile. Update the dependent ports accordingly.
* Fix packaging on -current.tg2000-03-242-5/+22
|
* move IPv6-enable python to python+ipv6 and revert origial pythonsumikawa2000-01-273-21/+3
| | | | | | | | | | | to before IPv6. Since IPv6-enable python make bigger the size of sockaddr, some of scripts are affected. I maintain python+ipv6 separately to minimize impact for users. It will be removed when IPv6 patches are merged into original distribution, such as ruby. Repositry copied by: asami
* Add 'ipv6' on CATEGORIES.sumikawa2000-01-181-1/+1
|
* Oops, forgot to update the checksum file.tg2000-01-181-2/+2
|
* On second thought, put back DIST_SUBDIR. It's not only used for thetg2000-01-181-0/+1
| | | | | Python distribution but also for the docs and some other packages with rather generic names.
* - Support IPv6.sumikawa2000-01-133-3/+20
| | | | | | - remove DIST_SUBDIR since there are 2 distfiles on this port anymore. Reviewed by: tg(maintainer)
* s/X11_BASE/X11BASE/.tg2000-01-101-1/+1
|
* - Install python-mode.el.tg2000-01-062-1/+7
| | | | | | | | | PR: 15702 Submitted by: "Dmitry S. Sivachenko" <dima@Chg.RU> - Only use Tk support if X11 is installed. PR: 15910 Submitted by: Nathan Dorfman <nathan@rtfm.net>
* Use Tk-8.2.tg1999-11-031-2/+2
| | | | Submitted by: Ade Lovett <ade@lovett.com>
* Link against libxpg4.tg1999-10-271-1/+1
| | | | | | Submitted by: foxfair Promote LDFLAGS in the installed setup.
* FreeBSD.ORG -> FreeBSD.orgmharo1999-08-311-1/+1
| | | | | Prompted by PR: 13476, 13477 Submitted by: KATO Tsuguru
* Change Id->FreeBSD.obrien1999-08-251-1/+1
|
* Add the SHA module to the build.tg1999-07-282-1/+8
|
* Fix package building when you're leaving out optional parts, like Tk.tg1999-07-154-207/+211
| | | | PR: 12648
* Install the contents of the Tools directory by default. This can betg1999-07-062-1/+215
| | | | | | turned off by specifying `WITH_TOOLS=NO' when building. PR: 12436
* Commit #3/4 to enforce caps, no period.hoek1999-06-271-1/+1
| | | | | | | | | | | | FWIW, checkout of these things took 5+hrs, staying on the local .freebsd.org net w/o hitting the 'net at all. As promised, $ time cvs ci real 67m51.701s user 0m1.250s sys 0m5.345s
* Link some modules against libmytinfo to pick up a working tputs().tg1999-06-181-2/+2
| | | | Noticed by: Klaus-Jürgen Wolf <kjwolf@online.de>
* Enable the parser module.tg1999-05-212-1/+2
| | | | Submitted by: nectar
* Better support for local $CFLAGS.tg1999-05-191-3/+3
|
* Remove ``NO_LATEST_LINK''nectar1999-04-221-2/+1
| | | | Approved by: Maintainer <tg@FreeBSD.ORG>
* * Update python 1.5.1 -> 1.5.2nectar1999-04-214-85/+107
| | | | * Remove python-beta
* Create lib/python1.5/site-packages directory on installation.nectar1999-04-092-1/+4
|
* Activate some modules needed for zope (www.zope.com).tg1999-03-111-3/+3
| | | | Submitted by: jkoshy
* Fix for building/packaging on FreeBSD 4.x.nectar1999-02-232-9/+29
|
* Distribution file pyth151.tgz checksum changed.nectar1999-02-231-1/+1
|
* back to 1.5.1. Build is broken, but is ok since python 1.5.2b1 is in ↵thepish1999-02-182-4/+43
| | | | ports/lang/python-beta
* upgrade to 1.5.2b1 (fixes build problem along the way)thepish1999-02-162-44/+5
|
* Make sure PLIST is correct whether you have source or not. Add copyrightasami1998-12-022-3/+9
| | | | | | file. Add "|| true" to end of != grep command line to avoid warnings. Submitted by: tg
* Use bsd.port.{pre,post}.mk. Either use them to avoid having to defineasami1998-11-111-9/+8
| | | | | | | | something already there (PORTOBJFORMAT, OSVERSION) or move stuff from after .include <bsd.port.mk> to before. (This is not by any means the complete list but just the ones I've noticed recently.)
* Support dynamic loading of modules in an ELF world.tg1998-10-061-2/+8
| | | | Submitted by: Vladimir Kushnir <kushn@mail.kar.net>
* tk80 has been ELFized.asami1998-09-251-2/+2
|
* The first time I tried committing this set of manpage removals it gothoek1998-08-191-1/+0
| | | | | | | | all the way to diffing yorick/pkg/PLIST and then died with a "bad hostname freefall.freebsd.org" .... Hopefully that's not bad... ;-) Hmm.. Maybe I'll try doing this from beast, next! kickme's a boring machine, and bento is busy.
* Fix up dependencies for ports that moved into the x11-toolkits category.asami1998-08-081-2/+2
|
* Include latest official patches.tg1998-07-282-5/+12
|
* Use ldconfig to check for libc_r, not an absolute path. Thread supporttg1998-07-231-2/+3
| | | | | | should now be compiled in on -current. Suggested by: Jacques Vidrine
* Add virtual category "python".tg1998-06-251-2/+2
| | | | pygist: add dependency on rng.
* Pick up latest official patches.tg1998-06-192-3/+6
|
* plat-freebsd3 doesn't have a regen script.tg1998-06-051-5/+1
| | | | Noticed by: Gianmarco Giovannelli <gmarco@scotty.masternet.it>
* Add latest official patches.tg1998-06-032-3/+4
|
* Include latest official patches.tg1998-05-202-3/+10
|
* Don't throw away OS version number, some scripts need it. Pick uptg1998-05-073-18/+54
| | | | latest official patches while I'm here.
* Bring in latest official patches. Use `-pthread' to avoid linking withtg1998-05-052-5/+9
| | | | libc in the threaded interpreter.
* Add new official patches and activate the dl module.tg1998-04-294-4/+10
|
* Include official patches.tg1998-04-242-2/+14
|
* Upgrade to 1.5.1.tg1998-04-154-49/+54
|
* Use the combined set of patches.tg1998-04-092-26/+4
|
* Include official patches.tg1998-04-082-3/+29
|
* Use -D_THREAD_SAFE when compiling the threaded version.tg1998-03-031-1/+2
|
* Use tk80, not an unsupported alpha version of tk81.tg1998-02-272-4/+4
| | | | Include locale module.
* Upgrade to use tcl8.1 and tk8.1.jseger1998-02-251-3/+3
|
* Make python work with threads again. Looks like our libc_r implementstg1998-01-071-4/+3
| | | | an older draft of the pthread standard.
* Upgrade to 1.5.tg1998-01-066-561/+1051
|
* Use an option to disable the Tk extension (WITH_TK). Don't usetg1997-11-242-8/+27
| | | | | | | libc_r if we're not building the thread module. Respect options given in the environment. The defaults (build with Tk and thread support) don't change.
* Use tk-8.0. Minor makefile cleanups. Add some `@dirrm's in PLIST.tg1997-08-294-7/+22
|
* Fix tk-4.1 dependency. While I'm here, add libreadline support.tg1997-08-062-7/+7
|
* Compile with thread support, if libc_r exists and WITH_THREADS is set.tg1997-06-021-2/+14
| | | | Submitted by: Peter Haight <peterh@prognet.com>
* Some reorganization of this port:tg1997-05-144-357/+359
| | | | | | | | | - build some modules as shared objects, reducing the interpreter's size and removing the dependency on tix - install shared objects in lib - remove version number from OS-dependent script dir A new port of PyTix will follow shortly.
* Add NumPy to default search path.tg1997-05-051-1/+1
|
* Add virtual category 'tk41'.wosch1997-04-201-2/+2
|
* Use new libtix.tg1997-02-212-3/+3
|
* Install config.h, so compiling extensions from C sourcestg1997-02-062-25/+24
| | | | actually works.
* Compile in the PyTix extensions, now that we have Tix.tg1997-01-024-5/+22
| | | | Change MAINTAINER from jkh to tg. OK'd by: Jordan.
* Converted to MAN[1-9NL]obrien1996-11-171-4/+2
|
* CATAGORIES+= -> CATAGORIES=obrien1996-11-121-3/+3
| | | | | Reordered vars where needed. Added MAINTAINERS where needed, many mkdir --> ${MKDIR}, install -> ${INSTALL_*}, etc.
* Update to version 1.4jkh1996-11-035-588/+515
| | | | Submitted-By: Thomas Gellekum <thomas@ghpc8.ihf.rwth-aachen.de>
* Remove LIB_DEPENDS on tcl75, it seems to compile and run fine usingasami1996-10-151-3/+2
| | | | the tcl library in /usr/lib.
* Make python install include files.chuckr1996-08-172-3/+60
| | | | Reviewed by: jkh
* Upgrade this port to use the latest tcl/tk.jkh1996-05-122-4/+4
| | | | Patches Submitted by: Soren Dayton <soren@ambiguity.i-2.com>
* Ah, missed the extra patches. Also revert PLIST to use share instead of libjkh1996-01-181-475/+475
| | | | again.
* share -> lib; thanks, Satoshi!jkh1996-01-181-475/+475
|
* Update to Python 1.3jkh1996-01-184-453/+548
| | | | Submitted by: tg
* Change category nome from "languages" to "lang". Also remove "programming"asami1995-11-221-2/+2
| | | | which appeared in some of them, everything here is a programming language! :)
* Shorten the comments.jkh1995-10-301-1/+1
|
* List all files in lib/python, plus one @exec/unexec mkdir/rmdir pairasami1995-08-091-1/+431
| | | | for an empty directory.
* A little cleanup, move things around to correct order, putasami1995-08-091-3/+5
| | | | | MAINTAINER=jkh@freebsd.org in a separate line so that people know who to yell at, etc.
* The Python programming language.jkh1995-08-097-0/+325