summaryrefslogtreecommitdiff
path: root/databases/py-pg_pqueue/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
* - Switch to options helpersDmitry Marakasov2015-09-101-5/+2
| | | | | | | | | - Add some NO_ARCHes Approved by: portmgr blanket Notes: svn path=/head/; revision=396577
* Update "BSD" licenses in databases categoryMark Felder2014-12-051-1/+1
| | | | Notes: svn path=/head/; revision=373992
* - Convert ports from databases/ and deskutils/ to new USES=pythonMarcus von Appen2014-10-191-3/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371173
* Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.Adam Weinberger2014-07-151-0/+2
| | | | Notes: svn path=/head/; revision=361939
* - Remove easy_install dependencyMarcus von Appen2014-06-081-5/+5
| | | | | | | | | | | | - Convert to PYDISTUTILS_AUTOPLIST - Convert to new OPTIONS - Bump PORTREVISION to enforce a cleanup for the easy_install references With hat: python@ Approved by: portmgr (implicit) Notes: svn path=/head/; revision=357008
* - Stage.Gerald Pfeifer2014-05-131-3/+4
| | | | | | | | | | | | - Add LICENSE (BSD). - Tweak WWW line in pkg-descr. PR: 188609 Submitted by: Bartek Rutkowski <ports@robakdesign.com> Approved by: portmgr (blanket pre-approval) Notes: svn path=/head/; revision=354006
* Python cleanup:Rene Ladan2014-01-131-1/+1
| | | | | | | | | | - USE_PYTHON* = 2.X -> USE_PYTHON* = 2 - USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes Reviewed by: python (mva, rm) Approved by: portmgr-lurkers (mat) Notes: svn path=/head/; revision=339634
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | databases) Notes: svn path=/head/; revision=327717
* - Move over to py25+ or aboveMartin Wilke2011-02-251-1/+2
| | | | | | | - While here kick md5 support Notes: svn path=/head/; revision=269616
* PQueue is a package providing low-level PQ protocol classes forMartin Wilke2009-01-071-0/+29
interacting with a PostgreSQL database. It supports version 3.0 of the protocol--the current primary version of protocol. The package also provides a basic protocol transaction class. This class keeps the state of the protocol in an interrupt safe manner, and validates the integrity of the communication as messages are received. In general, you probably will never use this package directly, unless you are writing a driver. WWW: http://python.projects.postgresql.org/ PR: ports/130252 Submitted by: Wen Heping <wenheping at gmail.com> Notes: svn path=/head/; revision=225425