dev-python/haversine: add 2.8.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-28 20:20:50 +01:00 committed by Andreas Billmeier
parent 6eaf3aaafa
commit 38328a2a07
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 3 deletions

View File

@ -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 1751 Ebuilds in total, 1740 of them have in total 1744 (34 different) licenses assigned.
There are 1754 Ebuilds in total, 1743 of them have in total 1747 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1022|
|Apache-2.0|377|
|MIT|1023|
|Apache-2.0|379|
|GPL-3|107|
|BSD|92|
|LGPL-3|23|

View File

@ -1,3 +1,5 @@
DIST haversine-2.3.1.tar.gz 4479 BLAKE2B 86e8ba1453e299a32b5b13d04c0047274afa4b9bb97ea4ebf405c64be674b1c251205867866df07e194cc86dd190c49f7a8cbc34786ef641be18a5712ef08bb2 SHA512 dad5b1c9af225d00220bf5bc9f081894bdb7892dfbed0f76c15e85a9dc3d87b9624343f658f00a627398e59383ca531f0f21e82b671f10bc7554a59abc831e6b
DIST haversine-2.8.0.tar.gz 7202 BLAKE2B 95c2a66e0d75e1d873c88a3bcceff1ad3213acfcfcbd0aca0ede94c4fe6a878f407aed15bb34c705a4394857e11af7d4b125103d069ba5b5312eb164218448fa SHA512 ff1adf964fc99767207453ddb4273ef98c9aaa5022a384c3ec87a3e694e3c59ac5e087688837696381f139cb26c9108377f8463738f316d9b798ae4b15ec2d0d
EBUILD haversine-2.3.1.ebuild 655 BLAKE2B 579f285e4881487efc666ffda9446253fe76506c7ed4c347db34cb9ca1a417985b61a2eb241f4f4f89d6c2168bab23657e1122a9e54e20b56265c61beb3e8aa6 SHA512 a4ba66b359c5cafe198a1fe56a54c80bb4580a8a8e0a5b87d876385fd98adfd1e5cea2ca56f64faef91e0770c65e5bf76f08c79ee10fbd94825f50a5dd0b70d1
EBUILD haversine-2.8.0.ebuild 645 BLAKE2B 243ef365f56fe5bc108da910a7393a8f290aacd4930710221e0480c8b0e0959a631d56dda3461e1590103cb55b52408d2b6eb80dea7419c888413b1bcafd0324 SHA512 661d21d69cba4af17376df91665e910b9f59ad80c31f24b72268fd0a7b39b6aeb6265760d373eece2373c1c163cefe1cb89dd1c5214323510692fede589416eb
MISC metadata.xml 517 BLAKE2B eddcb7e275f13d6a5e1abcc78f4b20becf2ea1043a5d4693655231c8fd460803889bd1b40260284c7da3af58d8d98cb2603443342b0fa281fb87cca6f1b8778d SHA512 072499ab2ca2f8d6c32e538a2182df3e73f1322d7ee8d0d5ffdbe76af45aacdb37b11238dd648c016928dc46686139a840544e3315c16d5b158d42fd79dcc0ca

View File

@ -0,0 +1,31 @@
# 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="Calculate the distance between 2 points on Earth."
HOMEPAGE="https://github.com/mapado/haversine https://pypi.org/project/haversine/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest