dev-python/zeroconf: Clean old up
authorMichał Górny <mgorny@gentoo.org>
Sat, 6 Jan 2018 10:05:18 +0000 (11:05 +0100)
committerMichał Górny <mgorny@gentoo.org>
Sat, 6 Jan 2018 13:39:23 +0000 (14:39 +0100)
dev-python/zeroconf/Manifest
dev-python/zeroconf/zeroconf-0.17.5.ebuild [deleted file]

index 35122d8693e859086d9c7b8058ac6bb54e076bd2..2369e242e9592b64b35ae75233927e52538a154c 100644 (file)
@@ -1,2 +1 @@
-DIST zeroconf-0.17.5.tar.gz 18428 BLAKE2B b77b0a3c561fd498e59043d8b613ee17f9b9a6ef4f98070d1f2125653017233e12d4a3e87071709981dc67150589d55591b5956fe9661a18d257331662294dfa SHA512 834f8d66bb92232474f60a5137ed7de3788fe1b7109cd5dd2100c3845a89bbb224df060bcb482b0c48b0a5849604247b8f29a902f9c78c35a72497a77f5323b3
 DIST zeroconf-0.19.1.tar.gz 22769 BLAKE2B a63332d70c5610da4fe44cc32d106893241284c3f70b5d6f55f68e3b3dd045a9c39b1009e9dce0b80c836d5ab0693b99974901ee664513c36f34c31907162d46 SHA512 1a7ac803caca1b230eba6c4bcfb714613f218850d9373ea0de609a3c9a509d13acfd14d64f9efbab78637b74aebdf385cf2deded1ff871fc6f3aea4477a07730
diff --git a/dev-python/zeroconf/zeroconf-0.17.5.ebuild b/dev-python/zeroconf/zeroconf-0.17.5.ebuild
deleted file mode 100644 (file)
index a4dde5c..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5}} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)"
-HOMEPAGE="https://github.com/jstasiak/python-zeroconf http://pypi.python.org/pypi/zeroconf"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-       dev-python/netifaces[${PYTHON_USEDEP}]
-       dev-python/six[${PYTHON_USEDEP}]
-       virtual/python-enum34[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? (
-               dev-python/nose[${PYTHON_USEDEP}]
-       )"
-
-# Not included
-RESTRICT="test"
-
-python_prepare_all() {
-       # It's virtual/python-enum34
-       sed \
-               -e "s:'enum-compat',::g" \
-               -i setup.py || die
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       nosetests --verbose || die
-}