summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-05-17 18:52:14 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-05-17 18:52:14 +0000
commit28fc0117fb9927febc35a1c6fa9449bd8edb32ed (patch)
tree0377844890646704b421e9d0db28c5760ffece32 /dev-python/dnspython
parentamd64 stable (tested by rullzer) (bug #309395). (diff)
downloadgentoo-2-28fc0117fb9927febc35a1c6fa9449bd8edb32ed.tar.gz
gentoo-2-28fc0117fb9927febc35a1c6fa9449bd8edb32ed.tar.bz2
gentoo-2-28fc0117fb9927febc35a1c6fa9449bd8edb32ed.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/dnspython')
-rw-r--r--dev-python/dnspython/Manifest2
-rw-r--r--dev-python/dnspython/dnspython-1.7.1.ebuild51
2 files changed, 0 insertions, 53 deletions
diff --git a/dev-python/dnspython/Manifest b/dev-python/dnspython/Manifest
index d5d8c18872e7..8da40b9efa44 100644
--- a/dev-python/dnspython/Manifest
+++ b/dev-python/dnspython/Manifest
@@ -1,6 +1,4 @@
-DIST dnspython-1.7.1.tar.gz 106517 RMD160 73eb3433cff218f859c748944ec3e442ed25ff25 SHA1 9423854b4ca28235bc0c457a7009d3530e1ab6bc SHA256 aecd7023d9d5f158474512c4b1bb98c1aab6646351771178935edbb2b2ac5d31
DIST dnspython-1.8.0.tar.gz 108588 RMD160 d7ab6f336a2c677544d1706d1d32e67afaad9405 SHA1 71f9a1b4243fca7a4cbda064665d15fc4c28f91e SHA256 8e9fd938bb695e0c5332f095b07a5aa8e4597cd8cc24ee9be5a15b463d7437ba
-EBUILD dnspython-1.7.1.ebuild 1173 RMD160 8862ebd5ddbc40339422ecdfb091002470ad3290 SHA1 7628f1ec927f74a8e2e125b78793b11c1800e87a SHA256 bc53c2f9aa698f2031594aee75a57444c86fad0c3127c833b6570eb0ab0f4277
EBUILD dnspython-1.8.0.ebuild 1147 RMD160 74e6c37041d49862689f19091c644f4376dd1390 SHA1 ebb4030b137eb11c7ad79c3ae8a705d06b4c7bd0 SHA256 936d68d39cdee7fcad957ac816d057a8ce2ac225bb17a42652fbc2abae59e6a1
MISC ChangeLog 7304 RMD160 75b109e74b72d408934e8ebfa4f86247c9ec3955 SHA1 3b09676456b229944a673fb49e67f506bb17a706 SHA256 f16216cdae722e520af01a8d19268aac4495a72459212bbe1e99796a02dc959e
MISC metadata.xml 1301 RMD160 f6d5b7288cb5c351fd4b91c2fea46007d92b8520 SHA1 5b39b71cd9c0504edd5170244cd37eb9004d5e3e SHA256 9e6cfdf51a2995ef9ad7df3a2fd664de677ec4ad5e9a6d6394d429d8af0818bd
diff --git a/dev-python/dnspython/dnspython-1.7.1.ebuild b/dev-python/dnspython/dnspython-1.7.1.ebuild
deleted file mode 100644
index 92e127da24c4..000000000000
--- a/dev-python/dnspython/dnspython-1.7.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/dnspython-1.7.1.ebuild,v 1.10 2009/11/14 17:10:16 arfrever Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-DESCRIPTION="DNS toolkit for Python"
-HOMEPAGE="http://www.dnspython.org/ http://pypi.python.org/pypi/dnspython"
-SRC_URI="http://www.dnspython.org/kits/${PV}/${P}.tar.gz"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
-IUSE="examples"
-
-DEPEND=""
-RDEPEND=""
-RESTRICT_PYTHON_ABIS="3.*"
-
-PYTHON_MODNAME="dns"
-DOCS="TODO"
-
-src_test() {
- cd tests
- testing() {
- PYTHONPATH="../build-${PYTHON_ABI}/lib:${PYTHONPATH}" emake
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-
- insinto /usr/share/${PN}
- doins -r tests
-}
-
-pkg_postinst() {
- distutils_pkg_postinst
-
- elog "Documentation is sparse at the moment. Use pydoc,"
- elog "or read the HTML documentation at the dnspython's home page."
-}