dev-python/pydispatcher: Remove old
authorDavid Seifert <soap@gentoo.org>
Thu, 19 Mar 2020 22:12:29 +0000 (23:12 +0100)
committerDavid Seifert <soap@gentoo.org>
Thu, 19 Mar 2020 22:12:29 +0000 (23:12 +0100)
Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: David Seifert <soap@gentoo.org>
dev-python/pydispatcher/Manifest
dev-python/pydispatcher/pydispatcher-2.0.5.ebuild [deleted file]

index 1504c5211a6addeda11e6c090170519200829e50..b9ff6f71471804f142afb0af85c6821861abd1da 100644 (file)
@@ -1,2 +1 @@
 DIST PyPyDispatcher-2.1.2.tar.gz 23224 BLAKE2B 881e7063e61f80ed08f2e46967c7cf7e35d9687025a55d9b446e034085a09627b75263519c16ac64e0cbd9f84e822095f89ecbc52e95ed23a65fcb50d4e90d52 SHA512 a8a94a68551e72da2703a4f7fc93296fbffe78518ff363930125874a2a65dbbe4fe9434e910e0d019fb653785e41d024fe2c9d5bab5072c3989dd2a61ffcb708
-DIST pydispatcher-2.0.5.tar.gz 34437 BLAKE2B eefc2e0f22c9d91b22acd1352d76f1bd69d7161efdf0827f1bcb42ccf0a5c98576dbc25817e0a6c4cb3327b5fad39281cd19a784f0f477ba1b20690e644e867c SHA512 b361463f006a775e1f22cfe07520951649f76c26be35a80ca016620c8ef466129c4abeafe42f0ffdc605e7523287b1e804967f19d951089d24e052fe10d88e6f
diff --git a/dev-python/pydispatcher/pydispatcher-2.0.5.ebuild b/dev-python/pydispatcher/pydispatcher-2.0.5.ebuild
deleted file mode 100644 (file)
index e37ed66..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1 vcs-snapshot
-
-MY_PN="PyDispatcher"
-
-DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism"
-HOMEPAGE="http://pydispatcher.sourceforge.net/ https://pypi.org/project/PyDispatcher/"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
-IUSE="doc examples"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND=""
-
-python_compile_all() {
-       if use doc; then
-               pushd docs/pydoc/ > /dev/null
-               "${PYTHON}" builddocs.py || die "Generation of documentation failed"
-               popd > /dev/null
-       fi
-}
-
-python_test() {
-       "${PYTHON}" -m unittest discover
-}
-
-python_install_all() {
-       use doc && local HTML_DOCS=( docs/pydoc/. )
-       use examples && local EXAMPLES=( examples/. )
-       distutils-r1_python_install_all
-}