diff --git a/dev-python/locationsharinglib/Manifest b/dev-python/locationsharinglib/Manifest index 7c4113732..66d4b6c24 100644 --- a/dev-python/locationsharinglib/Manifest +++ b/dev-python/locationsharinglib/Manifest @@ -1,5 +1,7 @@ DIST locationsharinglib-3.0.11.tar.gz 27876 BLAKE2B d39f79393fba635be43658fe68608680766260100b3f53d6bd3b94609def014338c488ac3f2d7c6a899943619452b852cc8cb7d42fc23a862891d9ed9abfe753 SHA512 026b901c7c47c2818f30c0a817cdcd21465d2d7cb67c12610d660ff13ef5a98de9ac34593552117cd25e45768ba70391b8716b28823e3faf502cd5a5e9d9a545 DIST locationsharinglib-4.0.2.tar.gz 41947 BLAKE2B 4c4959d1b01aa9798fd7e5a0a61dc22c20d316c8a21008e43342a1483cee804d76df77c72deee3f9cee4b2ef2ecd7810fc2a36e5af69b1f421a36d3e741e69cf SHA512 37b1ace61064d3e60a9cfde5a98913a4a30b13bb7e615b86575c6d579c1eb34e7d808b18678abf1411ff1ab7544c137f92e865a52e8b66efd3bbc9e78c636f8c +DIST locationsharinglib-4.1.0.tar.gz 50404 BLAKE2B 5f28794de501a0344c6ab0eba9727486592c465c309eef68de0fc326ecddb7312c83c114e68dcfdc00f17f83b8a30d901a28dfbf3309f2ba2f366cf1ceb3f067 SHA512 029a8c3acf1ae83b958398663ca16a62e30ff7841e673e72cc9ec580b49e9a273e43eff4cc038901e652d50e45d5d9bd85b54f5dd6848a94c86b3c44a867ead7 EBUILD locationsharinglib-3.0.11.ebuild 842 BLAKE2B 3bc229337f1932b03d69f841bf04062e86816f4ca134505abd86f6feacc499a477390330fc06ccd9f841a994c5ec6c29c3ca2db46e95d8aa31dd804c2c214b52 SHA512 5d1802306ce3049b6bf867deaa2a535f4ca33409545dd41353eeb73e97b91fc7a351f2c723c47e9687719f4466e238e7e11c8bea8b6879d3a98e4053d1ce00de EBUILD locationsharinglib-4.0.2.ebuild 842 BLAKE2B 3bc229337f1932b03d69f841bf04062e86816f4ca134505abd86f6feacc499a477390330fc06ccd9f841a994c5ec6c29c3ca2db46e95d8aa31dd804c2c214b52 SHA512 5d1802306ce3049b6bf867deaa2a535f4ca33409545dd41353eeb73e97b91fc7a351f2c723c47e9687719f4466e238e7e11c8bea8b6879d3a98e4053d1ce00de +EBUILD locationsharinglib-4.1.0.ebuild 842 BLAKE2B 3bc229337f1932b03d69f841bf04062e86816f4ca134505abd86f6feacc499a477390330fc06ccd9f841a994c5ec6c29c3ca2db46e95d8aa31dd804c2c214b52 SHA512 5d1802306ce3049b6bf867deaa2a535f4ca33409545dd41353eeb73e97b91fc7a351f2c723c47e9687719f4466e238e7e11c8bea8b6879d3a98e4053d1ce00de MISC metadata.xml 474 BLAKE2B aa70ae649da4aef20c30ab63f2354f2097400a04c04f4d557dbbedb582053995e8708e05d32803d2d784d8364318808274a17e1f4ed29a3c33767016bb2c302a SHA512 662a0a6bac483b177430dda47a7580b264d96b4067ff42faaa267f68a76bdc3cb41bfa35244f62a019b2d24a6526c5130713daa97011969acc5a1f0686ea92bf diff --git a/dev-python/locationsharinglib/locationsharinglib-4.1.0.ebuild b/dev-python/locationsharinglib/locationsharinglib-4.1.0.ebuild new file mode 100644 index 000000000..983f63e93 --- /dev/null +++ b/dev-python/locationsharinglib/locationsharinglib-4.1.0.ebuild @@ -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="A library to retrieve coordinates from an google account that has been shared locations of other accounts." +HOMEPAGE="https://github.com/costastf/locationsharinglib https://pypi.org/project/locationsharinglib/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="~dev-pathon/requests-2.21.0[${PYTHON_USEDEP}]" +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 +}