diff --git a/README.md b/README.md index 5867536b1..651251b5e 100644 --- a/README.md +++ b/README.md @@ -573,12 +573,12 @@ 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 1754 Ebuilds in total, 1743 of them have in total 1747 (34 different) licenses assigned. +There are 1755 Ebuilds in total, 1744 of them have in total 1748 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1023| -|Apache-2.0|379| +|Apache-2.0|380| |GPL-3|107| |BSD|92| |LGPL-3|23| diff --git a/dev-python/aio-geojson-generic-client/Manifest b/dev-python/aio-geojson-generic-client/Manifest index 7e843baad..d5963016f 100644 --- a/dev-python/aio-geojson-generic-client/Manifest +++ b/dev-python/aio-geojson-generic-client/Manifest @@ -1,3 +1,5 @@ DIST aio-geojson-generic-client-0.1.tar.gz 9717 BLAKE2B bc81e079ea9b7f39cfae4d345f9033426a11ce87a2f4c0bb97d63b3191adfae770203eec13a2415912a1918e5b5c674843a1cc4aa822e13f8d5c5da6015b2508 SHA512 aff57d925f3cc65c87694250c69196ab4affdc51f0cdb47460a8b8f83b2b01b6b54095fc724718244516f50f2f83383eeec971b954d380b7d73071a307bafb80 +DIST aio-geojson-generic-client-0.3.tar.gz 9792 BLAKE2B fe34fcaf0b317261084fb5a283707fc09560d8ea035bbf1648208e80c4b9aa9f0414503b809b7db1b9d11021d057de7c10588044ed7dad6e395bbca02a8b58bd SHA512 8c04ff47b1bd7cbf1aae506f3b6da86ff72d1aefcb4dc05461646f79d886c1e1b2f7d019b959c744408c383e98c3e72c103c141704231a9ffd355aeb699d736f EBUILD aio-geojson-generic-client-0.1.ebuild 948 BLAKE2B e992e743aaac9220c3680dfa1714adb494911401f5b33db7c173950902ea4a38a7a3465dfb0e42ffc081872a69306995f58b9c5271ac305bfdddf9ea87ead760 SHA512 7a047c7b0a6f8fee6b64848d883f577b2ba3e4395cea377bef2202256608c4ef1a057f966583f12ee19fc84c02122b0977307e5e8daf9a105aef4da9c78bda07 +EBUILD aio-geojson-generic-client-0.3.ebuild 1002 BLAKE2B 5370c76297b287b4f9a5fe00fd56bd64719970bbba15fe8baac7115b81b5bf7e9dc0253b201f7ae3ef74c3b98c9f76c1b5df92c925596aa64e4bfc7e3a6ef4f5 SHA512 81941205c0d9fabbd8e5704ac3dd1078be566297a30d4a2b67b237710fc12a1dbbd72500058ac51506987235bee9f436c449e39a68586ff3e66051ca42e7cde3 MISC metadata.xml 555 BLAKE2B 24d1fdab1d0affb5d08733eefcad0806c3a0f0e034d4a8e2e2c9fc4260d8de56fd9ea35f549927fe777802480d719e5704af2a2b8143216790d1bd2c5e9de4bf SHA512 8fcf4353faa23d436de939a45a9f37aa70053fac5acb0192a28f6f0c312eef2584f26179e2d02bb8f09cae76eabec8659b18c2d26f4c1d5b95199f8499b99f97 diff --git a/dev-python/aio-geojson-generic-client/aio-geojson-generic-client-0.3.ebuild b/dev-python/aio-geojson-generic-client/aio-geojson-generic-client-0.3.ebuild new file mode 100644 index 000000000..2eb91b6a9 --- /dev/null +++ b/dev-python/aio-geojson-generic-client/aio-geojson-generic-client-0.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="An generic async GeoJSON client library." +HOMEPAGE="https://github.com/exxamalte/python-aio-geojson-generic-client https://pypi.org/project/aio-geojson-generic-client/" +MY_PN=${PN//-/_} +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/aio-geojson-client-0.18[${PYTHON_USEDEP}] + >=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}] + =dev-python/geojson-2.4.0[${PYTHON_USEDEP}] + >=dev-python/pytz-2019.01[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest