/games/linux-doom3/

itory'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/mail/postfix-policyd-spf-python
Commit message (Collapse)AuthorAgeFilesLines
* Use PY_FLAVOR for dependencies.mat2018-06-211-2/+2
| | | | | | | FLAVOR is the current port's flavor, it should not be used outside of this scope. Sponsored by: Absolight
* - Update to 2.0.2.bdrewery2018-01-252-8/+7
| | | | | | | | | - Change MASTER_SITES to CHEESESHOP. This now requires Python 3.3+. PR: 220706 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (maintainer)
* Simplify some USES=pythonantoine2017-12-291-1/+1
| | | | With hat: portmgr
* Convert Python ports to FLAVORS.mat2017-11-301-3/+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
* mail/postfix-policyd-spf-python: give maintainership to committerswills2017-10-181-1/+1
| | | | | PR: 221963 Submitted by: Yasuhiro KIMURA <yasu@utahime.org>
* Drop maintainershipbapt2017-07-311-1/+1
| | | | Submitted by: Giel van Schijndel <me@mortis.eu> (former maintainer)
* - Don't install COPYING with docsamdmi32016-12-252-2/+0
| | | | | | | | - Remove broken plist PR: 214907 Submitted by: amdmi3 Approved by: maintainer timeout (me@mortis.eu, 4 weeks)
* mail/postfix-policyd-spf-python: fix packaging with python3rm2016-10-092-13/+2
| | | | | | | | | Make the port use autoplist feature to let it package both with python2 and python3. PR: 212064 Reported by: Joseph Mulloy <freebsd-bugs@joe.mulloy.me> Approved by: maintainer timeout (14 days)
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.mat2016-04-011-3/+3
| | | | | With hat: portmgr Sponsored by: Absolight
* - Move mail/py-spf to mail/py-pyspfsunpoet2015-12-301-1/+2
| | | | | | | - Update MASTER_SITES: change from SF to CHEESESHOP - Update RUN_DEPENDS: always use dns/py-py3dns - Bump PORTREVISION for dependency change - Bump PORTREVISION for dependent ports
* Update to 1.3.2mat2015-10-272-5/+4
| | | | | | | | maintainer timeout. PR: 203686 Submitted by: mp39590 gmail com Sponsored by: Absolight
* - Add LICENSE_FILEamdmi32015-09-042-5/+5
| | | | | | | | - Add NO_ARCH - Switch to options helpers - Switch to @sample Approved by: portmgr blanket
* Remove UNIQUENAME and LATEST_LINK.mat2015-08-171-1/+0
| | | | | | | | | | | | | | | | | UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336
* - Update to version 1.3.1 [1]pawel2015-08-123-9/+7
| | | | | | | | - Remove not needed bsd.port.options.mk include PR: 201690 [1] Submitted by: Yasuhiro KIMURA [1] Approved by: maintainer
* Cleanup plistantoine2014-11-231-1/+0
|
* - Convert ports of mail/ to new USES=pythonmva2014-10-221-2/+2
| | | | Approved by: portmgr (implicit)
* Support stagingpawel2014-02-013-25/+23
| | | | | | PR: ports/185762 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> Approved by: maintainer timeout
* - rename AL2 to APACHE20 in Mk/bsd.licenses.db.mkohauer2013-12-311-1/+1
| | | | | | | | | | | | | | - svn move Templates/Licenses/AL2 Templates/Licenses/APACHE20 - add APACHE10 and APACHE11 to Mk/bsd.licenses.db.mk - add entry in UPDATING - bulk change all ports AL2 => APACHE20 - math/openfst/pkg-plist: remove share/licenses/openfst-1.3.4 PR: ports/184785 Submitted by: ohauer Reviewed by: tabthorpe Approved by: portmgr (tabthorpe@)
* Use setuptools for all Python ports.wg2013-12-161-1/+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)
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | mail)
* - update to 1.2rm2013-08-284-23/+33
| | | | | | | | | | | | | | | | | | | | - modify policyd-spf so ${PREFIX}/etc/postfix-policyd-spf-python/policyd-spf.conf is used as default configuration files and change pkg-message.in accordingly - modify misc file paths in man pages so they match installed ones - adopt to new options framework (DOCS) - add license information (AL2) - trim makefile header. - update WWW url in pkg-descr while I'm here: - use absolute url in MASTER_SITES and remove http redirection quirks - replace PYTHON_SITELIBDIR with PYTHON_PKGNAMEPREFIX in depends - shortened overly long lines to make Makefile more readable - remove attribution from pkg-descr, that's no more supported in ports PR: 177797 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> Approved by: Giel van Schijndel <me@mortis.eu> (maintainer)
* - Update to v1.0scheidell2012-05-123-6/+8
| | | | | | PR: ports/167616 Submitted by: Keith Gaughan <k@stereochro.me> Approved by: Giel van Schijndel <me@mortis.eu> (maintainer)
* - Update to 0.8.1culot2011-05-203-8/+12
| | | | | | PR: ports/157058 Submitted by: Keith Gaughan <k@stereochro.me> Approved by: Giel van Schijndel <me@mortis.eu> (maintainer)
* - fix pkg-plist problemnemoliu2010-01-121-0/+2
| | | | | PR: ports/142508 Submitter: Giel van Schijndel <me@mortis.eu> (maintainer)