bump python_opendata_transport-0.2.1

This commit is contained in:
Andreas Billmeier 2020-01-04 17:05:02 +01:00
parent f34f6b2016
commit 3bce3a9748
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -9,6 +9,7 @@
* add aiopylgtv-0.2.4 (replaces pylgtv)
* bump youtube_dl-2020.1.1
* bump zeroconf-0.24.4
* bump python_opendata_transport-0.2.1
2019-12-31
* esphome tighten protobuf dependency

View File

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

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
}