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