add pifacecommon-4.2.2

This commit is contained in:
Andreas Billmeier 2019-11-23 23:43:11 +01:00
parent cd385745de
commit bdd4ba81ef
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22 (reverse added today)
* add pifacecommon-4.2.2
* add pwmled-1.4.1, Adafruit-PCA9685-1.0.1, python-singleton-0.1.2
* add rocketchat-API-0.6.35
* add python-ripple-api-0.0.3

View File

@ -0,0 +1,3 @@
DIST pifacecommon-4.2.2.tar.gz 13972 BLAKE2B 0e662796ba68f7be38c11d76176aede76371c22f513427bed434734b953037bc8ec325aa4bbffd56b5ca20f5baf3cd1307c9faf8ff8f30c0f38375811aa039dd SHA512 7397cff6c833f54ad8571ce11609cf8f3706c03eb751fba2488f088f0999f3e853b3c15f7e6af8f66db3249c7a10411d2facfc7f8d41236c8ecbcb441a4e9d12
EBUILD pifacecommon-4.2.2.ebuild 675 BLAKE2B 163052749922ff8704eb6caf21fb7a9ccc9aef079cb21a9d9a2abd4e04b8e48c3b2265acd0945be28fb348d949a5c7821c122e9156ceb478370bb7ce5bdf26ba SHA512 e83994970633d2d935cf8262a7db991f513351eb50dccffa3e31cb82b4d8ddc0749bfe88bcfb1c96045b2c14f29ea96fa8b83bee74b9c7f3ada39adf127c4c79
MISC metadata.xml 474 BLAKE2B 6191c1dd5fd34bcdc5066285639709feee017ecba9f0086aa9cb330194b85ad1170011366e9cf2e96f508f007f85ba1856657e439291674c857099f3dbd966b7 SHA512 858031779cd417e101b72133b1dcc05dd8a8d83162a06934677fa0775bf9e43405bac151ec74a5c4a9a2362aabe3b2698d721121f5ae807e1b863be776d1955a

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">pifacecommon</remote-id>
<maintainer status="unknown">
<email>thomas.preston@openlx.org.uk</email>
<name>Thomas Preston</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="The PiFace common functions module."
HOMEPAGE="https://github.com/piface/pifacecommon https://pypi.org/project/pifacecommon/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}