cleanup, add new Python Targets, Letter 'G-I' all Integrations

This commit is contained in:
2021-07-16 23:16:13 +02:00
committed by Andreas Billmeier
parent f2969b1dd1
commit a2c239bb14
84 changed files with 270 additions and 555 deletions

View File

@@ -1,5 +1,3 @@
DIST pygti-0.6.0.tar.gz 5884 BLAKE2B de78d3ffebe391a3f52bfbf46f59a39355a3e87c551efb8163429accc12be88555bd42b870451cfe383d8b737b5d674ae79727f20cc0e9ded81b90831256b5e4 SHA512 d549cc4cd45752962fac50a16fe0c0047158cf936730918f7f153aead3ccfee344aacdc7166a389117d622b44b57c2398f67c48012c9698b6f8013acb40b5ead
DIST pygti-0.9.2.tar.gz 44554 BLAKE2B 2f26fa4a10f6dd8d005a60e43e8574068dbf7cfd311fcbaa3860535c1f9723e58cc26c381ac7c928bae22d6b91102d55e52c8004ff4ede600c30d899e3915071 SHA512 075b6de245a354989214c7786e743d2824879ac3c6524e9e0891215f7e1e0011bb71cca0ef7c2de3662ec162a9931a71e0e332aeba048077dbe87424663474aa
EBUILD pygti-0.6.0.ebuild 809 BLAKE2B 7714594db152011fe8c245b05983dacd100409dca7c388736dc0f8e05db077e062c855bde0ff010836b6085d7b145909303b65cc4325fec8569d7b883b6b1d98 SHA512 c9f91ab254c3a4736849e8b57c94c4d5f2162bc925d6aa16a22640e4ed39e8d1cf2a4ee0701ffa091b2300ee60c6202f68ce2c9ad902325daa4e0146c0af92bc
EBUILD pygti-0.9.2.ebuild 809 BLAKE2B 193d610e2a33de504dd9f6e27b5f0fde166c34e4ff9830761a13ea68ce52fae977b4a60933a08f06e82256a81ee043413355d491c508edacf502bfe5d7af0f6f SHA512 dbd419db5e00372d6bb1ba387b29bde6ecda011158fdd1533b7f44cbeddd1a11374052544edbc96ec6abf12f5bb830222dd56c912276647e7f00d85564742919
DIST pygti-0.9.2.tar.gz 44554 BLAKE2B 2f26fa4a10f6dd8d005a60e43e8574068dbf7cfd311fcbaa3860535c1f9723e58cc26c381ac7c928bae22d6b91102d55e52c8004ff4ede600c30d899e3915071 MD5 83f54335acd86565e0ad924912058677 SHA512 075b6de245a354989214c7786e743d2824879ac3c6524e9e0891215f7e1e0011bb71cca0ef7c2de3662ec162a9931a71e0e332aeba048077dbe87424663474aa
EBUILD pygti-0.9.2.ebuild 817 BLAKE2B 5caef290db1053cafc01373b9aff7c9dccd2ba9af46d4730b12c84187e2d4d4eeee5d0522a97d95ba1766ce438005790295a9878eeaafd27dd449fc119c5a148 SHA512 da52d04fa4517c8d3efa3e43c0f0e705cd5dc41fcb13e2232d0358fd1d2697bce4e9fe49fd825530d38e5d4fd46da93ebb689a2553551476bc0f3bac168570f9
MISC metadata.xml 450 BLAKE2B b4f0b0b9261d5c45fec19283b752d31f825deb7990ff2cace47218584e991c24ac80a395cb42b487504ec027c06278cb3c0b2107a0f22f136bba14d1fe21c98e SHA512 93133a7f9abc2af20f7ed1c7294a0c7eade3abf7c01cbe847ebb9578140b2986815dc843c1b6c2c838fe72bf459a0440adf6f72fbef7973c396a18ae72b4860c

View File

@@ -1,32 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
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 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/voluptuous[${PYTHON_USEDEP}]
dev-python/pytz[${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
}

View File

@@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
@@ -16,10 +16,12 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/voluptuous[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]