summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-05-30 21:11:39 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-05-30 21:11:39 +0000
commite3701ecafe9ef8058582eb26a7d4aaab24d7f05e (patch)
treeb11ca45b7ce6a92711e0fe934310336680d810f1 /dev-python/pydispatcher
parentDelete empty lines. (diff)
downloadgentoo-2-e3701ecafe9ef8058582eb26a7d4aaab24d7f05e.tar.gz
gentoo-2-e3701ecafe9ef8058582eb26a7d4aaab24d7f05e.tar.bz2
gentoo-2-e3701ecafe9ef8058582eb26a7d4aaab24d7f05e.zip
Delete older ebuilds.
Diffstat (limited to 'dev-python/pydispatcher')
-rw-r--r--dev-python/pydispatcher/pydispatcher-1.0.1.ebuild27
-rw-r--r--dev-python/pydispatcher/pydispatcher-2.0.1.ebuild40
2 files changed, 0 insertions, 67 deletions
diff --git a/dev-python/pydispatcher/pydispatcher-1.0.1.ebuild b/dev-python/pydispatcher/pydispatcher-1.0.1.ebuild
deleted file mode 100644
index f925f2d14e05..000000000000
--- a/dev-python/pydispatcher/pydispatcher-1.0.1.ebuild
+++ /dev/null
@@ -1,27 +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/pydispatcher/pydispatcher-1.0.1.ebuild,v 1.4 2008/08/06 05:46:21 neurogeek Exp $
-
-inherit distutils
-
-MY_PN="PyDispatcher"
-
-DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism for Python"
-HOMEPAGE="http://pydispatcher.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
-
-IUSE=""
-DEPEND="virtual/python"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_install() {
- distutils_src_install
- distutils_python_version
- dohtml -r "${D}/$(python_get_sitedir)"/dispatch/docs/*
- rm -r "${D}/$(python_get_sitedir)/dispatch/docs"
-}
diff --git a/dev-python/pydispatcher/pydispatcher-2.0.1.ebuild b/dev-python/pydispatcher/pydispatcher-2.0.1.ebuild
deleted file mode 100644
index 739e8cff00ef..000000000000
--- a/dev-python/pydispatcher/pydispatcher-2.0.1.ebuild
+++ /dev/null
@@ -1,40 +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/pydispatcher/pydispatcher-2.0.1.ebuild,v 1.2 2009/02/15 22:46:29 patrick Exp $
-
-inherit distutils
-
-MY_P="PyDispatcher"-${PV}
-
-DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism for Python"
-HOMEPAGE="http://pydispatcher.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="doc examples"
-DEPEND="virtual/python"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
- distutils_src_install
- distutils_python_version
-
- if use examples; then
- insinto /usr/share/doc/"${PF}"/examples
- doins examples/*
- fi
-
- if use doc; then
- insinto "${ROOT}/usr/share/doc/${PF}/html"
- doins -r docs/*
-
- PYTHONPATH=${PYTHONPATH}:/${D}$(python_get_sitedir)
- ${python} docs/pydoc/builddocs.py
- dohtml -r *html
- fi
-
-}