dev-python/python-opendata-transport: drop 0.3.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 20:40:09 +02:00
parent edab941496
commit f1cb51790b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 4 additions and 38 deletions

View File

@ -617,7 +617,7 @@ 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 1841 Ebuilds in total, 1830 of them have in total 1850 (42 different) licenses assigned.
There are 1840 Ebuilds in total, 1829 of them have in total 1849 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
@ -625,7 +625,7 @@ There are 1841 Ebuilds in total, 1830 of them have in total 1850 (42 different)
|Apache-2.0|410|
|GPL-3|119|
|BSD|105|
|LGPL-3|26|
|LGPL-3|25|
|GPL-2|21|
|LGPL-3+|15|
|BSD-2|13|

View File

@ -1,5 +1,3 @@
DIST python_opendata_transport-0.3.0.tar.gz 12564 BLAKE2B 0cc5aefde0eb32502024c11481099315db5ddbee7789a86b586b504dd7523014f99713adb2f1802660324a0f2280cf315da9e251f7473470ee2ca8fb379a2e5b SHA512 b969788a55946d1ba405f1a6dcb6e057b4650d6ac8bb3ab33ea3a3196ab1f64065c26efda5901ed30e4cc89b9eff5ad8c203fc5effdcf884302f6a72f364107f
DIST python_opendata_transport-0.4.0.tar.gz 7200 BLAKE2B 1e73cc36bd8ad95183a5599cf13c49567fbe4d84cd556697e7d558c640aac45554bbf7fb93c403c0c726a86e4fe5b8279891eb1d841dff2891f08843c9ab5810 SHA512 c909d03e4fbc57bdabf99a9f028b0a68ae2057e01eac4b74ff400feba6c0d9aa5efe1e7a6a0fcc7832958c869fe090038ed5b54317a07c6374565925a8e1b9ab
EBUILD python-opendata-transport-0.3.0.ebuild 749 BLAKE2B e5f92ee037c8b0f2046552272a9e24d1aa2cd6614689420e2ada80f29b97cbec16408662e31cd3f30fa9434cf3ce5ce62e8153084869e51af7e8d50546f0fd89 SHA512 3e71da3f401df91debcc213c54fcad7d8216b237421bf767886794c33f61c54f678c6f78f4ba2e79171c39a9b5691f00f79e5982dce9f7571032a4a1c883777c
EBUILD python-opendata-transport-0.4.0.ebuild 708 BLAKE2B 9e7e0af8cd5df9a8c79eb9a006932917d3f5d9c5219c0b45578676e427fde5378fd5b5e9348e87023abc52cc11c52d85b78aeed81cd39687bf911e26277cb01c SHA512 0ec9dab1d5ac1ce6fe14ca36c5157504ad89660e52376af6d4805bd39de0c4d74a858f8b52fd3e2fd141d755db79229216b80bf9197738bea27f35bbdbca6af2
EBUILD python-opendata-transport-0.4.0.ebuild 708 BLAKE2B ffe5d149d9640e6166259b670b1ca4c55689f2dd1147335c9b7016fcc2caa98f56c07f6fa0751df99863a5b719dc07ca6de4fb99f8e7d80abbb1a4c57fb1934c SHA512 15906e9c4aefcaf01a5b6b1dcb923ddd8c8e4909bc833f9542d2a9a6e5e44a07b0b1d697ec896b034d9d200caa6abf7ff8ea2121660df316d6a7e9094f8ef754
MISC metadata.xml 575 BLAKE2B b61c7a2afd5f35f98af7ef4f1180a7e1be1cb70ebdc7980b7079ec3c1d385ef26a265385c1b321b1c92f54ed8b7e73117ae519b0049a8059d59e5639fe507e57 SHA512 dc6d15841ca0caa1923db4beacf3438e2270ae9c0da5909ab7361297a1e3d016fefa66ad0c4dc2ae83af3ed69dd42a5965ebd0c59b3859dd5d93800b8e06254e

View File

@ -1,32 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
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.7.4[${PYTHON_USEDEP}]
dev-python/urllib3[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

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