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.4.0.ebuild
Date: Sat, 02 Aug 2014 21:16:29
Message-Id: 20140802211604.C27F82004E@flycatcher.gentoo.org
1 chutzpah 14/08/02 21:16:03
2
3 Modified: ChangeLog
4 Added: python-iptables-0.4.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xE3F69979BB4B8928DA78E3D17CBF44EF)
9
10 Revision Changes Path
11 1.8 dev-python/python-iptables/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 1 Apr 2014 17:39:39 -0000 1.7
24 +++ ChangeLog 2 Aug 2014 21:16:03 -0000 1.8
25 @@ -1,6 +1,12 @@
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.7 2014/04/01 17:39:39 chutzpah Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v 1.8 2014/08/02 21:16:03 chutzpah Exp $
30 +
31 +*python-iptables-0.4.0 (02 Aug 2014)
32 +
33 + 02 Aug 2014; Patrick McLean <chutzpah@g.o>
34 + +python-iptables-0.4.0.ebuild:
35 + Version bump.
36
37 *python-iptables-0.3.0_p20130331 (01 Apr 2014)
38
39
40
41
42 1.1 dev-python/python-iptables/python-iptables-0.4.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/python-iptables-0.4.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/python-iptables-0.4.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: python-iptables-0.4.0.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/python-iptables/python-iptables-0.4.0.ebuild,v 1.1 2014/08/02 21:16:03 chutzpah Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=(python2_7)
55 inherit distutils-r1
56
57 DESCRIPTION="Python bindings for iptables."
58 HOMEPAGE="https://github.com/ldx/python-iptables"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="Apache-2.0"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE=""
65
66 DEPEND="net-firewall/iptables"
67 RDEPEND="${DEPEND}"
68
69 # tests manipulate live iptables rules, so disable them by default
70 RESTRICT=test
71 # needed for running tests
72 #RESTRICT=userpriv
73
74 PATCHES=(
75 "${FILESDIR}/${PN}-0.2.0-tests.patch"
76 )
77
78 python_test() {
79 ${PYTHON} test.py || die "tests fail with ${EPYTHON}"
80 }