Gentoo Archives: gentoo-commits

From: "Patrick McLean (chutzpah)" <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-iptables: ChangeLog python-iptables-0.3.0_p20130331.ebuild
Date: Tue, 01 Apr 2014 17:40:02
Message-Id: 20140401173940.0DCF62005E@flycatcher.gentoo.org
1 chutzpah 14/04/01 17:39:39
2
3 Modified: ChangeLog
4 Added: python-iptables-0.3.0_p20130331.ebuild
5 Log:
6 Version bump to snapshot version since there are a lot of fixes and upstream is slow about releases.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xE3F69979BB4B8928DA78E3D17CBF44EF)
9
10 Revision Changes Path
11 1.7 dev-python/python-iptables/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 24 Feb 2014 19:50:02 -0000 1.6
24 +++ ChangeLog 1 Apr 2014 17:39:39 -0000 1.7
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-python/python-iptables
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v 1.6 2014/02/24 19:50:02 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v 1.7 2014/04/01 17:39:39 chutzpah Exp $
30 +
31 +*python-iptables-0.3.0_p20130331 (01 Apr 2014)
32 +
33 + 01 Apr 2014; Patrick McLean <chutzpah@g.o>
34 + +python-iptables-0.3.0_p20130331.ebuild:
35 + Version bump to snapshot version since there are a lot of fixes and upstream
36 + is slow about releases.
37
38 *python-iptables-0.3.0-r3 (24 Feb 2014)
39
40
41
42
43 1.1 dev-python/python-iptables/python-iptables-0.3.0_p20130331.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/python-iptables-0.3.0_p20130331.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/python-iptables-0.3.0_p20130331.ebuild?rev=1.1&content-type=text/plain
47
48 Index: python-iptables-0.3.0_p20130331.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-iptables/python-iptables-0.3.0_p20130331.ebuild,v 1.1 2014/04/01 17:39:39 chutzpah Exp $
53
54 EAPI=5
55 PYTHON_COMPAT=(python2_7)
56 inherit distutils-r1
57
58 DESCRIPTION="Python bindings for iptables."
59 HOMEPAGE="https://github.com/ldx/python-iptables"
60 #SRC_URI="https://github.com/ldx/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
61 SRC_URI="mirror://gentoo/${P}.tar.xz"
62
63 LICENSE="Apache-2.0"
64 SLOT="0"
65 KEYWORDS="~amd64"
66 IUSE=""
67
68 DEPEND="net-firewall/iptables"
69 RDEPEND="${DEPEND}"
70
71 # tests manipulate live iptables rules, so disable them by default
72 RESTRICT=test
73 # needed for running tests
74 #RESTRICT=userpriv
75
76 PATCHES=(
77 "${FILESDIR}/${PN}-0.2.0-tests.patch"
78 )
79
80 python_test() {
81 ${PYTHON} test.py || die "tests fail with ${EPYTHON}"
82 }