Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyspf: pyspf-2.0.10.ebuild ChangeLog pyspf-2.0.8-r1.ebuild pyspf-2.0.7-r1.ebuild pyspf-2.0.5.ebuild pyspf-2.0.8.ebuild pyspf-2.0.6.ebuild
Date: Mon, 29 Sep 2014 04:14:42
Message-Id: 20140929041437.3B280277@oystercatcher.gentoo.org
1 idella4 14/09/29 04:14:37
2
3 Modified: ChangeLog
4 Added: pyspf-2.0.10.ebuild
5 Removed: pyspf-2.0.8-r1.ebuild pyspf-2.0.7-r1.ebuild
6 pyspf-2.0.5.ebuild pyspf-2.0.8.ebuild
7 pyspf-2.0.6.ebuild
8 Log:
9 bump; update, fine tune deps
10
11 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
12
13 Revision Changes Path
14 1.27 dev-python/pyspf/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyspf/ChangeLog?rev=1.27&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyspf/ChangeLog?rev=1.27&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyspf/ChangeLog?r1=1.26&r2=1.27
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyspf/ChangeLog,v
23 retrieving revision 1.26
24 retrieving revision 1.27
25 diff -u -r1.26 -r1.27
26 --- ChangeLog 3 May 2014 05:58:57 -0000 1.26
27 +++ ChangeLog 29 Sep 2014 04:14:37 -0000 1.27
28 @@ -1,6 +1,13 @@
29 # ChangeLog for dev-python/pyspf
30 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyspf/ChangeLog,v 1.26 2014/05/03 05:58:57 idella4 Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyspf/ChangeLog,v 1.27 2014/09/29 04:14:37 idella4 Exp $
33 +
34 +*pyspf-2.0.10 (29 Sep 2014)
35 +
36 + 29 Sep 2014; Ian Delaney <idella4@g.o> +pyspf-2.0.10.ebuild,
37 + -pyspf-2.0.5.ebuild, -pyspf-2.0.6.ebuild, -pyspf-2.0.7-r1.ebuild,
38 + -pyspf-2.0.8-r1.ebuild, -pyspf-2.0.8.ebuild:
39 + bump; update, fine tune deps
40
41 *pyspf-2.0.9 (03 May 2014)
42
43
44
45
46 1.1 dev-python/pyspf/pyspf-2.0.10.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyspf/pyspf-2.0.10.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyspf/pyspf-2.0.10.ebuild?rev=1.1&content-type=text/plain
50
51 Index: pyspf-2.0.10.ebuild
52 ===================================================================
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyspf/pyspf-2.0.10.ebuild,v 1.1 2014/09/29 04:14:37 idella4 Exp $
56
57 EAPI="5"
58
59 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
60 PYTHON_REQ_USE="ipv6?"
61 inherit distutils-r1
62
63 DESCRIPTION="Python implementation of the Sender Policy Framework (SPF) protocol"
64 HOMEPAGE="http://pypi.python.org/pypi/pyspf"
65 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
66
67 LICENSE="PSF-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="ipv6 test"
71
72 # >=python-3.3 comes with the built-in ipaddress module
73 RDEPEND="dev-python/authres[${PYTHON_USEDEP}]
74 $(python_gen_cond_dep '>=dev-python/ipaddr-2.1.10[${PYTHON_USEDEP}]' python2_7)
75 $(python_gen_cond_dep 'dev-python/pydns:2[${PYTHON_USEDEP}]' python2_7)
76 $(python_gen_cond_dep 'dev-python/pydns:3[${PYTHON_USEDEP}]' 'python3*')"
77
78 DEPEND="test? ( ${RDEPEND}
79 dev-python/pyyaml[${PYTHON_USEDEP}] )"
80
81 REQUIRED_USE="test? ( ipv6 )"
82
83 python_test() {
84 pushd test &> /dev/null
85 "${PYTHON}" testspf.py || die
86 popd &> /dev/null
87 }