Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyspf/
Date: Sat, 10 Oct 2015 12:35:46
Message-Id: 1444479259.abc48a5b7e315115cab848f155a9fd6b1961bd0a.jlec@gentoo
1 commit: abc48a5b7e315115cab848f155a9fd6b1961bd0a
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 10 12:14:19 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 12:14:19 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abc48a5b
7
8 dev-python/pyspf: Drop old
9
10 Package-Manager: portage-2.2.22
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pyspf/Manifest | 1 -
14 dev-python/pyspf/pyspf-2.0.10.ebuild | 35 -----------------------------------
15 2 files changed, 36 deletions(-)
16
17 diff --git a/dev-python/pyspf/Manifest b/dev-python/pyspf/Manifest
18 index cb15e9a..738d0cc 100644
19 --- a/dev-python/pyspf/Manifest
20 +++ b/dev-python/pyspf/Manifest
21 @@ -1,2 +1 @@
22 -DIST pyspf-2.0.10.tar.gz 62890 SHA256 0a3be1cc1915649ed8960a1b8add4110379c3c348e98e642a53f69d028709de8 SHA512 8a10a82fe5226ffee6376ea19f1fe075bb8676cd7eeadbfec1de95326fb8e6f08ad466e84129c016b62452f26f0552f1a463fc6a53d992c67ae1d8b1a18b3a46 WHIRLPOOL 5cceeda27c6a84f827c1505f7808e371f5eecc95737a98cd77d0b06dcccd58fe0d0971b9ecfadc7c23c69ee921eefe56cbb98974c47ea3b57d1b0bcfae5e050f
23 DIST pyspf-2.0.11.tar.gz 63594 SHA256 693e80df3d61d69daaa2590e0f2bc8167d5fa36ce373d43987984cb00ae23928 SHA512 cababa82d1b6c206033a6583a67502d982a2c34baec0ccc08513a2bc9beb4cfc84dd5d615ac852fd25885c4abd43d9e8704f517c70fadb4a600d3b8a6254d755 WHIRLPOOL f1f97b8d0c6207a01d5d48aa3f63948749d3ceca590c146ec846638e263ba8155616e9d34af0bdfde3c1438869a3727a98154c054e0e33632c8cccd23d3f2e3d
24
25 diff --git a/dev-python/pyspf/pyspf-2.0.10.ebuild b/dev-python/pyspf/pyspf-2.0.10.ebuild
26 deleted file mode 100644
27 index 8340571..0000000
28 --- a/dev-python/pyspf/pyspf-2.0.10.ebuild
29 +++ /dev/null
30 @@ -1,35 +0,0 @@
31 -# Copyright 1999-2015 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI="5"
36 -
37 -PYTHON_COMPAT=( python{2_7,3_3,3_4} )
38 -PYTHON_REQ_USE="ipv6?"
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Python implementation of the Sender Policy Framework (SPF) protocol"
42 -HOMEPAGE="https://pypi.python.org/pypi/pyspf"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="PSF-2"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="ipv6 test"
49 -
50 -# >=python-3.3 comes with the built-in ipaddress module
51 -RDEPEND="dev-python/authres[${PYTHON_USEDEP}]
52 - $(python_gen_cond_dep '>=dev-python/ipaddr-2.1.10[${PYTHON_USEDEP}]' python2_7)
53 - $(python_gen_cond_dep 'dev-python/pydns:2[${PYTHON_USEDEP}]' python2_7)
54 - $(python_gen_cond_dep 'dev-python/pydns:3[${PYTHON_USEDEP}]' 'python3*')"
55 -
56 -DEPEND="test? ( ${RDEPEND}
57 - dev-python/pyyaml[${PYTHON_USEDEP}] )"
58 -
59 -REQUIRED_USE="test? ( ipv6 )"
60 -
61 -python_test() {
62 - pushd test &> /dev/null
63 - "${PYTHON}" testspf.py || die
64 - popd &> /dev/null
65 -}