add pybbox-0.0.5_alpha0

This commit is contained in:
Andreas Billmeier 2019-11-24 12:34:27 +01:00
parent 4a711a16ff
commit 30713a6f98
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add pybbox-0.0.5_alpha0
* add Adafruit_BBIO-1.0.0 and Adafruit_BBIO-1.1.1
* dg to pyairvisual-3.0.1
* add pyairvisual-3.0.3

View File

@ -0,0 +1,3 @@
DIST pybbox-0.0.5_alpha0.zip 5963 BLAKE2B 77e3f74b69e4bb58de50a137ccb7ec9f6f0844772d41c774675e41e59d240f533f908ad16a2a28e4eda87d5fe2bcc7c3f79aac12df4642d265ff341f248de219 SHA512 063c2cdabe25b1a8d645161027b45f50e519252b8e269ae4ca1b74b654dc20a1fd6ed20c9f1a16a1721f4b5716334db6418fdb382b26c03f68cc59713184c8a7
EBUILD pybbox-0.0.5_alpha0.ebuild 768 BLAKE2B c89579432b363d956d64068d0498a989fef67357374675d63f2fbc6dd2ba3f6d199bccdcd1f295eb364e2229e544e973d04e79e07b08b681ccb0cbc9775b030e SHA512 3169f42a4d4f72ced06dea200dd25d3fdd57dbdc0ea0c2a14d4311f65d335367d4dde1f92f4cddabaf6664d2603f5c9fe4a652fb1b09662451e6333b34c25ab4
MISC metadata.xml 454 BLAKE2B 411a228a60ffbea33d3fc8ffa5dcb00884c8499ea6312db180e45f3f8415a15f802faee19fcab8a4e86a0f7e0b5efd5a982da108afa2ba690aff2200aeb8a2c8 SHA512 ae34f7393434aee574032a8137ffbb96faea94fb0fb52a23b4e96fc39b5cbbf49081d28ff32a019981be133575d7f5aea9ef7e11d8b55d9cef57351e7e56ee35

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">pybbox</remote-id>
<maintainer status="unknown">
<email>hydreliox@gmail.com</email>
<name>Hydreliox</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# 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
MY_PV=${PV/_alpha0/-alpha}
DESCRIPTION="a simple python3 library for the Bouygues BBox Routeur API"
HOMEPAGE="https://github.com/HydrelioxGitHub/pybbox https://pypi.org/project/pybbox/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.zip -> ${P}.zip"
S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="MIT"
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
}