update py17track-3.2.1

This commit is contained in:
Andreas Billmeier 2021-03-20 08:36:03 +01:00 committed by Andreas Billmeier
parent 3a0bb8386d
commit cc5415efd2
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 45 additions and 1 deletions

View File

@ -9,6 +9,7 @@
* bump aioesphomeapi-2.6.6
* bump aiopylgtv-0.4.0
* bump pyCEC-0.5.1
* update py17track-3.2.1
2021-03-15
* add a copy (from main repo) of acme-1.11.0, still needed

View File

@ -1,3 +1,5 @@
DIST py17track-2.2.2.tar.gz 9365 BLAKE2B 8ebc6f1ce8230129d216b60a4dc95394d4b7bd9c952a747d8429f29998df13b2279274bed01a08fe7e4a42cb3b727dc2f96b80a47d4bb36e0797ee1fc6023e0a SHA512 3c1017ad7a9d564757fe57d21cbcd545350776b754adccce06950fdfe9b3df9640d0c325cc9a20e8e4c35ab46e2012dd62ef164e0a40aeb0e2e643aeb718d000
DIST py17track-3.2.1.tar.gz 10480 BLAKE2B c9c944d15b2b994e7b2446111fcbba8a8227e33d168e3350a9cdfe6def0d8e217a926b0d43065634159ec74c229d9ff87a75d65b7ded740e8f929a7944429a7a SHA512 3c3cf6142601119d8992f7c3a3071044150f78c599e27e6dcfbd5f9d9259329734bf830f4521a06f40c1c6fbc759d98e39a1c84609e39b03e890bab233dcc0d8
EBUILD py17track-2.2.2.ebuild 680 BLAKE2B 113e2211a28eef1102b35910aa43a966b44e66dbecbf8c8bbecaec4363aa4171c7c6d55003a86d1f247c40eef12c066daba00b3c673020093bdd0a95e92eb2a7 SHA512 ae5cc6ba8dc082727322c6d4240e0e90db1f58d08a8ff3bdb37f8c7a30e180eac74afacfd25689e55115a086ce52a0c5d5941bfa8311ca181b32c227d40a686e
MISC metadata.xml 328 BLAKE2B fa15bae32e7894032b8e5a95b08fb50c2683a69b8a97718e4775224c3846bd3f46d0912e8f5129c47fca99f0da151e2ead9b4dac6dd13e0c51605f732465e0bc SHA512 fa0f8f7e9c29b42465315f36c8cc257f907c332ceb31351efcb3f70fa853c90cbfdd029b488268aaa534ba0a8ad8a7a95049322d72f8f29b901a4cdb00a4981d
EBUILD py17track-3.2.1.ebuild 951 BLAKE2B a296dd349532ca08440394d8ca3c9564193e6bfba696aab30f59ff866b7e733ceee07fcab8a85dc39f601f132cfa2ba68d1525e68f8d0ec722cc947870d405e1 SHA512 cc2cafd42a0ec655c3eac8566b8c55a1b2b3b6973b2f5abc514f3c5e65bfa9604d6f2d33e175f270ff1c4c4d557e74f8a630997d158f724244bfcbb1520af933
MISC metadata.xml 452 BLAKE2B d03eb52b91a9d2005eb4ad7dc493a518b4e7cf9a9847f95bb2197762d6072a13c09b722ead547fafa96ac49f6489d91050e32888dcf6e3cfeab89321cbd16ad7 SHA512 82a5e11e6636c9f6b878592e045365b81c0619e9f751f3ca518c6d02bc84fde3068ed5be0ae9c807496c5a2fe1fe852a788278ebb21e64e5494334d61684b935

View File

@ -7,5 +7,9 @@
</maintainer>
<upstream>
<remote-id type="pypi">py17track</remote-id>
<maintainer status="unknown">
<email>bachya1208@gmail.com</email>
<name>Aaron Bach</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,37 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="A Simple Python API for 17track.net"
HOMEPAGE="https://github.com/bachya/py17track https://pypi.org/project/py17track/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}]
>=dev-python/async_timeout-3.0.1[${PYTHON_USEDEP}]
dev-python/attrs[${PYTHON_USEDEP}]
>=dev-python/pytz-2021.1[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}