aboutsummaryrefslogtreecommitdiff
path: root/ports-mgmt/py-pytoport
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update to the latest available commitMateusz Piotrowski2020-02-183-20/+8
| | | | | | | | | | This way we can remove the local patches and get a fix one of the reported bugs: https://github.com/freebsd/pytoport/issues/10 Also, lint the makefile while here. Notes: svn path=/head/; revision=526472
* Use PY_FLAVOR for dependencies.Mathieu Arnold2018-06-201-2/+2
| | | | | | | | | | FLAVOR is the current port's flavor, it should not be used outside of this scope. Sponsored by: Absolight Notes: svn path=/head/; revision=472884
* Reset MAINTAINERMark Felder2018-04-161-1/+1
| | | | | | | Approved by: maintainer (private communications) Notes: svn path=/head/; revision=467537
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-10/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Allow these ports to build with PACKAGE_BUILDING_FLAVORS set.Bryan Drewery2017-06-041-1/+2
| | | | | | | | | | | | Poudriere in particulr did not properly handle DEPENDS_ARGS which made these ports not properly install dependencies. That bug is being addressed along with adding FLAVORS support to it. With hat: portmgr MFH: 2017Q2 Notes: svn path=/head/; revision=442592
* Ignore on the package buildersAntoine Brodin2016-06-041-1/+7
| | | | | | | Reported by: pkg-fallout Notes: svn path=/head/; revision=416366
* ports-mgmt/py-pytoport: Update to 0.4.1Bernard Spil2016-05-153-5/+22
| | | | | | | | | | - Update to latest version 0.4.1 - Fix version snafu in dist tarball - Add new py-docutils dependency - Change download to GitHub (project no longer updates pypi) Notes: svn path=/head/; revision=415229
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Bump minimal python3 version to 3.3 in USESRuslan Makhmatkhanov2016-02-021-1/+1
| | | | | | | | | Because we are going to remove python 3.2 from the ports tree With hat: python Notes: svn path=/head/; revision=407841
* - Update to 0.4.0Martin Wilke2016-01-032-9/+6
| | | | | | | | | | - Switch to CHEESESHOP PR: 205729 Submitted by: maintainer Notes: svn path=/head/; revision=405146
* Cleanup GH_* and variables order.Mathieu Arnold2015-12-291-1/+0
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=404743
* pytoport provides a way to quickly generate the barebones of a Python packageMartin Wilke2015-12-283-0/+33
by simply providing the name of the module to the command. It accesses the PyPI JSON API and does its best to generate a fully functional Makefile and distinfo where sources are found. WWW: https://github.com/freebsd/pytoport PR: 205636 Submitted by: Brendan Molloy <brendan+freebsd@bbqsrc.net> Notes: svn path=/head/; revision=404629