Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/pypolicyd-spf/
Date: Sun, 03 Mar 2019 15:34:10
Message-Id: 1551626969.b8ef593ad7b0d789e29cf85c9482700b56f98117.mjo@gentoo
1 commit: b8ef593ad7b0d789e29cf85c9482700b56f98117
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 3 15:29:13 2019 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 3 15:29:29 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8ef593a
7
8 mail-filter/pypolicyd-spf: remove "unused" pypolicyd-spf-2.0.1.ebuild.
9
10 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 mail-filter/pypolicyd-spf/Manifest | 1 -
14 .../pypolicyd-spf/pypolicyd-spf-2.0.1.ebuild | 42 ----------------------
15 2 files changed, 43 deletions(-)
16
17 diff --git a/mail-filter/pypolicyd-spf/Manifest b/mail-filter/pypolicyd-spf/Manifest
18 index dad8c334b26..a02a604de1f 100644
19 --- a/mail-filter/pypolicyd-spf/Manifest
20 +++ b/mail-filter/pypolicyd-spf/Manifest
21 @@ -1,2 +1 @@
22 -DIST pypolicyd-spf-2.0.1.tar.gz 38086 BLAKE2B 70d13722000548eac9bb9a6ff80913e88b18227f1a90b864e4fc7749b8e0886e56fff6694d514ed0becb32ca129023cb9e66af3f33a4d4390c8c8c05affa1fb6 SHA512 85f51491ab1f44e197dbf9a15f9e723ba3aaf0472d9d1653595490d7211670a67cdca5699111ab5a29f9d919cd935ed58d8d70bd1312a4f0f90da4ef26a50509
23 DIST pypolicyd-spf-2.0.2.tar.gz 38546 BLAKE2B 691cd5db37592be0ef0cda41223280e764e83802e37563f4e6c08505731118199c03d27b0bf51cec0556aa946fc6c7465fe09d3c9100c8e2582a4d85ad828495 SHA512 adcc7b30c6922894f9407edd0637b02a138623f4480ec37635475396826b457c835b3ffb599d1985e306770fe5f72404552ed705bd957e63b5c54ca3d8991673
24
25 diff --git a/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.1.ebuild b/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.1.ebuild
26 deleted file mode 100644
27 index 51eea70ee7c..00000000000
28 --- a/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.1.ebuild
29 +++ /dev/null
30 @@ -1,42 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python3_{4,5,6} )
37 -
38 -# The built-in ipaddress module handles the parsing of IP addresses. If
39 -# python is built without ipv6 support, then ipaddress can't parse ipv6
40 -# addresses, and the daemon will crash if it sees an ipv6 SPF record. In
41 -# other words, it's completely broken.
42 -PYTHON_REQ_USE="ipv6"
43 -
44 -inherit distutils-r1
45 -
46 -DESCRIPTION="Python-based policy daemon for Postfix SPF verification"
47 -HOMEPAGE="https://launchpad.net/${PN}"
48 -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
49 -
50 -LICENSE="Apache-2.0"
51 -SLOT="0"
52 -KEYWORDS="amd64 x86"
53 -IUSE=""
54 -
55 -DEPEND=">=dev-python/pyspf-2.0.9[${PYTHON_USEDEP}]"
56 -
57 -RDEPEND="${DEPEND}
58 - dev-python/authres[${PYTHON_USEDEP}]"
59 -
60 -DOCS=( CHANGES policyd-spf.conf.commented README README.per_user_whitelisting )
61 -
62 -python_prepare_all() {
63 - # The "real" config file mentions the commented one, so we point
64 - # users in the right direction.
65 - local oldconf="policyd-spf.conf.commented"
66 - local newconf="/usr/share/doc/${PF}/${oldconf}"
67 -
68 - sed -i "1 s~ ${oldconf}~,\n# ${newconf}~" policyd-spf.conf \
69 - || die 'failed to update commented config file path'
70 -
71 - distutils-r1_python_prepare_all
72 -}