dev-python/pygti: drop olds, change SRC_URI
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
6d93f1fbb5
commit
17d4bf46ea
@ -1,5 +1,3 @@
|
||||
DIST pygti-0.9.2.tar.gz 44554 BLAKE2B 2f26fa4a10f6dd8d005a60e43e8574068dbf7cfd311fcbaa3860535c1f9723e58cc26c381ac7c928bae22d6b91102d55e52c8004ff4ede600c30d899e3915071 SHA512 075b6de245a354989214c7786e743d2824879ac3c6524e9e0891215f7e1e0011bb71cca0ef7c2de3662ec162a9931a71e0e332aeba048077dbe87424663474aa
|
||||
DIST pygti-0.9.3.tar.gz 44367 BLAKE2B ef6c2864e7a2dfc53359103bd4b73bf2155025aebb6f1398ac9121e03bff829d252b2bd29adf5d5f55249e9a8a64953a98fa76b83d37fba804bc98772fe3fab7 SHA512 81c8e776aecbe7ce678a25e1dd92ae292260fb1ec5efba21f282d77f68a887322fac099bbf6625838e14d44ad02bbd48b7c02639d6d5bb7e6e9508b5c4b4a52e
|
||||
EBUILD pygti-0.9.2.ebuild 750 BLAKE2B e8cf6175d9f52204b7660896bba97fc32a744ae05658490672b41fb45a8068eb59ae3e847e5e7f38ef39baf0eebf2c2e8ae7f09fef054246463b1e11a6a28eeb SHA512 d8e151a2d849ad8ad0ec6ffb00af14fc0b5948385118b82cb35234e8b10e48ba2d79675d4bf150c57acb6c697561ce30aa117c2679f226200e95b84f703e9859
|
||||
EBUILD pygti-0.9.3.ebuild 781 BLAKE2B 96b0fa55d34c0ce8af0d88b22503a267452973c0fece7e5a5622324a5f094bcc199bb7901c7d4262f23fcb02df4e106f12a1b38a7f143ef43e302a3f9135ef3d SHA512 f077a57e72744a3d07a0d9be59a6eeeeb35845a7407eec38a2c23dffdb3fa73d7ad187047a03b905d2df5f5887edd3a09a726b927d7669c9f5e42d68ba3051b4
|
||||
EBUILD pygti-0.9.3.ebuild 624 BLAKE2B 8ba53442fde13946336d9d19222525ade24d49e7fe2c2face7b647f082f660a33302ba5cc02c773d115b52959dd50dea21471190b5868fa58f6815bff2fcd9c5 SHA512 19f442df044580f75364d5b432d2bc2135e2c2ffc3430b0f810b5e0459c933c14ec134f17d694e93885c5e8428cb2ce139bd3c604282b3d6219ba3c01e491209
|
||||
MISC metadata.xml 508 BLAKE2B 34a5fd762fe38117032a8fdd7968bb6ec74f700b95a780efa751b2d9e097e92b0bfdc9834c563d98cc6a7cf759293a93f096a55a5451c48f073cd913dedc3d41 SHA512 c8413d53421715368ca957f65fc6331623721f234f4ecf727017272a245784769cbb63adf162beb2362c745528f035e08bff0eacac96eccd702e37373c16c8d0
|
||||
|
||||
@ -1,33 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="access public transport information in hamburg, germany."
|
||||
HOMEPAGE="https://github.com/vigonotion/pygti https://pypi.org/project/pygti/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
dev-python/voluptuous[${PYTHON_USEDEP}]
|
||||
dev-python/pytz[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
@ -1,15 +1,14 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="access public transport information in hamburg, germany."
|
||||
HOMEPAGE="https://github.com/vigonotion/pygti https://pypi.org/project/pygti/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
@ -22,14 +21,5 @@ DOCS="README.md"
|
||||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
dev-python/voluptuous[${PYTHON_USEDEP}]
|
||||
dev-python/pytz[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user