aboutsummaryrefslogtreecommitdiff
path: root/mail/py-pyspf
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Remove WRKSRCSunpoet Po-Chuan Hsieh2021-03-071-1/+1
| | | | | | | It is the same as the default value. Notes: svn path=/head/; revision=567693
* Drop python 2.7 support from a few portsAntoine Brodin2020-12-281-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=559531
* Update to 2.0.14Sunpoet Po-Chuan Hsieh2020-01-023-30/+10
| | | | | | | | Changes: https://github.com/sdgathman/pyspf/releases https://github.com/sdgathman/pyspf/blob/master/CHANGELOG Notes: svn path=/head/; revision=521839
* Restore DNSLookup API for pydnsv(DNS) for tcp fallback works againSunpoet Po-Chuan Hsieh2019-11-132-0/+14
| | | | | | | | | | | - Bump PORTREVISION for package change PR: 241755 Submitted by: Kamigishi Rei <spambox@haruhiism.net> Obtained from: https://github.com/sdgathman/pyspf/commit/4744deeec4a2c10987aae72989d7137156ed4151 Notes: svn path=/head/; revision=517539
* Update to 2.0.13Sunpoet Po-Chuan Hsieh2019-11-044-22/+21
| | | | | | | | | - Update WWW Changes: https://github.com/sdgathman/pyspf/blob/master/CHANGELOG Notes: svn path=/head/; revision=516697
* Bump a few PORTREVISIONs after r498529Antoine Brodin2019-04-101-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=498530
* Use PY_FLAVOR for dependencies.Mathieu Arnold2018-06-201-4/+4
| | | | | | | | | | 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
* Switch all pypi.python.org WWWs to a new PyPi home pypi.org whereDmitry Marakasov2018-04-251-1/+1
| | | | | | | | | | they now redirect to anyway. All new urls checked to return 200, I've fixed a couple of them in the process. Approved by: portmgr blanket, mat Notes: svn path=/head/; revision=468282
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Fix build after r438939.Mathieu Arnold2017-04-211-1/+1
| | | | | | | | Reported by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=439021
* - Fix trailing whitespace in pkg-descrs, categories [g-n]*Dmitry Marakasov2016-05-191-3/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415499
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-4/+4
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* - Sort knobsSunpoet Po-Chuan Hsieh2016-02-031-10/+4
| | | | | | | | | - Remove outdated PYTHON_REL check - Use post-patch: - Do not silence test message Notes: svn path=/head/; revision=407979
* mail/py-pyspf: Fix dependencies (missing & incorrect)Kubilay Kocak2016-01-263-9/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revision 404778 [1] modified py-pyspf to only use dns/py3dns instead of conditionally using dns/py-dns and py-py3dns depending on whether Python 2.x or 3.x was being used. dns/py-py3dns is a Python 3.x *only* package, but the port does not currently [2] limit itself to USES=python:3.0+. This results in errors for all dependent ports of py-pyspf when Python 2.x is used, which was reported for mail/postfix-policyd-spf-python. [3] pyspf's README notes the following requirements: This package requires PyDNS (or Py3DNS for running with Python 3) and either the ipaddr or python3.3 and later This package requires authres from either pypi or http://launchpad.net/authentication-results-python to process and generate RFC 5451 Authentication Results headers. The spf module in this version has been tested with python3.2 and does not require using 2to3. Accordingly, this change: - Reverts to conditional RUN_DEPENDS on dns/py-dns or py-py3dns depending on whether Python 2.x or Python 3.x is being used. - Adds authres to RUN_DEPENDS - Adds a conditional RUN_DEPENDS on devel/py-ipaddr, depending on Python version. While I'm here: - Sort and group USE{S} entries - Match COMMENT to setup.py:description - Add test and post-extract targets, TEST_DEPENDS, and patch files so that tests can be run properly - Pet several portlint warnings [1] https://svnweb.freebsd.org/changeset/ports/404778 [2] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206645 [3] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206643 QA: * portlint: OK (WARN: Makefile: [47]: possible use of "${CHMOD}") * porttest: OK (poudriere: 11amd64, python27, python34) * unittest: OK (Ran 425 tests in 0.155s) PR: 206643 Reported by: danger Approved by: portmgr (blanket) MFH: 2016Q1 Differential Revision: DXXXX Notes: svn path=/head/; revision=407273
* - Move mail/py-spf to mail/py-pyspfSunpoet Po-Chuan Hsieh2015-12-293-0/+42
- 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 Notes: svn path=/head/; revision=404778