aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python32
Commit message (Collapse)AuthorAgeFilesLines
* - Revert the previous NIS check, since it does not help at allmva2014-12-231-1/+1
| | | | | | PR: 196195 Submitted by: ache@ With hat: python@
* - Python 3.x: try to improve the NIS detection for FreeBSDmva2014-12-221-2/+2
| | | | | PR: 193650 With hat: python
* Add an option to use libffi from ports instead of bundled version.demon2014-11-041-3/+9
| | | | | Submitted by: cy Reviewed by: koobs
* Cleanup plistbapt2014-10-271-129/+0
|
* Change INSTALL_DATA to install with mode 644antoine2014-09-052-18/+2
| | | | | | | | | | Remove patches and hacks that were used to work around the previous situation This allows to stage more ports as a regular user Differential Revision: https://reviews.freebsd.org/D703 Reviewed by and discussed with: bapt With hat: portmgr
* - Add USE_OPENSSL, since all lang/python ports build the _ssl module, whichmva2014-08-111-1/+2
| | | | | | | | requires a working OpenSSL implementation Phabric: D569 Reviewed by: wg@ With hat: python@
* - Remove everything related to USE_PYTHON and bsd.python.mk. This is amva2014-08-025-4879/+4545
| | | | | | | | | | | | | | | | | | | | | | preparatory step to convert bsd.python.mk into a USES file. - Remove the shared/static build separation, which is the source of many problems and even more hacks. Instead build only the shared version, which greatly simplifies the build. - Use NLS_LIBS instead of NLS_LDFLAGS as done for lang/python27 (r357486) - Remove the FPECTL option to align the build with the clean "template" from lang/python34. - Remove PORTDATA and EXAMPLES. Those will be made available via separate ports. - Add a new DEBUG option to enable debug builds as for lang/python34. - Add a new TSC option for precise timestamp counter support as for lang/python34. - Add CPE support. - Reactivate curses/ncurses support. - Use buildbottest in the regression-test: target. Phabric: D448 Reviewed by: koobs, bapt With hat: python@
* Drop some %%PORTDATA%%antoine2014-07-211-210/+210
| | | | With hat: portmgr
* - Add CPE entries for pythonsbz2014-07-121-13/+15
| | | | - Remove NOPORTDATA as it's deprecated since r359061
* lang/python{27,31,32}: Replace USE_XZ with USES=tar:xzkoobs2014-04-221-2/+1
| | | | | | USE_XZ has been deprecated, replace it with the new USES value. Python 3.3 and 3.4 ports have already been converted.
* lang/python{31,32,33}: Fix stage/package as non-rootkoobs2014-04-221-2/+24
| | | | | | | | | | | | | | | | | | Copy the second part of a change previously made to python27 [1], to python31, python32 and python33. This fixes staging and packaging of these ports by a non-root user by running ranlib on the archive prior to it being installed read-only. While I'm here: - python27: Add breadcrumbs and references to the patch header - python34: Update breadcrumbs and references to the patch header [1] https://svnweb.freebsd.org/ports?view=revision&revision=350207 Submitted by: antoine Reviewed by: kwm, sbz
* lang/python{31,32,33}: Add clang 3.4 fix from python27koobs2014-04-202-1/+16
| | | | | | | | | | | | | Copy change committed to python27 [1] to python31, python32 and python33 to fix builds of some extensions with Clang 3.4. Also add breadcrumbs to the patch header in lang/python27 referencing the upstream issue. [2] The Python 3.4 port (lang/python34) already carries the patch. [1] https://svnweb.freebsd.org/ports?view=revision&revision=346428 [2] http://bugs.python.org/issue20767
* - Pet portlint: use PYTHON_DISTNAME instead of PYTHON_DISTFILEsunpoet2014-04-111-1/+1
|
* - Fix build with readline 6.3 from portsantoine2014-03-012-0/+55
| | | | | | | the patch was backported from upstream (issue #20374) - Add missing USES=readline Obtained from: python
* lang/python*: Backport security fix for CVE-2014-1912koobs2014-03-012-1/+50
| | | | | | | | | | | | | | | | | | | A vulnerability was reported [1] in Python's socket module, due to a boundary error within the sock_recvfrom_into() function, which could be exploited to cause a buffer overflow. This could be used to crash a Python application that uses the socket.recvfrom_info() function or, possibly, execute arbitrary code with the permissions of the user running vulnerable Python code. This vulnerable function, socket.recvfrom_into(), was introduced in Python 2.5. Earlier versions are not affected by this flaw. This is fixed in upstream branches for version 2.7, 3.1, 3.2 and 3.3. [1] http://bugs.python.org/issue20246 MFH: 2014Q1 Security: 8e5e6d42-a0fa-11e3-b09a-080027f2d077
* - Fix bad libpython* symlinks after enabling the lang/python* ports tomva2014-02-012-4/+4
| | | | | | | | be stagedir-aware PR: ports/186284 Submitted by: marino@ Pointyhat to: myself
* - Enable stagedir supportmva2014-01-262-16/+17
| | | | - Convert to new LIB_DEPENDS
* Bump PORTREVISION for all Python ports to pickup the recent ARM patchkoobs2013-12-081-1/+1
| | | | PR: ports/149167
* All Python ports: Address abort() for ctypes import on FreeBSD/ARMkoobs2013-12-081-0/+36
| | | | | | | | | | | | | | | | | | | | | | | The current FreeBSD/ARM __clear_cache() implementation does nothing #if __i386__ || __x86_64__ #else abort(); cognet@ advises this is an issue for anything !Apple that is using the libcompiler_rt provided by Clang on ARM, and requires upstreaming. This is the root cause of abort() on import for the ctypes module in Python, as they bundle libffi. [1] This change patches the bundled libffi library in all Python ports, even though it is a NOOP for the ports that use devel/libffi. These ports, currently python31, will get the fix via ports/184517 A huge shout out to cognet@ who helped diagnose the issue and created the patch to address it. Thank you! PR: ports/149167 [1] PR: ports/184517 Submitted by: cognet [3] Reviewed by: cognet, eadler, milki, ak
* Fix OSS Audio and enable FreeBSD 11 support in Python 3.2 and 3.1koobs2013-12-013-8/+22
| | | | | | | | | | | | | | | - Add the appropriate Python platform (plat-*) files for FreeBSD 11 - Update pkg-plist Backport a upstream change [1] removing OS major version from the check to enable the OSS Audio module in setup.py: Issue #12326: don't test the major version of sys.platform Use startswith, instead of ==, when testing sys.platform to support new platforms like Linux 3 or OpenBSD 5. [2] [1] http://hg.python.org/cpython/rev/50f1922bc1d5 [2] http://bugs.python.org/issue12326
* lang/python32: Backport upstream kevent fixkoobs2013-12-012-15/+31
| | | | | | | | | | | | | | | | | | | | | | | | | Backport a change fixing use of kevent flags that was merged to Python default, 3.3 and 2.7 branches, but not 3.2 and 3.1 that were in security-only mode at the time of commit. [1] - Add patch: patch-Modules__selectmodule.c References: [1] Issue #11973: Fix a problem in kevent. The flags and fflags fields are now properly handled as unsigned. [#11973] http://bugs.python.org/issue11973 http://hg.python.org/cpython/rev/8345fb616cbd While I'm here: - Add LICENSE (PSFL) - Clean up, reorganise, sort & whitespace align sections PR: ports/156759 Submitted by: David Naylor <naylor.b.david@gmail.com> Reviewed by: mva
* - Unbreak the build on 10.x and newer, which provides pipe2()mva2013-11-301-0/+4
| | | | | | | This relates to http://bugs.python.org/issue12852 PR: ports/184140 Submitted by: Yuta Sato <nigoro.gentoo@0x100.com>
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | lang)
* Resolve gettext (libintl) detection and linking in all Python portskoobs2013-09-083-16/+54
| | | | | | | | | | | | | | | | | Fix gettext (NLS) detection, includes and linking: - all: Use LDFLAGS and CPPFLAGS over CFLAGS for NLS option (with comment) - python26,27: Pass LIBS="-lintl" to CONFIGURE_ENV Workaround Pythons odd build mechanics causing duplicate args: - all: Remove CFLAGS from OPT= in CONFIGURE_ENV - python32,33: Remove CONFIGURE_* variables from Makefile.pre.in Other: - python32: Patch setup.py to pass OPT correctly to shared modules PR: ports/181721 Reported by: pawel Reviewed by: bapt mva sbz
* - Move the symlink magic for the default python version into lang/pythonmva2013-08-182-36/+1
| | | | | | | | | | | and lang/python2 and lang/python3. This change brings us closer to the goal of making Python ports usable with different Python versions at the same time. - Add a new lang/python2 port to handle the symlinks for bin/python2, bin/idle2, bin/pydoc2 and so on. - Add a new lang/python3 port to handle the symlinks for bin/python3, bin/idle3, bin/pydoc3 and so on. - Bump the PORTREVISION on all lang/python* ports.
* - Remove MAKE_JOBS_SAFE variableak2013-08-151-1/+0
| | | | Approved by: portmgr (bdrewery)
* Add patch that resolves the issue, found after r250991 in src HEAD.rm2013-06-102-0/+11
| | | | | | | | | | | | | | | Investigation and the patch are from Marcel Moolenaar. I also added upstream bug-report, based on Marcel's info: http://bugs.python.org/issue18178 There also was relevant discussion on current@: http://lists.freebsd.org/pipermail/freebsd-current/2013-June/ Please see there for details of the issue. Submitted by: marcel (python@ ML) Reported by: many
* Update lang/python32 to 3.2.5 and lang/python33 to 3.3.2rm2013-05-183-4/+3
|
* - update to latest upstream versions:rm2013-05-174-4/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | . lang/python27: 2.7.3 -> 2.7.5 . lang/python32: 3.2.3 -> 3.2.4 . lang/python33: 3.3.0 -> 3.3.1 - update Mk/bsd.python.mk with new versions - mark lang/python26 and lang/python31 as deprecated (set them to upstream EoL dates) - update docs (lang/python-doc-html) - align databases/py-bsddb patch for python27 - most of it was applied upstream. Raise BDB version to 4.3 atleast, according to upstream requirements. Many thanks to Martin (miwi) for his time on this update. PR: 178506 Submitted by: rm (myself) Exp-run by: portmgr (miwi) - revert erroneous threads patch in lang/python26 and lang/python27, that was added after ports/131080. It was rejected upstream, because it's not actually a bug, but misuse. Gabor Pali (pgj) in collaboration with Kubilay Kocak (koobs) did an independent investigation regard the issue. See here for details: http://lists.freebsd.org/pipermail/freebsd-python/2013-April/005376.html PR: 153167 Submitted by: Duncan Findlay <duncan@duncf.ca> Reported by: pgj/koobs (at python@ ML) Exp-run by: portmgr (miwi)
* Commit all the non-functional changes to python ports to reduce the diff sizerm2013-05-112-3/+3
| | | | | | | | | | | | | | for an exp-run of updated python versions. - trim Makefile headers - remove leading indefinite article from COMMENT - use PYTHON shortcut in MASTER_SITES - whitespace fixes - remove checks for unsupported versions of FreeBSD - use static value ``33'' instead of PYTHON_SUFFIX in lang/python33/pkg-plist, because this value is not supposed to be changed across the branch and for consistency with other python3 ports - remove conflicts in lang/python-mode.el with not more existing python-2.4
* - finish conversion for USES of gettextjgh2013-05-061-1/+1
|
* - adoption of USES for gettextjgh2013-05-061-9/+11
| | | | Approved by: portmgr (bapt@)
* - Remove "first-installed-win" logic for automatically settinglwhsu2012-12-242-9/+19
| | | | | | | | | | | | | | | | | ${PYTHON_DEFAULT_VERSION}, this generates conflicting packages. - Create symbolic links as PEP 394 [1] suggests. ${PYTHON_DEFAULT_VERSION} will create python and python${MAJOR_VERSION} links. In current default, lang/python27 will create: python -> python2 -> python2.7 - Introduce ${PYTHON3_DEFAULT_VERSION}, which will handle bin/python3 link. At this point, lang/python33 will create python3 -> python3.3 - Minor cleanups * Trim Makefile headers * Remove ${OSVERSION} detection for xz, whihc is done by USE_XZ [1] http://www.python.org/dev/peps/pep-0394/
* - do not hardcode distfile extension for lang/python ports in bsd.python.mkrm2012-10-032-2/+3
| | | | | | | | | (PYTHON_DISTFILE variable) - switch lang/python ports (and it's slaves) to tar.xz I compared all the four pairs .tgz/.tar.xz and they have no content differences. Discussed on: python@
* - Fix builds, if the NLS option switch is set. In some casesmva2012-06-211-2/+3
| | | | | | | expat-related modules are not built correctly. PR: ports/169276 Submitted by: Greg Byshenk <freebsd@byshenk.net>
* - Fix gettext detection for the locale modulemva2012-06-201-1/+11
| | | | | | | - Explicitly enable/disable gettext support via a new NLS OPTION switch. PR: ports/168684 ports/136917 On behalf of: python@
* - Correct PYMALLOC logic (that fix the build of devel/gobject-introspection)miwi2012-05-311-7/+2
| | | | | - Remove old OPTION layout from py32 - Bump PORTREVISON
* - Convert to new options frameworkmiwi2012-05-301-7/+10
| | | | Reviewed by: bapt
* - Update:miwi2012-04-117-99/+9
| | | | | | | | | | * python26 -> 2.6.8 * python27 -> 2.7.3 * python31 -> 3.1.5 * python32 -> 3.2.1 Security: http://www.vuxml.org/freebsd/b4f8be9e-56b2-11e1-9fb7-003067b2972c.html CVE-2012-0845 CVE-2012-0876 CVE-2012-1150 CVE-2012-0845 CVE-2011-3389
* - Mark Python as Securemiwi2012-02-192-1/+47
| | | | | | | | | - Fix DoS via malformed XML-RPC / HTTP POST Submitted by: rm@ Reported by: many Obtained from: python hg Security: http://www.vuxml.org/freebsd/b4f8be9e-56b2-11e1-9fb7-003067b2972c.html
* - Remove WITH_FBSD10_FIX, is no longer neededmiwi2011-11-091-1/+0
|
* - Remove outdated patch to prune __wchar_t from CFLAGS (python-config --cflags)sunpoet2011-11-051-4/+2
| | | | | | | - Bump PORTREVISION for package change PR: ports/161564 Submitted by: Nali Toja <nalitoja@gmail.com>
* - Fix build on FreeBSD 10beat2011-10-285-7/+18
| | | | Approved by: miwi (implicit)
* - Remove the HUGE_STACK_SIZE option, now Python will use defaultlwhsu2011-09-251-6/+1
| | | | thread stack size of the system.
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)amdmi32011-09-241-4/+1
| | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
* Handle built world without NIS more gracefully; detect missing ypcat andcrees2011-09-181-1/+10
| | | | | | | | disable NIS module. PR: ports/115940 Submitted by: Alex Deiter <tiamat@komi.mts.ru> Reviewed by: bf
* - Update lang/python32 to 3.2.2wen2011-09-053-20/+10
|
* - Fix pkg-plist when building with WITHOUT_THREADSlwhsu2011-08-192-2/+4
| | | | | PR: ports/159842 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
* - Update to 3.2.1lwhsu2011-07-223-8/+62
| | | | | PR: ports/158850 Submitted by: wen
* - Link the shared library to correct namelwhsu2011-02-282-3/+3
| | | | Reported by: Alex Vasylenko <lxv AT omut.org>
* - Suport PEP 3149 -- ABI version tagged .so fileslwhsu2011-02-272-114/+120
| | | | This fixes building with UCS4 or PYMALLOC turned off.
* - Finish removal of PLIST trick and OpenSSL 0.9.8 detection.lwhsu2011-02-263-4363/+4339
| | | | | | | | | | | | Now supported FreeBSD versions are all use OpenSSL greater than 0.9.8 . This also fixes the problem of generating and leaving pkg-plist.tmp in /usr/ports/lang/python32 . - Add some PLIST_SUB anchors, this does: * Not being conflict with default python version (the one installed as /usr/local/bin/python) * Make life easier for later 3.2.x (and higher) updates * Add NO_NIS support back
* - Update to 3.2.0 and complete repocopywen2011-02-225-2143/+4449
| | | | | | PR: ports/153829 Submitted by: Wen Heping (myself) Reviewed by: miwi@
* - Update to 3.1.3wen2010-12-146-111/+102
|
* Fix fcntl module to accept 'unsigned long' type commands for ioctl(2).jkim2010-07-206-0/+110
| | | | | | | | | | | | Although POSIX says the type is 'int', all BSD variants (including Mac OS X) have been using 'unsigned long' type for very long time and its use predates the standard long enough. For certain commands (e.g., TIOCSWINSZ, FIONBIO), the Python value may get sign-extended on 64-bit platforms (by implicit type promotion) and it causes annoying warnings from kernel such as this: WARNING pid 24509 (python2.6): ioctl sign-extension ioctl ffffffff8004667e Approved by: python (maintainer timeout)
* - Update lang/python26 to 2.6.5wen2010-05-123-10/+30
| | | | | | - Update lang/python31 to 3.1.2 Reviewed by: miwi@, lwhsu@
* - Ups s/PORTREVISON/PORTREVISIONmiwi2009-11-261-1/+1
|
* - add missing patchmiwi2009-11-261-0/+10
|
* - Add support for FreeBSD 9miwi2009-11-263-4/+28
|
* - Update lang/python31 to Python 3.1.1lwhsu2009-08-223-7/+7
| | | | Submitted by: wen heping <wenheping AT gmail.com>
* - Ask the first Python installed to install the bin/python link,lwhsu2009-07-141-3/+3
| | | | | | | | and be the default Python version PR: ports/109550 Submitted by: David Yeske <dyeske AT yahoo.com> Obtained from: tmclaugh
* - Install pkgconfig file under libdata/pkgconfiglwhsu2009-07-082-7/+5
| | | | Notified by: wen heping <wenheping AT gmail.com>
* - Remove regression-test target since it is not quite useful at this pointlwhsu2009-07-071-3/+0
|
* - Add Python 3.1lwhsu2009-07-074-61/+185
|
* - Remove regression-test target since it is not quite useful herelwhsu2009-07-021-3/+0
|
* - Honor EXAMPLESDIR, DATADIR and NOPORTEXAMPLES, NOPORTDATAlwhsu2009-07-024-567/+563
| | | | | | | | | | | | - Remove bsddb module in pkg-message since it's removed from Python default modules (python3 user should use databases/py-bsddb3) - Fix WITH_UCS4 support - Mark jobs safe - Makefile/patch cleanup PR: ports/133440 Submitted by: Paul Hoffman <phoffman AT proper.com>
* - Update python30 to 3.0.1miwi2009-03-103-14/+22
| | | | | Release Changelog: http://python.org/download/releases/3.0.1/NEWS.txt
* Welcome to the new era of Python 3, with antigravity support!perky2008-12-043-8/+21
| | | | Update to Python 3.0.
* Remove "_gdbm" module from packaging which should be excluded inperky2008-10-132-2/+1
| | | | | | this port. Reported by: QAT
* Introduce two new versions of Python: 2.6 and 3.0rc1 (finally!)perky2008-10-1327-2200/+398
| | | | | | | | 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