add twentemilieu-0.1.0

This commit is contained in:
Andreas Billmeier 2019-07-14 16:58:26 +02:00
parent 74a959ac02
commit 9829c7902a
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST twentemilieu-0.1.0.tar.gz 7083 BLAKE2B 907e40bb8381341b8d98759913e07c5865506391c7df2680ef91f1ebd9172ab5324dd15d3d2b7baca50cae70d92194465fbbabedce5f92921f3a6cd22a801374 SHA512 c26adaaf70f72e570bb278b8d472273ee4920ac6b7c7dde852b18b48408818ef87e2073bfd1b92e579452e13f9a574a145b0f4d7cba21a673366ce61605271b7
EBUILD twentemilieu-0.1.0.ebuild 792 BLAKE2B a7e1cb3a35361364440f12f224c45c64c78058fae9f2a81a31f62a6d27e49508af745a9ddf9422e0629e6c2cf94ca5cdc072ef63d33520ff0d93d028fd8762d6 SHA512 1dd8c5d0e494e44e5465d4826def9d5965911266f0f2f0a737b66869d765ea7f94a02e064727f3647b0264e0989ef8be4def469a6c070952d42c304202c01a9d
MISC metadata.xml 466 BLAKE2B d1b5621ac95f110dcc51e13008fc9ea382b636329777d11c51e9b288f68724bdd5509d671168814a4a76d1fc7b5f09efe896e0ff125f115515b3783dc3fdb248 SHA512 ba91dd169d255857a97a2564b20d3c69ac947f6c823be4ddd7126016b7209fa7bb4410b4ea7b7ddc411858e543bd49e95fd964040e7bbca352fb94893200bf30

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">twentemilieu</remote-id>
<maintainer status="unknown">
<email>opensource@frenck.dev</email>
<name>Franck Nijhof</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for Twente Milieu API."
HOMEPAGE="https://github.com/frenck/python-twentemilieu https://pypi.org/project/twentemilieu/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT license"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="~dev-python/aiohttp-3.5.4
~dev-python/yarl-1.3.0"
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
}