aboutsummaryrefslogtreecommitdiff
path: root/databases/py-bsddb
Commit message (Collapse)AuthorAgeFilesLines
* Switch PYTHON_REL from a 3 digits number to a 4 digits number to handleAntoine Brodin2015-05-261-1/+1
| | | | | | | | | | python 2.7.10 Differential Revision: https://reviews.freebsd.org/D2639 Reviewed by: sunpoet, mva Notes: svn path=/head/; revision=387491
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* - Convert ports from databases/ and deskutils/ to new USES=pythonMarcus von Appen2014-10-191-4/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371173
* Berkeley DB cleanup, remove versions 4.0 ... 4.7.Matthias Andree2014-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | - Mk/bsd.database.mk rewrite, new default to db5. - db6 is eligible by default only if installed on the system. - Bump PORTREVISION of all ports that directly depend on BerkeleyDB or where USE_BDB is found in the port's directory - Patch a few ports such that they will pick up or work with newer versions. - Add UPDATING entry - Drive-by format fix for pks - Drop BerkeleyDB option from mail/popular for now, requires more work. - Exp-run logs linked from the PR below. - Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes for new Berkeley DB, but are untested. NOTE: please read UPDATING and the Wiki page before proceeding! Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup PR: 192690 Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports) Notes: svn path=/head/; revision=365599
* Convert the Python framework bits to USES=python.Marcus von Appen2014-08-091-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Please use USES=python instead of USE_PYTHON. USE_PYTHON=yes becomes USES=python USE_PYTHON=2.7+ becomes USES=python:2.7+ USE_PYTHON_BUILD=3.3 becomes USES=python:3.3,build ... A new PYTHON_FEATURES variable was added, which enables certain features for a port and replaces some knobs at the same time; PYTHON_FEATURES=distutils replaces USE_PYDISTUTILS PYTHON_FEATURES=autoplist replaces PYDISTUTILS_AUTOPLIST PYTHON_FEATURES=py3kplist replaces PYTHON_PY3K_PLIST_HACK PYTHON_FEATURES=noegginfo replaces PYDISTUTILS_NOEGGINFO PYTHON_FEATURES=concurrent replaces PYTHON_CONCURRENT_INSTALL PYTHON_FEATURES=pythonprefix replaces USE_PYTHON_PREFIX Some knobs have been deprecated and are to be removed in the near future: PYTHON_MASTER_SITES - use MASTER_SITE_PYTHON instead PYTHON_PKGNAMESUFFIX - use PYTHON_PKGNAMEPREFIX instead PYDISTUTILS_INSTALLNOSINGLE - deprecated without replacement Some knobs have been removed completely: PYTHON_MASTER_SITE_SUBDIR PYTHON_DISTNAME PYTHON_WRKSRC Several variables specific to the Python framework are no longer passed to the build environment to avoid polluting dependency builds. PYTHON_VERSION is not passed to .MAKEFLAGS anymore PYTHON_DEFAULT_VERSION, PYTHON_DEFAULT_PORTVERSION and PYTHONBASE are not passed to the make environment anymore The conversion required a couple of ports to be updated to fit the changes and new requirements. Those included "bsd.python.mk" directly or contained checks in places, for which the USES framework would fail to provide correct values. Python modules directly using the upstream Python package (such as py-tkinter or py-sqlite3) were updated to avoid using the now unnecessary and remmoved knobs from "bsd.python.mk". Phabric: D399 exp-run: 167368 192357 PR: 167368 192357 Reviewed by: antoine, wg Exp-run award: antoine With hat: python@ Approved by: portmgr Notes: svn path=/head/; revision=364450
* - Catch up with the recent lang/pythonXX changesMarcus von Appen2014-08-021-1/+1
| | | | | | | With hat: python@ Notes: svn path=/head/; revision=363791
* - Add LICENSESunpoet Po-Chuan Hsieh2014-04-111-2/+4
| | | | | | | | - Pet portlint: use PYTHON_DISTNAME instead of PYTHON_DISTFILE - Use USES=tar:xz Notes: svn path=/head/; revision=350900
* - remove patch for python26, that's not in tree anymoreRuslan Makhmatkhanov2014-02-093-161/+0
| | | | | | | | - turn extra-patch for python27 into regular patch and remove corresponding logic from Makefile Notes: svn path=/head/; revision=343501
* Use setuptools for all Python ports.William Grzybowski2013-12-151-5/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Setuptools is the preferred method to manage Python distributions after many changes to the packaging ecosystem over the past couple of years. Only ports using USE_PYDISTUTILS= yes are affected by this commit, ports using USE_PYDISTUTILS= easy_install remains the same however this usage is now deprecated and should be converted to USE_PYDISTUTILS= yes. Some Python distributions do not work with setuptools out of the box because they extend the install command from distutils and not setuptools, and so they need to be patched accordingly. pip (which leverages setuptools) works around the issue by using eggs, however we want to get rid of those as well, as support for "flat" installation is unavailable or has other issues associated with it. This work allows us to unify how python packages are built, ensure that Python distributions are installed consistently, reduces complexity for Python port maintainers and paves the way for simplifying the Python ports framework in the future. With hat on: python Reviewed by: koobs, antoine Exp-run: bdrewery Approved by: bdrewery (portmgr) Notes: svn path=/head/; revision=336553
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | databases) Notes: svn path=/head/; revision=327717
* - Add PORTSCOUT=ignore:1 to avoid false alarmSunpoet Po-Chuan Hsieh2013-09-071-0/+2
| | | | Notes: svn path=/head/; revision=326659
* - update to latest upstream versions:Ruslan Makhmatkhanov2013-05-172-89/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | . 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) Notes: svn path=/head/; revision=318353
* - Install standard libraries separated as other ports to the same placeLi-Wen Hsu2013-03-012-9/+17
| | | | | | | | | with other standard libraries (${PYTHON_LIBDIR}/lib-dynload) - Improve consistency of the Makefile(s) - Whitespace cleanup for the patches Notes: svn path=/head/; revision=313167
* - cleanup unsupported python versionsRuslan Makhmatkhanov2012-10-033-289/+2
| | | | | | | - trim Makefile header Notes: svn path=/head/; revision=305184
* - do not hardcode distfile extension for lang/python ports in bsd.python.mkRuslan Makhmatkhanov2012-10-031-0/+1
| | | | | | | | | | | | (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@ Notes: svn path=/head/; revision=305181
* - Fix build with various python releases (2.4-2.7) and berkeley db versions ↵Sunpoet Po-Chuan Hsieh2011-10-105-11/+480
| | | | | | | (4.x-5.x) Notes: svn path=/head/; revision=283296
* - Fix build with db5Sunpoet Po-Chuan Hsieh2011-10-042-2/+65
| | | | | | | | | | - Cosmetic change PR: ports/152886 Reported by: Anatoly Borodin <anatoly.borodin@gmail.com> Notes: svn path=/head/; revision=282931
* Deprecate md5 in favour of sha256 checksums. md5 checksums will no longerErwin Lansing2010-10-281-1/+1
| | | | | | | | | | | | | be generated or checked, and will be silently ignored for now. Also, generalize the MD5_FILE macro to DISTINFO_FILO. PR: 149657 Submitted by: rene Approved by: portmgr Tested on: pointyhat i386 7-exp Notes: svn path=/head/; revision=263705
* - Grab maintainership of these ports for python@Li-Wen Hsu2010-08-201-1/+1
| | | | Notes: svn path=/head/; revision=259648
* Reset perky@FreeBSD.org due to maintainer-timeouts and no responseMark Linimon2010-05-231-1/+1
| | | | | | | | | to email. Hat: portmgr Notes: svn path=/head/; revision=254920
* - Use checksum file under lang/python${PYTHON_SUFFIX}/,Li-Wen Hsu2009-07-081-3/+7
| | | | | | | | | | | | | | for removal lang/python/distinfo [1] - USE_PYTHON=yes, all Python version in the ports tree is 2.3+ - Mark IGNORE for Python >= 3.0 - Prepare to be a master port PR: ports/136200 [1] Submitted by: lwhsu Approved by: perky Notes: svn path=/head/; revision=237410
* Fix build with Python 2.6Tom McLaughlin2009-04-061-2/+10
| | | | | | | | | | | - chase moved db.h include location PR: 130410 Submitted by: David Naylor Approved by: maintainer timeout Notes: svn path=/head/; revision=231676
* - Make Python 2.5.1 the default Python versionAlexander Botero-Lowry2007-07-301-0/+2
| | | | | | | | | | | | | - 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 Notes: svn path=/head/; revision=196700
* - Utilize BDB macros from bsd.database.mk.Hye-Shik Chang2006-04-221-38/+4
| | | | | | | | | | - This resolves a version problem reported in [1]. PR: 91801 [1] Submitted by: Rob B <rbyrnes@mailshack.com> [1] Notes: svn path=/head/; revision=160113
* Add support for Berkeley DB 4.3Hye-Shik Chang2005-08-291-1/+5
| | | | | | | | PR: 80998 Submitted by: NIIMI Satoshi <sa2c@sa2c.net> Notes: svn path=/head/; revision=141315
* Use PLIST_FILES (bento-tested, marcus-reviewed).Trevor Johnson2004-02-062-1/+1
| | | | Notes: svn path=/head/; revision=100139
* Allow to build with bsddb 4.2.Hye-Shik Chang2004-01-261-9/+27
| | | | | | | | PR: 61650 Submitted by: Scot W. Hetzel <hetzelsw@westbend.net> Notes: svn path=/head/; revision=99150
* Add WITH_DB4 knob and change default to use db4.1.Hye-Shik Chang2003-11-211-5/+9
| | | | | | | Submitted by: Rui Lopes <rui@ruilopes.com> Notes: svn path=/head/; revision=94610
* Enable building for Python-2.4 by utilizing PYTHON_MASTER_SITES.Hye-Shik Chang2003-11-041-1/+1
| | | | Notes: svn path=/head/; revision=93089
* Chase bsd.python.mk's change PYTHON_SITE_SUBDIR -> PYTHON_MASTER_SITE_SUBDIR.Hye-Shik Chang2003-11-041-1/+1
| | | | | | | Submitted by: marcus Notes: svn path=/head/; revision=93080
* Utilize PYTHON_SITE_SUBDIR and USE_PYTHON.Hye-Shik Chang2003-10-191-9/+3
| | | | Notes: svn path=/head/; revision=91636
* Add new port for py-bsddb,Hye-Shik Chang2003-07-314-0/+81
a bsddb[34] binding bundled in python2.3 distribution. Notes: svn path=/head/; revision=86075