re-add dev-python/PyDispatcher, seems differ to pydispatcher from main repo

This commit is contained in:
Andreas Billmeier 2020-09-12 14:09:23 +02:00
parent 4cf213e136
commit 37066ce0d1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 61 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* queueman-0.5 add generic description to avoid repoman complaints
* complete all useflags in metadata.xml
* update/re-check some LICENSE strings
* re-add dev-python/PyDispatcher, seems differ to pydispatcher from main repo
2020-09-11 homeassistant-0.115.0_beta5
* bump numpy-1.19.2

View File

@ -0,0 +1,3 @@
DIST PyDispatcher-2.0.5.tar.gz 34437 BLAKE2B eefc2e0f22c9d91b22acd1352d76f1bd69d7161efdf0827f1bcb42ccf0a5c98576dbc25817e0a6c4cb3327b5fad39281cd19a784f0f477ba1b20690e644e867c SHA512 b361463f006a775e1f22cfe07520951649f76c26be35a80ca016620c8ef466129c4abeafe42f0ffdc605e7523287b1e804967f19d951089d24e052fe10d88e6f
EBUILD PyDispatcher-2.0.5.ebuild 911 BLAKE2B 7970b88ef28505425fcf3cbbb957404a96de103c7c137a808d95b07307590bbaf7776d0bd998bedd311808c3221169bbc449eda4e7454f129271a306915c5198 SHA512 a55c9b786a3c98373d0900640fa95517c5e5233af00d94951b61ef241764ebcd77c86376fa54ea506696a4dd940ab8cc09b19e1a502e971de39fe9dc3b344630
MISC metadata.xml 481 BLAKE2B 0ebee9319f75fdc9166499cb2d68ab27f893fe20b00f85a1b9735b69b45c296035863ab06621ea81de88495ab444941102710032a9a163edcbf6a1c28a4033d1 SHA512 eb114f4f719c6480be549ee30b9e3d15af846b9878fdba32ef77f86e8e878f17467f07cdf0b61de30ca33e6aa11bde90a5d6c3a2b42b3b43bf112d3bee5bb8c6

View File

@ -0,0 +1,42 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism"
HOMEPAGE="http://pydispatcher.sourceforge.net https://pypi.org/project/PyDispatcher/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
BDEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_compile_all() {
if use doc; then
cd docs/pydoc || die
"${EPYTHON}" builddocs.py || die
fi
}
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
python_install_all() {
use doc && local HTML_DOCS=( docs/pydoc/. )
distutils-r1_python_install_all
}

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">PyDispatcher</remote-id>
<maintainer status="unknown">
<email>pydispatcher-devel@lists.sourceforge.net</email>
<name>Mike C. Fletcher</name>
</maintainer>
</upstream>
</pkgmetadata>