diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-05-18 20:34:41 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-05-18 20:34:41 -0400 |
commit | 86d8d03b76dd557bcaa6395c49d54a4eafbdc24e (patch) | |
tree | a1200ad3223a6a3bfa3a8c72cf8b638bf564f094 /mail-filter | |
parent | sys-cluster/ceph-15.2.2: Version bump (diff) | |
download | gentoo-86d8d03b76dd557bcaa6395c49d54a4eafbdc24e.tar.gz gentoo-86d8d03b76dd557bcaa6395c49d54a4eafbdc24e.tar.bz2 gentoo-86d8d03b76dd557bcaa6395c49d54a4eafbdc24e.zip |
mail-filter/pypolicyd-spf: remove old "unused" version.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2.ebuild b/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2.ebuild deleted file mode 100644 index 19a17d76236a..000000000000 --- a/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) - -# The built-in ipaddress module handles the parsing of IP addresses. If -# python is built without ipv6 support, then ipaddress can't parse ipv6 -# addresses, and the daemon will crash if it sees an ipv6 SPF record. In -# other words, it's completely broken. -PYTHON_REQ_USE="ipv6" - -inherit distutils-r1 - -DESCRIPTION="Python-based policy daemon for Postfix SPF verification" -HOMEPAGE="https://launchpad.net/pypolicyd-spf" -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="dev-python/pyspf[${PYTHON_USEDEP}]" - -RDEPEND="${DEPEND} - dev-python/authres[${PYTHON_USEDEP}]" - -DOCS=( CHANGES policyd-spf.conf.commented README README.per_user_whitelisting ) - -python_prepare_all() { - # The "real" config file mentions the commented one, so we point - # users in the right direction. - local oldconf="policyd-spf.conf.commented" - local newconf="/usr/share/doc/${PF}/${oldconf}" - - sed -i "1 s~ ${oldconf}~,\n# ${newconf}~" policyd-spf.conf \ - || die 'failed to update commented config file path' - - distutils-r1_python_prepare_all -} |