aboutsummaryrefslogtreecommitdiff
path: root/databases/py-gdbm
Commit message (Collapse)AuthorAgeFilesLines
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-062-4/+0
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Remove logic for Python < 3.6 for ports using Python 3.6+Rene Ladan2021-01-111-7/+1
| | | | Notes: svn path=/head/; revision=561252
* Drop python 2.7 support from a few portsAntoine Brodin2020-12-281-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=559531
* databases/py-gdbm@py39: fix build on GCC architecturesPiotr Kubaj2020-11-161-1/+1
| | | | | | | cc1: error: unrecognized command line option "-Wno-unused-result" Notes: svn path=/head/; revision=555490
* Update `databases/gdbm' to version 1.18.1, an important bugfix releaseAlexey Dokuchaev2018-11-111-1/+1
| | | | | | | | | | | | | which restores compatibility with old databases (version 1.8) and some later versions which were built without mmap(2) support. Due to shlib version change, bump port revisions of the consumer ports. PR: 233059 Exp-run by: antoine Approved by: maintainer (johans, numerous timeouts) Notes: svn path=/head/; revision=484696
* Fix _gdbm module for Python 3Sunpoet Po-Chuan Hsieh2017-12-292-2/+2
| | | | | | | | | | - Bump PORTREVISION for package change PR: 223136 Submitted by: Greg V <greg@unrelenting.technology> Notes: svn path=/head/; revision=457528
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464 Notes: svn path=/head/; revision=455210
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Add version specified ports of separated standard Python modules forLi-Wen Hsu2015-11-191-2/+2
| | | | | | | | | | | | | | | | | non-default Python versions: - Add pyXY-{sqlite3,gdbm,tkinter} ports for generating binary packages - Improve/add pkg-message to point users to install respective packages of separated Python standard modules - Add COMMENT to explicitly show the Python version that package should be used with - Simplify version-related PYTHON_* for lang/python35 Reviewed by: koobs Differential Revision: https://reviews.freebsd.org/D4170 Notes: svn path=/head/; revision=401909
* 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
* Convert the Python framework bits to USES=python.Marcus von Appen2014-08-091-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* databases/py-gdbm: Make install PREFIX-safeKubilay Kocak2014-04-231-6/+6
| | | | | | | | | | | | Pass a PREFIX-safe Python library directory to Python --install arguments. While I'm here: - Re-order and sort USE(S) and PYDISTUTILS entries - Whitespace alignment Notes: svn path=/head/; revision=351925
* - 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=350901
* Use setuptools for all Python ports.William Grzybowski2013-12-151-4/+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
* In preparation for making libtool generate libraries with a sane name, fix allBaptiste Daroussin2013-12-111-1/+1
| | | | | | | LIB_DEPENDS in databases Notes: svn path=/head/; revision=336187
* 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=326660
* - Install standard libraries separated as other ports to the same placeLi-Wen Hsu2013-03-013-13/+18
| | | | | | | | | 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
* - 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
* - convert to using PYTHON_SITELIBDIR (not functional change)Ruslan Makhmatkhanov2012-02-121-1/+1
| | | | Notes: svn path=/head/; revision=291050
* - Track dependencies after databases/gdbm updateGabor Kovesdan2011-09-121-1/+2
| | | | Notes: svn path=/head/; revision=281668
* 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
* - Fix building with python3*Li-Wen Hsu2009-07-082-2/+36
| | | | | | | | | | | | - Use checksum file under lang/python${PYTHON_SUFFIX}/, for removal lang/python/distinfo PR: ports/136199 Submitted by: lwhsu Approved by: perky Notes: svn path=/head/; revision=237415
* - Make Python 2.5.1 the default Python versionAlexander Botero-Lowry2007-07-301-0/+1
| | | | | | | | | | | | | - 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
* Use PLIST_FILES (bento-tested, marcus-reviewed).Trevor Johnson2004-02-062-1/+1
| | | | Notes: svn path=/head/; revision=100139
* 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-1/+1
| | | | Notes: svn path=/head/; revision=91636
* - Use ports/lang/python's MD5_FILE.Hye-Shik Chang2003-07-312-15/+4
| | | | | | | | | - Take maintainership Approved by: tg (previous maintainer) Notes: svn path=/head/; revision=86074
* Add checksums for Python-2.2.3Hye-Shik Chang2003-06-041-0/+1
| | | | Notes: svn path=/head/; revision=82239
* Clear moonlight beckons.Ade Lovett2003-03-072-1/+1
| | | | | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti. Notes: svn path=/head/; revision=77045
* chase gdbm lib versionYing-Chieh Liao2003-01-031-1/+1
| | | | Notes: svn path=/head/; revision=72367
* Add checksums for Python-2.2.2.Hye-Shik Chang2002-10-171-1/+1
| | | | | | | Approved by: tg Notes: svn path=/head/; revision=68200
* Use USE_PYDISTUTILS.Thomas Gellekum2002-04-171-7/+1
| | | | Notes: svn path=/head/; revision=57798
* Update checksums for Python-2.2.1.Thomas Gellekum2002-04-121-0/+2
| | | | | | | | PR: 36977 Submitted by: Hye-Shik Chang <perky@fallin.lv> Notes: svn path=/head/; revision=57618
* Update checksum for Python-2.1.3.Thomas Gellekum2002-04-111-0/+1
| | | | Notes: svn path=/head/; revision=57568
* Upgrade python21 to 2.1.2, the latest bugfix release.Thomas Gellekum2002-01-221-0/+1
| | | | | | | | | | PR: 34078 Submitted by: Hye-Shik Chang <perky@fallin.lv> Update checksum of dependent ports. Notes: svn path=/head/; revision=53550
* Upgrade lang/python to 2.2. Adjust bsd.python.mk accordingly.Thomas Gellekum2002-01-071-0/+1
| | | | | | | | | | PR: 33444 Submitted by: Hye-Shik Chang <perky@fallin.lv> Add new MD5 to dependent ports. Notes: svn path=/head/; revision=52711
* Add checksums for 2.0.1 and 2.1.1.Thomas Gellekum2001-07-261-0/+2
| | | | | | | Reminded by: Ray Kohler <rkohler1@cox.rr.com> Notes: svn path=/head/; revision=45503
* Use the same MASTER_SITES as lang/python.Thomas Gellekum2001-05-041-2/+2
| | | | Notes: svn path=/head/; revision=42245
* Add checksum for python-2.1.Thomas Gellekum2001-05-021-0/+1
| | | | Notes: svn path=/head/; revision=42167
* Correct file name.Thomas Gellekum2001-03-051-1/+1
| | | | Notes: svn path=/head/; revision=39089
* Use the py-distutils for building and installing.Thomas Gellekum2001-03-013-14/+33
| | | | Notes: svn path=/head/; revision=38930
* Style/space police (space -> tab) over the database category.Jimmy Olgeni2001-02-051-1/+1
| | | | Notes: svn path=/head/; revision=37975