add py-nextbusnext-0.1.4

This commit is contained in:
Andreas Billmeier 2019-11-23 18:03:28 +01:00
parent b92379de0e
commit 1962c85548
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -1,5 +1,6 @@
2019-11-22 (reverse added today)
*
* add py-nextbusnext-0.1.4
* add neurio-0.3.1
* add pynetio-0.1.9.1
* bump eternalegypt-0.0.10

View File

@ -0,0 +1,3 @@
DIST py-nextbusnext-0.1.4.tar.gz 4217 BLAKE2B b8843928f5c6fb6bfa5177c7147527ba1241b33f4f49d5a1387f6350315ed1b8af4e1083f7fcb1f328da6c042ba9f04f31010379e207de2b3114848a80e49cf0 SHA512 0edd843a3accf1d0600efaa485fedeefadebe27fe43920bd39f9091dd1505d29e9096eddf4eac1fc75a9c5d40b1ce207eadf5b134eda2bcb0d9cb51c9bb543d7
EBUILD py-nextbusnext-0.1.4.ebuild 803 BLAKE2B 3ee079acbbc8b2620088ec1020bb2f385dd42a79e8f961e48cf07267c65d7e7bbad9854155ce20ea0342712196596ae2eb5bc5c146d83667b74f2f3706a5a0b0 SHA512 89442f6f3e0afe72185b598d55e8199579b1cc9765164798dd8066167c0587da6d29ffddc4e88bd277ffef790409606f185e42a6e95c9a43d54a74a10729cf05
MISC metadata.xml 340 BLAKE2B 21879f913344233ad6a22295951bb3f028cdda7809037cb0c0d250328736041018bae8f39606e6981697ed23bb902baf2dbb06a81bb91a88802b9e850d3e2214 SHA512 2f01dc7f749acf699c348296b66a94a3e19ad4542991f87edb7fb1dacef7f783e6bbaeb5a4cfbe0736054224f479de502c6607949180ea184efbaa0358c7bc3e

View File

@ -0,0 +1,12 @@
<?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">py-nextbusnext</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# 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_PN=${PN/-/_}
DESCRIPTION="Minimalistic Python client for the NextBus public API for real-time transit arrival data"
HOMEPAGE="https://github.com/vividboarder/py_nextbus https://pypi.org/project/py-nextbusnext/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
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}]
)"
S="${WORKDIR}/${MY_PN}-${PV}"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}