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/python-iptables: ChangeLog python-iptables-0.9.0.ebuild python-iptables-0.7.0.ebuild
Date: Thu, 30 Jul 2015 03:44:51
Message-Id: 20150730034442.E7C58110@oystercatcher.gentoo.org
1 idella4 15/07/30 03:44:42
2
3 Modified: ChangeLog
4 Added: python-iptables-0.9.0.ebuild
5 Removed: python-iptables-0.7.0.ebuild
6 Log:
7 bump, rm 1 old
8
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.15 dev-python/python-iptables/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?rev=1.15&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?rev=1.15&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/ChangeLog?r1=1.14&r2=1.15
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v
21 retrieving revision 1.14
22 retrieving revision 1.15
23 diff -u -r1.14 -r1.15
24 --- ChangeLog 15 Jun 2015 21:44:17 -0000 1.14
25 +++ ChangeLog 30 Jul 2015 03:44:42 -0000 1.15
26 @@ -1,6 +1,11 @@
27 # ChangeLog for dev-python/python-iptables
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v 1.14 2015/06/15 21:44:17 mrueg Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-iptables/ChangeLog,v 1.15 2015/07/30 03:44:42 idella4 Exp $
31 +
32 +*python-iptables-0.9.0 (30 Jul 2015)
33 +
34 + 30 Jul 2015; Ian Delaney <idella4@g.o> +python-iptables-0.9.0:
35 + bump
36
37 *python-iptables-0.8.0 (15 Jun 2015)
38
39 @@ -25,7 +30,7 @@
40 01 Nov 2014; Ian Delaney <idella4@g.o> +python-iptables-0.5.0.ebuild,
41 -python-iptables-0.3.0-r3.ebuild, -python-iptables-0.3.0_p20130331.ebuild:
42 bump; add py3 support, keyword x86, IUSE doc and all that goes with a doc
43 - build, remove edundant patch, tidy, fixes Bug #526276, rm old
44 + build, remove redundant patch, tidy, fixes Bug #526276, rm old
45
46 10 Aug 2014; Sergei Trofimovich <slyfox@g.o>
47 python-iptables-0.3.0-r3.ebuild, python-iptables-0.3.0_p20130331.ebuild,
48
49
50
51 1.1 dev-python/python-iptables/python-iptables-0.9.0.ebuild
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/python-iptables-0.9.0.ebuild?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-iptables/python-iptables-0.9.0.ebuild?rev=1.1&content-type=text/plain
55
56 Index: python-iptables-0.9.0.ebuild
57 ===================================================================
58 # Copyright 1999-2015 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-iptables/python-iptables-0.9.0.ebuild,v 1.1 2015/07/30 03:44:42 idella4 Exp $
61
62 EAPI=5
63 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
64 inherit distutils-r1
65
66 DESCRIPTION="Python bindings for iptables"
67 HOMEPAGE="https://github.com/ldx/python-iptables"
68 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
69
70 LICENSE="Apache-2.0"
71 SLOT="0"
72 KEYWORDS="~amd64 ~x86"
73 IUSE="doc"
74
75 DEPEND="net-firewall/iptables
76 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
77 RDEPEND="${DEPEND}"
78
79 # tests manipulate live iptables rules, so disable them by default
80
81 python_prepare_all() {
82 # Prevent un-needed d'loading during doc build
83 sed -e "s/, 'sphinx.ext.intersphinx'//" -i doc/conf.py || die
84 distutils-r1_python_prepare_all
85 }
86
87 python_compile_all() {
88 use doc && emake -C doc html
89 }
90
91 python_install_all() {
92 use doc && local HTML_DOCS=( doc/_build/html/. )
93 distutils-r1_python_install_all
94 }