From: Michał Górny Date: Fri, 5 Jan 2018 22:08:04 +0000 (+0100) Subject: dev-python/pydns: Clean old up X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=99309aaaa76294ff27302e700485a617e09706d2;p=gentoo.git dev-python/pydns: Clean old up --- diff --git a/dev-python/pydns/Manifest b/dev-python/pydns/Manifest index 48a47871d6bf..ea046dacf140 100644 --- a/dev-python/pydns/Manifest +++ b/dev-python/pydns/Manifest @@ -1,3 +1,2 @@ -DIST py3dns-3.1.0.tar.gz 29501 BLAKE2B 16bd2d263a851c2df5b2f9cf394eb28c4bd572806bfb969181f64421b2a8d475be6e6ec9658092a21bc052c4afd0c66be6f322159c294fb6a9bccfef37857d1a SHA512 ba2cb397351b587539072b608f6be878066bfb317f4cca472c2d3102638432de48a25d8a6efc41a88b9f77d939fa71ffb396d1a2dfab46e8d2b431d0eb89f7a4 DIST py3dns-3.1.1.tar.gz 29981 BLAKE2B b8f1aaeb95764f4d332ec05a367557a24fdd9171e98349668995687052cbd392169a76aaf24e3d29c94ca1c232f04842b84a2320eab5e553de12c278af23975c SHA512 5f22ba12db502f997be4c2479697cc21fe15aac218da1d347bd400a3ab73d86ad32b57740292a10eacb73e07eba977f67b881e59be16f902afab47053efd6c6e DIST pydns-2.3.6.tar.gz 28220 BLAKE2B 81d48c57bc90641c2e1667a951e3af3dc75dc1055e6f3f7b45e57d66bb1d391fc55ef0fa9fd261821de22c9119564cfc2b5a18f7a9780fe708b676c427824261 SHA512 261598c085c7d9f7adf5ce881814e444cdcf48a946dc17db467268ab6164f6045c204507cc58eff8e6f826b9786715ad2a9e766a72193ac8666969913180954b diff --git a/dev-python/pydns/pydns-3.1.0.ebuild b/dev-python/pydns/pydns-3.1.0.ebuild deleted file mode 100644 index 1b0e6e0a85c0..000000000000 --- a/dev-python/pydns/pydns-3.1.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python3_4 ) - -inherit distutils-r1 - -MY_PN="${PN/py/py3}" -MY_P="${MY_PN}-${PV}" -DESCRIPTION="Python DNS (Domain Name System) library" -HOMEPAGE="https://launchpad.net/py3dns" -SRC_URI="https://launchpad.net/${MY_PN}/trunk/${PV}/+download/${MY_P}.tar.gz" - -LICENSE="CNRI" -SLOT="3" -KEYWORDS="amd64 hppa ~ia64 ~ppc ~sparc x86" -IUSE="examples" - -DEPEND="" -RDEPEND="" - -# Most if not all of the tests require network access. -RESTRICT=test - -S="${WORKDIR}/${MY_P}" - -python_test() { - # Some of the tests are broken. - for test in tests/{test{,2,4}.py,testsrv.py} - do - "${PYTHON}" ${test} || die - done - - "${PYTHON}" tests/test5.py example.org || die -} - -python_install_all() { - use examples && local EXAMPLES=( ./{tests,tools}/. ) - distutils-r1_python_install_all -}