dev-python/pywaze: new package, add 0.5.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-11 19:50:27 +02:00 committed by Andreas Billmeier
parent c9a834079c
commit 4720b5f6cf
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pywaze-0.5.1.tar.gz 51475 BLAKE2B d4b73f848154b5f8a1446251a42213c1ba90bfbcf72a9a6979f9db164a044113bf7f16c1c9e293412892517f3cb7ad03079bda3057e8b0dcc1bde913ea47e779 SHA512 bdc69102b44aebf3721957ebab218919ed24d9d7db84aa01859d31d649c407e596c0af6d2516db894e6bc102e982507bdf5a0b954e09aa80b83e72601bca1261
EBUILD pywaze-0.5.1.ebuild 577 BLAKE2B 4a8af6ac3f5c2cb89d949ea9417b59186bed4395d27fe0b5c46f71e847e5965c653caf09b4e07808b47d29124dba494dbe9282ad4b816e1a8178bcc6cbbbf554 SHA512 381c8e44d023adc20f4640db688712987c9b709570d188f13e97081faf6713460419683fb3dc22d58480058e6a37cfcffab0cde3c9387efb29ee3c090f3bd23d
MISC metadata.xml 463 BLAKE2B 31366bf6136e3b7f2553c2fb780042668adde4d160b7ee29fa3c4946f0c15401ce9113d933d9b99ee48868417e56f94b370eb08fb308539a3b82a1001dc5c0ea SHA512 f514be51bbb1caab416b41b9d79f5fe4650a53b072e9638377a07f1660d556f9bad5c52b9a35a6262701208001c4244a4eede383aa12b81d80036aada635d435

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pywaze</remote-id>
<maintainer status="unknown">
<email>kevin.stillhammer@gmail.com</email>
<name>Kevin Stillhammer</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=hatchling
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous Waze client for calculating routes and travel times."
HOMEPAGE=" https://pypi.org/project/pywaze/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest