summaryrefslogtreecommitdiff
path: root/dev-python/python-iptables/python-iptables-0.12.0.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-03-28 22:01:56 +0100
committerMichał Górny <mgorny@gentoo.org>2020-03-28 22:11:11 +0100
commitccfaa26350f145ab4b760bb1a47e8ee43cb2bbc7 (patch)
tree34f04e9b1d684ae26515e4c0dddb163e5f5cb247 /dev-python/python-iptables/python-iptables-0.12.0.ebuild
parent34972a6e038f91a98507a245843edb6aad2d336f (diff)
downloadgentoo-ccfaa26350f145ab4b760bb1a47e8ee43cb2bbc7.tar.gz
gentoo-ccfaa26350f145ab4b760bb1a47e8ee43cb2bbc7.tar.bz2
gentoo-ccfaa26350f145ab4b760bb1a47e8ee43cb2bbc7.zip
dev-python/python-iptables: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-iptables/python-iptables-0.12.0.ebuild')
-rw-r--r--dev-python/python-iptables/python-iptables-0.12.0.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/python-iptables/python-iptables-0.12.0.ebuild b/dev-python/python-iptables/python-iptables-0.12.0.ebuild
deleted file mode 100644
index a8fed303429d..000000000000
--- a/dev-python/python-iptables/python-iptables-0.12.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for iptables"
-HOMEPAGE="https://github.com/ldx/python-iptables"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-RDEPEND="net-firewall/iptables"
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-# tests manipulate live iptables rules, so disable them by default
-
-python_prepare_all() {
- # Prevent un-needed d'loading during doc build
- sed -e "s/, 'sphinx.ext.intersphinx'//" -i doc/conf.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C doc html
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( doc/_build/html/. )
- distutils-r1_python_install_all
-}