dev-python/here-transit: add 1.2.1

Closes: #3642
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-10-20 11:30:22 +02:00
parent 10c20f40ca
commit a26a5690dc
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 38 additions and 6 deletions

View File

@ -606,11 +606,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 2024 Ebuilds in total, 2013 of them have in total 2041 (42 different) licenses assigned.
There are 2025 Ebuilds in total, 2014 of them have in total 2042 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1169|
|MIT|1170|
|Apache-2.0|452|
|GPL-3|120|
|BSD|113|

View File

@ -1,3 +1,5 @@
DIST here_transit-1.2.0.tar.gz 6634 BLAKE2B 35b0bcd759629f0492550b9f9f79b235644fa336d770066c913a44dd5d3b27155a475912bbc4cb89c93c1925751b9220f62eb3e243ca12d552be4ffed430b858 SHA512 3c690ea2b5de005795e1cb4d638a07c334513efec27630e079845f1cc31faba1ff9b0011f89ce0fdfe22f198be7ea49eae0cd64d4d76ca7aa2fec01ae880b911
EBUILD here-transit-1.2.0.ebuild 847 BLAKE2B a2bffe4f85d56c7c472cc1c961a0154dfbaed6f209059b450fe8f6368473684f5229deecb737599f934501e2c3883325b541647b788a8473f529bffa746c7b5f SHA512 d4cce88d3852c95fe36945e52a1f040aa39e0435026fb6e01c8fc3e8fb49d9ef3546155cd22380e8e9d2fddd2647a29f019af740882a5a86f5eb3703441de401
MISC metadata.xml 532 BLAKE2B 52d6a55023f62cebc601de2915740b98a6485000bb2fe1a6ae7541e48e914e30af6bf2d1a7a775807e5c24227d05e05f8dc0b6c6a51f39d4589962f2b0f7f64e SHA512 0d6e2da04d52e7112ea165fe63aaded93875741787073e7c3aa0c8828b25a3786ce630eb4060e0bffb033f8a81bd2bc67521c0efc207cddfb29a08184a1747f3
DIST here_transit-1.2.1.tar.gz 38266 BLAKE2B 12d2e3a6723ccb6ba6b084224205aea18766477c7820f0afa19eee2bda122d803e1cb742bd12014d54ad42e5cde9c389f79d438995cda4da6084e60b6b5878d2 SHA512 7c54c7e3bee36c55d1dd12388b9a5b61e656ca187a162b7d2a74843e2f5091debe919921ae19abb2988c1ef2d22a1bb0cadb0365dbeaf2e30b662840e5f58331
EBUILD here-transit-1.2.0.ebuild 847 BLAKE2B 68fbd2faf1851682663682f8c308d8d87f00ee046ea0025a47995458d70a5aba2c7c71c84f9bbe5977b1cfb1872b31b6457c50511e4840fdc9eae1d2cbaadee5 SHA512 5f55d5bb4f5d1d0c75e7927f390db6e2d5913b9a4af5797fbbc8a5625f03ff5fd6459cf910785bc58d3a6a8f5da60f758aa15c8e42481a1dfe7ef312a4bc0fa4
EBUILD here-transit-1.2.1.ebuild 812 BLAKE2B 87c39fc0e3c34d5a1109b61e4f520cc0913d831264fbd1be72ed579a3c193809ef1e15115dba56fe711d10ad6f0cac8b20ef0c3a7c72fd3eed30ef43e51f0620 SHA512 51531cbda25038324c21515be1aa84cc418fae06efb7c1df87ccc080348b9850c76c10f2a1201b76a5f8106674a130b50507c93a92e2e02fdafa88917b5d351b
MISC metadata.xml 469 BLAKE2B 5684e076283b0b30bca87ec3ea8adc96cf97ff0e15027b56d48998ab40646422a0626d22d1c005060fce6c690e07526866dac89c0bf743b41c7e01297e7581c1 SHA512 22daa395c4dfdcf2c3f962279c247a50424c34d32f3167c636301970bc9757f88ecc4edeccdff7c4e74943ef3d7b3ec7ec9a4dadcd7911a1ee43ac0bb3a9929c

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi

View File

@ -0,0 +1,31 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=hatchling
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous Python client for the HERE Transit V8 API"
HOMEPAGE="http://github.com/eifinger/here_transit https://pypi.org/project/here-transit/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.9.5[${PYTHON_USEDEP}]
>=dev-python/async-timeout-4.0.3[${PYTHON_USEDEP}]
>=dev-python/yarl-1.9.4[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/aresponses[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest

View File

@ -7,7 +7,6 @@
</maintainer>
<upstream>
<remote-id type="pypi">here-transit</remote-id>
<remote-id type="github">eifinger/here_transit</remote-id>
<maintainer status="unknown">
<email>kevin.stillhammer@gmail.com</email>
<name>Kevin Stillhammer</name>