dev-python/withings-api: rework, remove olds
This commit is contained in:
parent
7fcde2bc12
commit
9bfcdb1444
@ -1,5 +1,3 @@
|
||||
DIST withings-api-2.3.2.tar.gz 14228 BLAKE2B ef72bf97db03852de2046d70196b9338139c7645a94b6909fb646e747f43870516a89ef50b82d7401da3103eea8980433c4e3fdcf75b4506bbd652fe9e47f4e7 SHA512 16b5e487f46a62766f92ace3fb1f147d469909fd1b3a6109fd526b68e7a29f1da5aefa5891020fc2f629e50a5675ed99df49052597103f2f7789d14e2a57c01f
|
||||
DIST withings-api-2.4.0.tar.gz 14848 BLAKE2B 4564c02c3d389da2747e194c8f71c234018a8e5a2e36047d363182c37477b18d690a974b4f856694a4a934331373b93c505983176ea7c5737a0afebb6baa8008 SHA512 ad25b85cca256eb6db5bbc29b3e4248b03040a4f69f363ceedcb03c73fb3769d66ba9fbec0f112032c8f47e027dbd8894cbcfbdf432765f99135d8daf57abe1a
|
||||
EBUILD withings-api-2.3.2.ebuild 1039 BLAKE2B 86a0d9f3e0318a54956fb7872031fe0d6de3e62a410d81495f93cf6fc8bd977a20c769e809fa9f94b55cd1417834bd968664e0ff8b52b88529651ad718288b1d SHA512 456444b9f8f6c84d0dbbb92ea441e860c9951fb77f6cdaed49c7c8e61f79c67a87d2f9b9b6ba9f6804e87012cf321815a78b32ff21977c2a8d0af6572df96b62
|
||||
EBUILD withings-api-2.4.0.ebuild 1114 BLAKE2B 3852a249b109c846de64e7334d0c5af596748a6f8268de0181f0d21a81ba9eea947de58d074bbe8df2b47cfdb43a0d3a79e68230c259cc7904ba3f96ba8ce863 SHA512 56bf743367a9ca59af4a336723269434b22ceebf3d6c1a748fecd840d85eb5a803d3ebe2de5b467067dd4227d7df343bdf8275e9bc20b51db60a4a9f7c80e041
|
||||
EBUILD withings-api-2.4.0.ebuild 1121 BLAKE2B ec3e15ab9fdd123aa45da2976d6ea6a8a7d01e8df9ab89a8f1df42ebf6fe495db5907487db239d57c09501b3040dc7a37bcbee339c973624d0d5605057043427 SHA512 2d7e10b9a845ac3ac5198f871bae0346c5c4a41ad9be61658c523b1df5ec506a02cf13aa1fe17a6cad7647e54fca2ab7b34a55483928f59c5c5dadc096446fb8
|
||||
MISC metadata.xml 474 BLAKE2B 3b353fd03cef949c4dfd8e7a4dbd533a7dd61d0943bd2a6586b666c5b319de1b6c38941dd97e30f0717e5cb85e218e8894d5113297a75ac2da8492830967a335 SHA512 7e781231f05656924e31330707a7141e55f16e058e1efff0a6fa9613e5796fa1ad13d6d83adff531180270ab84ef1bd9dff05bacbbec410f8629f7befc9b6daf
|
||||
|
||||
@ -1,41 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_P=${PN/-/_}-${PV}
|
||||
|
||||
DESCRIPTION="Library for the Withings API"
|
||||
HOMEPAGE="https://github.com/vangorra/python_withings_api https://pypi.org/project/withings-api/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/arrow-1.0.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-oauth-0.4.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-oauthlib-1.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/pydantic-1.7.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/typing-extensions-3.7.4.2[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
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
|
||||
}
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
PYTHON_COMPAT=( python3_{8..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
@ -15,7 +15,7 @@ S=${WORKDIR}/${MY_P}
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
@ -39,3 +39,5 @@ python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user