haversine-2.3.1 fix RequiredUseDefaults

This commit is contained in:
Andreas Billmeier 2022-03-18 21:40:13 +01:00 committed by Andreas Billmeier
parent ecd4ff95fd
commit 0c2b8cbf14
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 4 additions and 37 deletions

View File

@ -496,11 +496,11 @@ 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 1789 Ebuilds in total, 1781 of them have in total 1790 (34 different) licenses assigned.
There are 1788 Ebuilds in total, 1780 of them have in total 1789 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1077|
|MIT|1076|
|Apache-2.0|330|
|BSD|107|
|GPL-3|105|

View File

@ -1,5 +1,3 @@
DIST haversine-2.1.2.tar.gz 3111 BLAKE2B ea5b511a9981cffaba31262ef97babfc39f230cd41fde250cdc5781133e637ddba850678a64b50dc33ce8f53cad3d2727cc9a9bae1286f1841b71bdac4865495 SHA512 3d01224377afc02edc1dcc14c46a6d8669a38584ad0eed5573e36cda29034a777786b3e5e45ad7881d856fcc4eaacc85a9ca3c80a2ba5a2bf273ec158a5bb33c
DIST haversine-2.3.1.tar.gz 4479 BLAKE2B 86e8ba1453e299a32b5b13d04c0047274afa4b9bb97ea4ebf405c64be674b1c251205867866df07e194cc86dd190c49f7a8cbc34786ef641be18a5712ef08bb2 SHA512 dad5b1c9af225d00220bf5bc9f081894bdb7892dfbed0f76c15e85a9dc3d87b9624343f658f00a627398e59383ca531f0f21e82b671f10bc7554a59abc831e6b
EBUILD haversine-2.1.2.ebuild 721 BLAKE2B cca4b9da9312562732f895248c6264689909dbddc1fa66442a6618a87219448adada6a8dc066ac5f4cedf37f35a30f6521aef8f596890fe6de70e2fb2c87fc58 SHA512 8cbac4d358050de07ce957af26c172d5268a76dd6996f302e14c2fe4caed52f203a686efcc63f97a9977cd9af1853d29411b3eb9a09972d405ca4a7190ba97fb
EBUILD haversine-2.3.1.ebuild 726 BLAKE2B d13beecebedd0c9c9cac545d6537981cea9e03c02be2881dd6632f9039a304a88ebc94df7f25b689d9e4401e920c87c7aebf76ba85e4c7e450d1594c1e23541e SHA512 07e72a23cc74099fb15ef3a2c10ad13521e9d530bddfe301ae2ae84cbf4bba1a47819a6c990f08805395b9b5e61644c6699ba80bc27eeae70b8d7cb79de08bca
EBUILD haversine-2.3.1.ebuild 724 BLAKE2B 75121fe208e757583942e9d9ed66d7a79be092ef5a0e735dab28bf472339e967287629b319987d3eb7fc164b24012459e211514d919938fab0e3943e28bac960 SHA512 e86c76b6f4fe931a12d6157a0b41b8c2467615affbda876dede02e09e97f8dc7a68829702ec5cda17aa57840572c38bd6c41d40070a7c04b7c84fab7c653e2c5
MISC metadata.xml 459 BLAKE2B 88fbac526bf14f25ff49c85c0a73af97d95bb0f41cbc846375a59a73462e740d784ab91df60d231e06b3786c3f40050869d56f6bbce71cefe33fa00668e3bcb6 SHA512 be901e6e992ef97b3103f4e05ca6f86582a37b68d529253dfbcee9448f4a20d260a81bc2058edf1e2d122b46cdba428662e9d32d60054c1fc4c70281582204c3

View File

@ -1,31 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
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 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=""
DEPEND="${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
}

View File

@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )