dev-python/python-opendata-transport: add 0.5.0
Closes: #4066 Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
f9ece85960
commit
59745f80e3
@ -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 2304 Ebuilds in total, 2290 of them have in total 2327 (43 different) licenses assigned.
|
||||
There are 2305 Ebuilds in total, 2291 of them have in total 2328 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1313|
|
||||
|MIT|1314|
|
||||
|Apache-2.0|534|
|
||||
|GPL-3|143|
|
||||
|BSD|124|
|
||||
|
@ -1,3 +1,5 @@
|
||||
DIST python_opendata_transport-0.4.0.tar.gz 7200 BLAKE2B 1e73cc36bd8ad95183a5599cf13c49567fbe4d84cd556697e7d558c640aac45554bbf7fb93c403c0c726a86e4fe5b8279891eb1d841dff2891f08843c9ab5810 SHA512 c909d03e4fbc57bdabf99a9f028b0a68ae2057e01eac4b74ff400feba6c0d9aa5efe1e7a6a0fcc7832958c869fe090038ed5b54317a07c6374565925a8e1b9ab
|
||||
EBUILD python-opendata-transport-0.4.0.ebuild 708 BLAKE2B ffe5d149d9640e6166259b670b1ca4c55689f2dd1147335c9b7016fcc2caa98f56c07f6fa0751df99863a5b719dc07ca6de4fb99f8e7d80abbb1a4c57fb1934c SHA512 15906e9c4aefcaf01a5b6b1dcb923ddd8c8e4909bc833f9542d2a9a6e5e44a07b0b1d697ec896b034d9d200caa6abf7ff8ea2121660df316d6a7e9094f8ef754
|
||||
DIST python_opendata_transport-0.5.0.tar.gz 7291 BLAKE2B 80c3357e5dc211cb43bf6847766605f08d87c93527f4eb8c913925872f2eaeff144c2c608740cd58306e6e58330471b8fdc219a298e03ea623a868e593d83176 SHA512 56b07bb8b7a442f83290e674f6dc0b24bea621594c9075aa56f467d8ae9deef7f5402acbd2e2785cc2fe6739c7f4c406c1fedac7bb357acf6aff6c1be800b468
|
||||
EBUILD python-opendata-transport-0.4.0.ebuild 708 BLAKE2B bcc0c1402c967fb00bcf7a61c4a2a51927a050ff43ddb45bf93a9af45f094a4eb142e416a77efae2adffae34845e9cf8098add1e1923c9ed55150347ab08a4a7 SHA512 6101f6023c4e8532941ae4b655066719715d7f3861b1647288fc8ca10fb710fa41335768b91aa5bdedddb8df89da59287bb6f2ee95cec32a17fd5deb8dd53427
|
||||
EBUILD python-opendata-transport-0.5.0.ebuild 647 BLAKE2B b58dbdf2ac54213786ae8e935ecea68b428e830e4288e3874fc73b652355f4a16c71b42ec9b05c432b8fb685f48a8946542eab87a206b1116c6e56690f176b4f SHA512 dee9db8dae6ed187bc4dd85b93b02abe0a3ebb3659a4e48e518757914f3721ba0f09b94478d6617ff1635ff1873cb7c8ae92dc7fec0d56c9aa917239dfd86295
|
||||
MISC metadata.xml 575 BLAKE2B b61c7a2afd5f35f98af7ef4f1180a7e1be1cb70ebdc7980b7079ec3c1d385ef26a265385c1b321b1c92f54ed8b7e73117ae519b0049a8059d59e5639fe507e57 SHA512 dc6d15841ca0caa1923db4beacf3438e2270ae9c0da5909ab7361297a1e3d016fefa66ad0c4dc2ae83af3ed69dd42a5965ebd0c59b3859dd5d93800b8e06254e
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{11..12} )
|
||||
PYTHON_COMPAT=( python3_{11..13} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
|
@ -0,0 +1,24 @@
|
||||
# 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=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python API for interacting with transport.opendata.ch."
|
||||
HOMEPAGE="https://github.com/home-assistant-ecosystem/python-opendata-transport https://pypi.org/project/python-opendata-transport/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
RDEPEND=">=dev-python/aiohttp-3.8.5[${PYTHON_USEDEP}]
|
||||
dev-python/urllib3[${PYTHON_USEDEP}]"
|
||||
|
||||
distutils_enable_tests pytest
|
Loading…
Reference in New Issue
Block a user