Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-iptables/
Date: Sat, 28 Mar 2020 21:11:49
Message-Id: 1585429871.ccfaa26350f145ab4b760bb1a47e8ee43cb2bbc7.mgorny@gentoo
1 commit: ccfaa26350f145ab4b760bb1a47e8ee43cb2bbc7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 21:01:56 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 21:11:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccfaa263
7
8 dev-python/python-iptables: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-iptables/Manifest | 1 -
13 .../python-iptables/python-iptables-0.12.0.ebuild | 37 ----------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/python-iptables/Manifest b/dev-python/python-iptables/Manifest
17 index df948f9ac8e..c8bfab36f5b 100644
18 --- a/dev-python/python-iptables/Manifest
19 +++ b/dev-python/python-iptables/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-iptables-0.12.0.tar.gz 40831 BLAKE2B ea53605a5dd581cad7e05059c1534376a53b3b3da89b8c172cbb38ae7482ca3972fdf786badf3328960847c12c96ce32278657c32c857a1682650621a3add47a SHA512 bf79288fac53542e523c8ed0e4e0711792cf524100e39f57f10d3581d1b958712875a765f690b3d5ec6e28af9de48d2f3dd0a787c7037ebfc6f8bf87b5e321b2
22 DIST python-iptables-0.13.0.tar.gz 83456 BLAKE2B 9c8da40437d408c6bb49e700b8d1663e7fdb0a1001b15409cf4c8b9edf612f75eb546207bc86d0535f8fb3744e42244f3e067dff80037c5a3eadc028ec8024f3 SHA512 1693924b8ee79b3b0929b57e86908282d53d28044b063d7bd169a6e9c1b45b5b6b4a79e54d024beedbfd6e42f88417eb2d0312bf90895702a3b8bfe2c2eb22b2
23
24 diff --git a/dev-python/python-iptables/python-iptables-0.12.0.ebuild b/dev-python/python-iptables/python-iptables-0.12.0.ebuild
25 deleted file mode 100644
26 index a8fed303429..00000000000
27 --- a/dev-python/python-iptables/python-iptables-0.12.0.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python3_6 )
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="Python bindings for iptables"
38 -HOMEPAGE="https://github.com/ldx/python-iptables"
39 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="Apache-2.0"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -IUSE="doc"
45 -
46 -RDEPEND="net-firewall/iptables"
47 -DEPEND="${RDEPEND}
48 - dev-python/setuptools[${PYTHON_USEDEP}]
49 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
50 -
51 -# tests manipulate live iptables rules, so disable them by default
52 -
53 -python_prepare_all() {
54 - # Prevent un-needed d'loading during doc build
55 - sed -e "s/, 'sphinx.ext.intersphinx'//" -i doc/conf.py || die
56 - distutils-r1_python_prepare_all
57 -}
58 -
59 -python_compile_all() {
60 - use doc && emake -C doc html
61 -}
62 -
63 -python_install_all() {
64 - use doc && local HTML_DOCS=( doc/_build/html/. )
65 - distutils-r1_python_install_all
66 -}