add python_opendata_transport-0.1.4

This commit is contained in:
Andreas Billmeier 2019-11-24 17:50:39 +01:00
parent a5b1a35dd2
commit 2a87077bf1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add python_opendata_transport-0.1.4
* add pysupla-0.0.3, swisshydrodata-0.0.3
* add steamodd-4.22, pystiebeleltron-0.0.1, pysuez-0.1.17
* add spotipy-homeassistant-2.4.4, starlingbank-3.1

View File

@ -0,0 +1,3 @@
DIST python_opendata_transport-0.1.4.tar.gz 3547 BLAKE2B bd1d5a4f93f2b8b8f6a63b52a4d538335b477aa3af6d827d9376ebeaed8be5c3cdfd90b082e1076981393323606f4d4fb6af9d8d0282ea354277e499ab0a7391 SHA512 fc45a1c9f3734f7525942ddbcfe661db9c25f60f32491542f8d8475a47c21e48198c0602b2a523838010b6e9c858e326ef1935a169f66e345974cea12f748c74
EBUILD python_opendata_transport-0.1.4.ebuild 797 BLAKE2B ee555c909db0b4dcdf160b04bb753ef27eedc47faaa94707bffae6075a690348bdcfe6c6a26588759892c1fbe7c5aef9db3a427bab2b3678edb60fa993524a27 SHA512 87c044b5350be6a46e05b84d120d29504eb95b728044f3f793c80045fe9647ad334c4fd75816f2cf45f1760d7fc363db0bacef2e69474424bec9f62717fb759a
MISC metadata.xml 490 BLAKE2B c406870b0c5e600ae320b7953e97fcffe03c249f9f83c00d76e26cf9ae6e03d59ac491c9ecca7efa7a99e7b9ca444093ad27bed143293a5e584887a5165e7a22 SHA512 3d28067574f9a9bb0350c0f96176f005a38d9620e8b56129b1111e581bfc23b1c10c8635e6f249b05c3d9e04fc530fabc36b4249885ec850bfac208de9e344c3

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">python_opendata_transport</remote-id>
<maintainer status="unknown">
<email>fabian@affolter-engineering.ch</email>
<name>Fabian Affolter</name>
</maintainer>
</upstream>
</pkgmetadata>

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="Python API for interacting with transport.opendata.ch."
HOMEPAGE="https://github.com/fabaff/python-opendata-transport https://pypi.org/project/python_opendata_transport/"
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/aiohttp[${PYTHON_USEDEP}]
dev-python/async_timeout[${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
}