summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-05-21 17:43:24 +0000
committerJustin Lecher <jlec@gentoo.org>2015-05-21 17:43:24 +0000
commiteb6f27ccc992e8034adf2e69d97519d5ab672378 (patch)
tree1362a5c7ff039853e9c16a66644fd77a7dcbb461 /dev-python/pydns
parentVersion Bump; Drop old (diff)
downloadgentoo-2-eb6f27ccc992e8034adf2e69d97519d5ab672378.tar.gz
gentoo-2-eb6f27ccc992e8034adf2e69d97519d5ab672378.tar.bz2
gentoo-2-eb6f27ccc992e8034adf2e69d97519d5ab672378.zip
Drop old
(Portage version: 2.2.19/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
Diffstat (limited to 'dev-python/pydns')
-rw-r--r--dev-python/pydns/ChangeLog6
-rw-r--r--dev-python/pydns/metadata.xml10
-rw-r--r--dev-python/pydns/pydns-2.3.4.ebuild46
-rw-r--r--dev-python/pydns/pydns-3.0.1.ebuild48
-rw-r--r--dev-python/pydns/pydns-3.0.2-r1.ebuild40
5 files changed, 10 insertions, 140 deletions
diff --git a/dev-python/pydns/ChangeLog b/dev-python/pydns/ChangeLog
index e438574c2c6a..e1a0a68d3462 100644
--- a/dev-python/pydns/ChangeLog
+++ b/dev-python/pydns/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/pydns
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pydns/ChangeLog,v 1.33 2015/05/21 13:28:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pydns/ChangeLog,v 1.34 2015/05/21 17:43:24 jlec Exp $
+
+ 21 May 2015; Justin Lecher <jlec@gentoo.org> -pydns-2.3.4.ebuild,
+ -pydns-3.0.1.ebuild, -pydns-3.0.2-r1.ebuild, metadata.xml:
+ Drop old
21 May 2015; Agostino Sarubbo <ago@gentoo.org> pydns-2.3.6-r1.ebuild,
pydns-3.1.0.ebuild:
diff --git a/dev-python/pydns/metadata.xml b/dev-python/pydns/metadata.xml
index 3b8a08567449..3f72e9fbdc21 100644
--- a/dev-python/pydns/metadata.xml
+++ b/dev-python/pydns/metadata.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>python</herd>
- <longdescription lang="en">PyDNS provides a module for performing DNS queries from python
+ <herd>python</herd>
+ <longdescription lang="en">PyDNS provides a module for performing DNS queries from python
applications. This was originally based on Guido van Rossum's DNS
library code, but has drifted further and further away from it over
time.</longdescription>
- <upstream>
- <remote-id type="pypi">pydns</remote-id>
- </upstream>
+ <upstream>
+ <remote-id type="pypi">pydns</remote-id>
+ </upstream>
</pkgmetadata>
diff --git a/dev-python/pydns/pydns-2.3.4.ebuild b/dev-python/pydns/pydns-2.3.4.ebuild
deleted file mode 100644
index bd6d2ce27f46..000000000000
--- a/dev-python/pydns/pydns-2.3.4.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pydns/pydns-2.3.4.ebuild,v 1.7 2014/10/04 14:15:11 blueness Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-DESCRIPTION="Python module for DNS (Domain Name Service)"
-HOMEPAGE="http://pydns.sourceforge.net/ http://pypi.python.org/pypi/pydns"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="CNRI"
-SLOT="2"
-KEYWORDS="amd64 ~ppc ~sparc x86"
-IUSE="examples"
-
-DEPEND="virtual/libiconv"
-RDEPEND=""
-RESTRICT_PYTHON_ABIS="3.*"
-
-DOCS="CREDITS.txt"
-PYTHON_MODNAME="DNS"
-
-src_prepare() {
- # Fix encodings (should be utf-8 but is latin1).
- for i in "${PYTHON_MODNAME}"/{Lib,Type}.py; do
- iconv -f ISO-8859-1 -t UTF-8 < "${i}" > "${i}~" && mv -f "${i}~" "${i}" || rm -f "${i}~"
- done
-
- # Don't compile bytecode.
- sed -i -e 's:^\(compile\).*:\1 = 0:g' -e 's:^\(optimize\).*:\1 = 0:g' setup.cfg
-
- # Fix Python shebangs in examples.
- sed -i -e 's:#!/.*\(python\)/*$:#!/usr/bin/\1:g' {tests,tools}/*.py
-}
-
-src_install(){
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins tests/*.py tools/*.py
- fi
-}
diff --git a/dev-python/pydns/pydns-3.0.1.ebuild b/dev-python/pydns/pydns-3.0.1.ebuild
deleted file mode 100644
index a680a05538ea..000000000000
--- a/dev-python/pydns/pydns-3.0.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pydns/pydns-3.0.1.ebuild,v 1.5 2014/10/04 14:15:11 blueness Exp $
-
-EAPI="4"
-PYTHON_DEPEND="3"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.*"
-
-inherit distutils
-
-DESCRIPTION="Python module for DNS (Domain Name Service)"
-HOMEPAGE="http://pydns.sourceforge.net/ http://pypi.python.org/pypi/pydns"
-SRC_URI="http://downloads.sourceforge.net/project/pydns/py3dns/${P/py/py3}.tar.gz"
-
-LICENSE="CNRI"
-SLOT="3"
-KEYWORDS="amd64 ~ppc ~sparc x86"
-IUSE="examples"
-
-DEPEND="!dev-python/py3dns
- virtual/libiconv"
-RDEPEND=""
-
-DOCS="CHANGES CREDITS"
-PYTHON_MODNAME="DNS"
-
-S="${WORKDIR}/${P/py/py3}"
-
-src_prepare() {
- # Don't compile bytecode.
- sed -i -e 's:^\(compile\|optimize\).*:\1 = 0:g' setup.cfg
-
- # cleanup docs
- rm -f -- "README-guido.txt"
- mv -f -- "README.txt" "README"
- mv -f -- "CREDITS.txt" "CREDITS"
-}
-
-src_install(){
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- docompress -x /usr/share/doc/${PF}/examples
- doins tests/*.py tools/*.py
- fi
-}
diff --git a/dev-python/pydns/pydns-3.0.2-r1.ebuild b/dev-python/pydns/pydns-3.0.2-r1.ebuild
deleted file mode 100644
index e4b20effdd48..000000000000
--- a/dev-python/pydns/pydns-3.0.2-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pydns/pydns-3.0.2-r1.ebuild,v 1.10 2015/04/08 08:05:12 mgorny Exp $
-
-EAPI=5
-PYTHON_COMPAT=( python{3_3,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python module for DNS (Domain Name Service)"
-HOMEPAGE="http://pydns.sourceforge.net/ http://pypi.python.org/pypi/pydns"
-SRC_URI="http://downloads.sourceforge.net/project/pydns/py3dns/${P/py/py3}.tar.gz"
-
-LICENSE="CNRI"
-SLOT="3"
-KEYWORDS="amd64 ~ia64 ~ppc ~sparc x86"
-IUSE="examples"
-
-DEPEND="virtual/libiconv"
-#should this have !dev-python/pydns:0 ?
-RDEPEND=""
-
-# Funny a dns package attempts to use the network on tests
-# Await the day that gentoo chills out on such a blanket law.
-RESTRICT=test
-
-S="${WORKDIR}/${P/py/py3}"
-
-python_test() {
- local test
- for test in tests/{test.py,test[2-5].py,testsrv.py}
- do
- "${PYTHON}" ${test} || die
- done
-}
-
-python_install_all() {
- use examples && local EXAMPLES=( ./{tests,tools}/. )
- distutils-r1_python_install_all
-}