dev-python/haversine: add 2.8.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-02-18 10:19:17 +01:00
parent d84eca3e92
commit 8e262d5164
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 26 additions and 5 deletions

View File

@ -617,12 +617,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 1785 Ebuilds in total, 1774 of them have in total 1793 (42 different) licenses assigned.
There are 1788 Ebuilds in total, 1777 of them have in total 1796 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1015|
|Apache-2.0|397|
|MIT|1016|
|Apache-2.0|399|
|GPL-3|118|
|BSD|101|
|LGPL-3|24|

View File

@ -1,3 +1,5 @@
DIST haversine-2.8.0.tar.gz 7202 BLAKE2B 95c2a66e0d75e1d873c88a3bcceff1ad3213acfcfcbd0aca0ede94c4fe6a878f407aed15bb34c705a4394857e11af7d4b125103d069ba5b5312eb164218448fa SHA512 ff1adf964fc99767207453ddb4273ef98c9aaa5022a384c3ec87a3e694e3c59ac5e087688837696381f139cb26c9108377f8463738f316d9b798ae4b15ec2d0d
EBUILD haversine-2.8.0.ebuild 599 BLAKE2B 3ed06b96ee77d2c3a7d91eadb9a82a993eea21c1995bd6c2acf8770ae1c9f1af40c51e9e5d6f8430bc614c0463ca2e0577deb2b33c6d5d7079fb36625a304e12 SHA512 855c971bc05d50d055e377ad4a9512d30b9dfdebec8dec7edb3c0e0a1a5ef58b6ea431174e7260ba7e5c29ed64e3ce09057404e7aa502872083fd6b415efb67e
DIST haversine-2.8.1.tar.gz 7010 BLAKE2B 2dad9f853d863a57bd2aa7677ebc899195316814ca9c75cc26833426987a792ca8dc54b2548da0a58f6cf092a1d5d57501edd6552f98093597c00b3bc4fb2c47 SHA512 99e1eaef9c0cdeb00f2bffdcb14ef9b32d938ca812330c8ff65bc4354d649d0d3e5d60eb0aa62c235eea127b463dfbff3cc17e4c35f3a6eb928297f6cf2da3db
EBUILD haversine-2.8.0.ebuild 599 BLAKE2B b5cab2d9a12f6fa1b17bfdbbd9c929d49cc7be564beeded0fd43a2944132f51abb26ae1b626e8f1a55b833d2483e8c3db9d4764aa4b0b3e4b591682dd8d6e4c1 SHA512 f84ed1591fd2c00516472294ca88a34a7342ca6b559a0e3f0fe73eaa58f930b9ccf039f946f04ba4831532ba08e49628e37e941a375aa814371a69d9f271868c
EBUILD haversine-2.8.1.ebuild 495 BLAKE2B 478bd0823adee23e96ecffd67ffec7075219adf342e241636a1c51cceeebe5849497660335bb06a7af319ee5adfd4b1ae4143ac9503a2863d33f3b3ab6bfc98f SHA512 b853cb6d3caf67c391d96a17de386ce40bf91daf37862ed81917964baf7ad7529fbef1203270baf68320df7c59c07f4be1292cc97177eecfbbd9a4f0d101b643
MISC metadata.xml 517 BLAKE2B eddcb7e275f13d6a5e1abcc78f4b20becf2ea1043a5d4693655231c8fd460803889bd1b40260284c7da3af58d8d98cb2603443342b0fa281fb87cca6f1b8778d SHA512 072499ab2ca2f8d6c32e538a2182df3e73f1322d7ee8d0d5ffdbe76af45aacdb37b11238dd648c016928dc46686139a840544e3315c16d5b158d42fd79dcc0ca

View File

@ -1,4 +1,4 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8

View File

@ -0,0 +1,19 @@
# 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="Calculate the distance between 2 points on Earth."
HOMEPAGE="https://github.com/mapado/haversine https://pypi.org/project/haversine/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
distutils_enable_tests pytest