dev-python/locationsharinglib: update/fix 4.1.5, add 5.0.1
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
DIST locationsharinglib-4.1.5.tar.gz 54594 BLAKE2B d42b5cfea9b561c91c0f2f00add393219ce672b6303504c39434a1637e51a37ae5b4e393eac3f3ea71f17d874376686ba6a16cd73ed28ded95ab86e151047484 SHA512 3acbd33e4357748f21cd5f86f8757a91341ab14bf59d7501c08a76671b4e7c63365bc677188665389ba3b58e72663e11f7769445984e9ed7992b1c672c3cdacc
|
||||
EBUILD locationsharinglib-4.1.5.ebuild 1126 BLAKE2B 3527b657a08ea4ddb3cb0811b995ded81450ec8d19304f76111c369ab8bb43f6378a7deea0b4154c2dfaf8f0330c03befecfe460a629482463ae148b4e463c6f SHA512 bf60173480b07412e2d8545a3655bd4bdc9f984ee734aa824e734687fd8e5b639e262be828f5e510af37350c84ef55c607bd620af01308fed97865a04ac73b82
|
||||
DIST locationsharinglib-5.0.1.tar.gz 80670 BLAKE2B fa55a638693ce9b9a20efd0f5be5fa77e1e47ab5ac38bb244d146abd909b88cf01a259516f7d44094699182be5f27f08919bd184d618eb91c6b697943294e7ee SHA512 41dbcaf537782fb3946f0a90db60e53d2a2ef8bb8658640902ffe7eca2295877f842fe1b4a17690332d5a318418d61a0e4691fb280e11a876a871b5f8d16dbc7
|
||||
EBUILD locationsharinglib-4.1.5.ebuild 1143 BLAKE2B 387fb01c58195ae9285529c9ff1915cc649f3dd3258fc3f4ddba01d87839276a3910b159656605fd4e087403f5731f0170c5db52238ce4f95c3669d6c134666c SHA512 3f2cf53abbbccdd7b3addc311cb7af081e88dbad7375186f10321a6c4e3161d9d2a487859f883909bb66a6b8aa8525f748141714059e380adfffc0d16db63e50
|
||||
EBUILD locationsharinglib-5.0.1.ebuild 869 BLAKE2B 1cea999ba223b62121520da7c35b447c5b0cb094279fda9cfc6fd2fc57e9c46dbab93c0c4ff53d85232a6bfe88931af5a942fd6b0a4a1c7c7585e786c0e35312 SHA512 3f5b4da5dc5420e5a34c1fd6d3c9d1f41a7420c74e972de3983e380d6bbe58a4a60a81930d56028209053b551a55c0ca97cfdbaa306e5382e9a456f0ce9a3e6c
|
||||
MISC metadata.xml 536 BLAKE2B 1e7070d8ffd051b183f0b2dee5e748c86de5fe7b18e6eb78afbfb089818ec44a0563afb4817bec469f3e33ac251351c37c26e71aa050bf3f1a562259bbbfad7a SHA512 7e1f62a11736fe452e92e267a7b448f28dcdfbd41f9418f060ca359b3cc11b5c9b2d10122b971364c4b8fbd26fb6f5beee7020a7d9a848f5d4a7f6cb5af0df6d
|
||||
|
||||
@@ -1,15 +1,14 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
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"
|
||||
@@ -19,12 +18,11 @@ RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
RDEPEND="dev-python/coloredlogs
|
||||
dev-python/requests
|
||||
dev-python/cachetools
|
||||
dev-python/pytz"
|
||||
RDEPEND="dev-python/coloredlogs[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/cachetools[${PYTHON_USEDEP}]
|
||||
dev-python/pytz[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2023 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="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/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
RDEPEND=">=dev-python/coloredlogs-15.0.1[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
>=dev-python/cachetools-5.3.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/pytz-2023.3[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user