summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-11-14 17:09:03 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-11-14 17:09:03 +0000
commit59bf4ed76278cb1c0898995686630a88c1e0473a (patch)
tree2e91f89609f90abdf7b13bdc001a433b6597e8ea /dev-python/dnspython
parentDrop package masked for removal. (diff)
downloadgentoo-2-59bf4ed76278cb1c0898995686630a88c1e0473a.tar.gz
gentoo-2-59bf4ed76278cb1c0898995686630a88c1e0473a.tar.bz2
gentoo-2-59bf4ed76278cb1c0898995686630a88c1e0473a.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/dnspython')
-rw-r--r--dev-python/dnspython/dnspython-1.6.0.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-python/dnspython/dnspython-1.6.0.ebuild b/dev-python/dnspython/dnspython-1.6.0.ebuild
deleted file mode 100644
index b9e65de22b0e..000000000000
--- a/dev-python/dnspython/dnspython-1.6.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/dnspython-1.6.0.ebuild,v 1.6 2008/12/07 18:08:38 vapier Exp $
-
-NEED_PYTHON=2.2
-
-inherit distutils
-
-DESCRIPTION="DNS toolkit for Python"
-HOMEPAGE="http://www.dnspython.org/"
-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"
-IUSE="examples"
-
-DOCS="TODO"
-
-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
-}
-
-src_test() {
- export PYTHONPATH="${S}/build/lib:${PYTHONPATH}"
- cd tests
- emake || die "Unit tests failed!"
-}
-
-pkg_postinst() {
- elog "Documentation is sparse at the moment. Use pydoc,"
- elog "or read the HTML documentation at the dnspython's home page."
-}