add aiolifx-0.6.7, bump bitstring-3.1.5-r1 from main repo for compatibility

This commit is contained in:
Andreas Billmeier 2019-11-23 12:17:00 +01:00
parent d6f31413bf
commit f2d15a9c91
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
7 changed files with 100 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22
* add aiolifx-0.6.7, bump bitstring-3.1.5-r1 from main repo for compatibility
* add temescal-0.1.tar.gz
* add pylgnetcast-homeassistant-0.2.0
* add pylaunches-0.2.0

View File

@ -0,0 +1,3 @@
DIST aiolifx-0.6.7.tar.gz 21398 BLAKE2B fa763efd0229197b4c12ec946475631db6664a404f37b5ed908da0a595190f99f16d1f48245a2135388d8a53edde800f66022129867025e9075bdfb6f6177067 SHA512 898009514520989bee13620de172558cb943dca0e373fa6d4d557a3ccb2f485a3c599716ee244f9f02f7f48bcad9ab340696bb560317a9f0e07108909ce8fda6
EBUILD aiolifx-0.6.7.ebuild 771 BLAKE2B 3d81405520a3de200eab06b568ff77f90b58342a645179c43953d0c7b69ca7fbb34234e325ed1572060f491250ba628f329699a7f3591eb52115c93cb05da833 SHA512 0b7a1cff09917de4e2c8e034a0adda3ca70b1a0fcb017fc5a24880b5a73c651b2667c1cae00a3194dc5b7e2d76800f430eee581c1c59f93a74940e72f0e99197
MISC metadata.xml 463 BLAKE2B 78405f389500c97f4f7295d9ef24082344ab602c4ffd8018c81b8f587144f8e1a09041be83a9116a97d26dfadb9eeee0d14f169dd2b59f4dd77ccb8513acf914 SHA512 63f944a86fa6a1aa2b8c70122006c7dd4c380380eb926e308ceba5004f44ee78498ed35105888494884a3e3f701392e50e2d478e6c33835b6bbca6aac7421f00

View File

@ -0,0 +1,31 @@
# 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="API for local communication with LIFX devices over a LAN with asyncio."
HOMEPAGE="http://github.com/frawau/aiolifx https://pypi.org/project/aiolifx/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/bitstring[${PYTHON_USEDEP}]
dev-python/ifaddr[${PYTHON_USEDEP}]"
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
}

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">aiolifx</remote-id>
<maintainer status="unknown">
<email>francois@wautier.eu</email>
<name>François Wautier</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,3 @@
DIST bitstring-3.1.5.tar.gz 761527 BLAKE2B 2e0c9ade6cd946bb777ee666d12c777191add1fdbb2c47fca097a0ee48cd8caa6eefb5dc1a4d69d9fbf986342759956bd2ed078043b1df7c482af54e25afc0fe SHA512 2c98768c98fc5ab99eeb4ac089ec66f091949e5e4f326563b1b480981ac2aa40258fe0065809eed9c08a71fae3cf09254a8a2465e86635db5287c0d2f241d75f
EBUILD bitstring-3.1.5-r1.ebuild 650 BLAKE2B 6999cb42d0f0b67048e3c40b1274a82118e003a2637fbae31092ce5c466596bfd5fe318e9838685e1d681c20153a9b27c35e28004d3afff75ca522a4688a5981 SHA512 e91815ffc12b43afbf7d6d2ff3aafbfab671d76f04663826700d5e91214a4d332bea5969dd2a3504146f9ebf59ef3fb8a2ae005f53295629515b3152bec4f19a
MISC metadata.xml 661 BLAKE2B c6adcf300502376851157d3fb869c9327f49f4ae61f820ff59379816fddae11ec5c2952eb708d817facc9899ab347517a41c1307ac0bab4dcf34a4ff877bd704 SHA512 666cfe84898096825c292dd1e37af3b8d962f199199b8a73813b366fa4c14cc3a5373c4ed4fb8153b8e1c05321f4dae87204e1bf5a53e6fe07ab0117704b7f2d

View File

@ -0,0 +1,25 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
inherit distutils-r1
DESCRIPTION="A pure Python module for creation and analysis of binary data"
HOMEPAGE="https://github.com/scott-griffiths/bitstring"
SRC_URI="https://github.com/scott-griffiths/${PN}/archive/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm64 x86"
IUSE=""
S=${WORKDIR}/${PN}-${P}
DOCS=( README.rst release_notes.txt )
python_test() {
pushd test >/dev/null || die
"${PYTHON}" -m unittest discover || die "Testing failed with ${EPYTHON}"
popd >/dev/null || die
}

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>grozin@gentoo.org</email>
<name>Andrey Grozin</name>
</maintainer>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<longdescription>
A pure Python module designed to help make
the creation and analysis of binary data
as simple and natural as possible
</longdescription>
<upstream>
<remote-id type="google-code">python-bitstring</remote-id>
<remote-id type="github">scott-griffiths/bitstring</remote-id>
</upstream>
</pkgmetadata>