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-r1.ebuild
Date: Tue, 04 Feb 2014 23:02:34
Message-Id: 20140204230230.050FA2004C@flycatcher.gentoo.org
1 chutzpah 14/02/04 23:02:29
2
3 Modified: ChangeLog
4 Added: python-iptables-0.3.0-r1.ebuild
5 Log:
6 Revision bump, add patch from upstream to fix problems with conntrack.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xE3F69979BB4B8928DA78E3D17CBF44EF)
9
10 Revision Changes Path
11 1.3 dev-python/python-iptables/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 3 Feb 2014 23:24:12 -0000 1.2
24 +++ ChangeLog 4 Feb 2014 23:02:29 -0000 1.3
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.2 2014/02/03 23:24:12 chutzpah Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v 1.3 2014/02/04 23:02:29 chutzpah Exp $
30 +
31 +*python-iptables-0.3.0-r1 (04 Feb 2014)
32 +
33 + 04 Feb 2014; Patrick McLean <chutzpah@g.o>
34 + +python-iptables-0.3.0-r1.ebuild,
35 + +files/python-iptables-0.3.0-conntrack-fixes.patch:
36 + Revision bump, add patch from upstream to fix problems with conntrack.
37
38 *python-iptables-0.3.0 (03 Feb 2014)
39
40
41
42
43 1.1 dev-python/python-iptables/python-iptables-0.3.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/python-iptables-0.3.0-r1.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-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: python-iptables-0.3.0-r1.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-r1.ebuild,v 1.1 2014/02/04 23:02:29 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
62 LICENSE="Apache-2.0"
63 SLOT="0"
64 KEYWORDS="~amd64"
65 IUSE=""
66
67 DEPEND="net-firewall/iptables"
68 RDEPEND="${DEPEND}"
69
70 # tests manipulate live iptables rules, so disable them by default
71 RESTRICT=test
72
73 PATCHES=(
74 "${FILESDIR}/${PN}-0.2.0-tests.patch"
75 "${FILESDIR}/${P}-conntrack-fixes.patch"
76 )
77
78 python_test() {
79 ${PYTHON} test.py
80 }