summaryrefslogtreecommitdiff
path: root/databases/py-pg_pqueue/Makefile (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-11-30Convert Python ports to FLAVORS.Mathieu Arnold1-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
2015-09-10- Switch to options helpersDmitry Marakasov1-5/+2
- Add some NO_ARCHes Approved by: portmgr blanket Notes: svn path=/head/; revision=396577
2014-12-05Update "BSD" licenses in databases categoryMark Felder1-1/+1
Notes: svn path=/head/; revision=373992
2014-10-19- Convert ports from databases/ and deskutils/ to new USES=pythonMarcus von Appen1-3/+2
Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371173
2014-07-15Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.Adam Weinberger1-0/+2
Notes: svn path=/head/; revision=361939
2014-06-08- Remove easy_install dependencyMarcus von Appen1-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
2014-05-13- Stage.Gerald Pfeifer1-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
2014-01-13Python cleanup:Rene Ladan1-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
2013-09-20Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin1-5/+2
databases) Notes: svn path=/head/; revision=327717
2011-02-25- Move over to py25+ or aboveMartin Wilke1-1/+2
- While here kick md5 support Notes: svn path=/head/; revision=269616
2009-01-07PQueue is a package providing low-level PQ protocol classes forMartin Wilke1-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