bump aio-geojson-client-0.17

This commit is contained in:
2022-04-01 07:18:28 +02:00
committed by Andreas Billmeier
parent c3cef8ee02
commit a58ca35d96
3 changed files with 41 additions and 2 deletions

View File

@@ -496,12 +496,12 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o
## 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 1685 Ebuilds in total, 1677 of them have in total 1685 (35 different) licenses assigned.
There are 1687 Ebuilds in total, 1679 of them have in total 1687 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1030|
|Apache-2.0|303|
|Apache-2.0|305|
|GPL-3|103|
|BSD|90|
|LGPL-3|27|

View File

@@ -1,3 +1,5 @@
DIST aio-geojson-client-0.15.tar.gz 16380 BLAKE2B cc6bd35fa2c9132fbc145e2a81fd7d73dedccacb4f33507c0c0145f8deb8891ff9f26a5cef284c49e056ba59c2cd03e0f29d6210e19d2b9bc0ef8585e416476c SHA512 564fc8f4835bce70905fdd5e23d3f58642c07b03dd436bee96896af0438028ed8e72b20f337a04ee61c060a8f4219d433d76718423ba25b6f61ec1d8152b3d6d
DIST aio-geojson-client-0.17.tar.gz 16496 BLAKE2B 5ba523f3cb4f907e4060c6fab12c1172f2bb0fb32794e6fd8ee2e916e26951e578afa45d2b45aae5f0c12ac992de323ae95e1e28bbf32a02110b919cf0f4bf27 SHA512 4959c512d5ca0c2046f95226f6ed6baebc53f84486aac9557417e02aa55b47d2e99cfda3d478cc987542f13caa2ed28364cd4717d590872b0053613b6221ab77
EBUILD aio-geojson-client-0.15.ebuild 961 BLAKE2B 0329f4247e76d1d54103079954551c2a6d6857e01b6a62e911b2adf661b53f7fed6dcfa69175a5cba516ade317a97ce82333a6c6407f4ba4b29676d264cf25ab SHA512 21faa750bc08391fcf2e59613ef05c1871ad94dda6260f598e2b15af8a7bbb76210cea1af0d0f8b848ab5f504dc327de37464776f9c64aee0aece75f5ffa3988
EBUILD aio-geojson-client-0.17.ebuild 961 BLAKE2B 0329f4247e76d1d54103079954551c2a6d6857e01b6a62e911b2adf661b53f7fed6dcfa69175a5cba516ade317a97ce82333a6c6407f4ba4b29676d264cf25ab SHA512 21faa750bc08391fcf2e59613ef05c1871ad94dda6260f598e2b15af8a7bbb76210cea1af0d0f8b848ab5f504dc327de37464776f9c64aee0aece75f5ffa3988
MISC metadata.xml 462 BLAKE2B b0369b7c6020afc4c5ecc94990c7824bbb01ecea254d4bb32764d73859701fb6a894b37c9d90aa2b8cd47500d1d74bd62e6a9c6f0f066fa9762ea933958f8fe8 SHA512 913d9d1c90e623ac009badcd44582f8b15ebeae0f5d6af835427c6420e1587e7ae3e92f0e14812278c15a1dd3f96d9940085bf520fce1a42315b7637a0fe1ac0

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="An async GeoJSON client library."
HOMEPAGE="https://github.com/exxamalte/python-aio-geojson-client https://pypi.org/project/aio-geojson-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 amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}]
>=dev-python/geojson-2.4.0[${PYTHON_USEDEP}]
>=dev-python/haversine-1.0.1[${PYTHON_USEDEP}]"
BDEPEND="${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
}