add vincenty-0.1.4

This commit is contained in:
Andreas Billmeier 2019-08-02 07:02:45 +02:00
parent a56c0b0754
commit 5f6a870cd2
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST vincenty-0.1.4.tar.gz 2757 BLAKE2B 2591e064c823697d8d86e49a5335458d306f506bf6d0ded2c06cfcb95d706a444066484926aac51a845513f37a3d5b67d698c5b1ad07a3134e54721f58e05270 SHA512 61c254020607c54d616ca87d3cc748d90e645b3e305aa53bbf42d84f84ee2e96544a13875d7f5283e37afa6a6636337c82fc7bda3ab35a58f609cdb02eb24459
EBUILD vincenty-0.1.4.ebuild 752 BLAKE2B 5b46caa778cb06c70570a6de94b958bab053cedb09f4468a5e190567815d72b20c1fa0be657a045301b3027c9363abda8fe417de858810b064dabad08128085e SHA512 590e1416262aadf16d0ce874278491e269f1bbb3477080616e348eb6bb72e01a535f93f9a113f1bb076ff11fa36cc47dceb1368dbb20ef6aae3604de52c64f46
MISC metadata.xml 471 BLAKE2B 025ed2b07eff9c1ec9849640b0443f2e769af0c51bbffdc3caa47cce766056e01584ad405d18dc4cb3adc65adbe1eb95cdbe438393f848471c2d1a8aad0cbf29 SHA512 1ac0cb2a827078e72144ad62b8e59536bf75f4580a9760a4d96e149394e2c1c95be92655fce726ccb9249da8bbde7b5f78d60029a16811075de8b2debbab9a96

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">vincenty</remote-id>
<maintainer status="unknown">
<email>['github.com@wayheavy.com']</email>
<name>Maurycy Pietrzak</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Calculate the geographical distance between 2 points with extreme accuracy."
HOMEPAGE="https://github.com/maurycyp/vincenty https://pypi.org/project/vincenty/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Unlicense"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="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
}