summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2009-09-05 13:57:46 +0000
committerPatrick Lauer <patrick@gentoo.org>2009-09-05 13:57:46 +0000
commit4b73aade1bb84014ced3df1220b5a59773f351d5 (patch)
treecdb09e351c7e9407335736fd6066c3924a125214 /dev-python/decorator
parentBump to 1.7, remove old (diff)
downloadhistorical-4b73aade1bb84014ced3df1220b5a59773f351d5.tar.gz
historical-4b73aade1bb84014ced3df1220b5a59773f351d5.tar.bz2
historical-4b73aade1bb84014ced3df1220b5a59773f351d5.zip
Remove old
Package-Manager: portage-2.2_rc40/cvs/Linux x86_64
Diffstat (limited to 'dev-python/decorator')
-rw-r--r--dev-python/decorator/ChangeLog5
-rw-r--r--dev-python/decorator/decorator-3.0.1.ebuild49
2 files changed, 4 insertions, 50 deletions
diff --git a/dev-python/decorator/ChangeLog b/dev-python/decorator/ChangeLog
index 4f42deba8138..1d283301d78e 100644
--- a/dev-python/decorator/ChangeLog
+++ b/dev-python/decorator/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/decorator
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.7 2009/08/29 20:36:14 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/decorator/ChangeLog,v 1.8 2009/09/05 13:53:50 patrick Exp $
+
+ 05 Sep 2009; Patrick Lauer <patrick@gentoo.org> -decorator-3.0.1.ebuild:
+ Remove old
*decorator-3.1.2 (29 Aug 2009)
diff --git a/dev-python/decorator/decorator-3.0.1.ebuild b/dev-python/decorator/decorator-3.0.1.ebuild
deleted file mode 100644
index 17dcf16ca024..000000000000
--- a/dev-python/decorator/decorator-3.0.1.ebuild
+++ /dev/null
@@ -1,49 +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/decorator/decorator-3.0.1.ebuild,v 1.4 2009/08/08 00:55:22 arfrever Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-DESCRIPTION="Simplifies the usage of decorators for the average programmer"
-HOMEPAGE="http://pypi.python.org/pypi/decorator"
-SRC_URI="http://pypi.python.org/packages/source/d/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-DEPEND=""
-RDEPEND=""
-
-RESTRICT_PYTHON_ABIS="3*"
-
-DOCS="CHANGES.txt README.txt"
-
-src_test() {
- # multiprocessing module is available only in Python >=2.6, and isn't used anyway.
- sed -i -e '/multiprocessing/d' documentation.py || die
- testing() {
- PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" documentation.py
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
- if use doc; then
- dodoc documentation.pdf || die "dodoc pdf doc failed"
- dohtml documentation.html || die "dohtml html doc failed"
- fi
-}
-
-pkg_postinst() {
- python_mod_optimize decorator.py
-}
-
-pkg_postrm() {
- python_mod_cleanup
-}