dev-python/pycarwings2: drop olds, change SRC_URI
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
c367ebb2cb
commit
b55a5ce18e
@ -1,5 +1,3 @@
|
||||
DIST pycarwings2-2.13.tar.gz 17439 BLAKE2B 4a41352b4f0983e3f5cfe42887f0be32d011630aaa83d47dac5bb59b66d49a0498be911f0bdba3df1fd7c639538fcdd2e3cfe01857b1996308d83a3ef70a9ce1 SHA512 35e6a99900f141dd0d96cd22d64d8ef4fddeaf508c3d664219ea0854bec48f240962486edf3ea906d4ab19b28ad12723537265de4c41aa714aa84b5f6a976593
|
||||
DIST pycarwings2-2.14.tar.gz 17521 BLAKE2B f7ab198c4fda9e9197787b0d6ff204ecdcaec4f25100b1c25e22ce45ea7685e6d3df7825e7b6b2928651a6b3d23fc7b62538356cccf360a6cd2acf62a0449e49 SHA512 135093f7192d8109ee18473a1473830fe8529f6605a494694ce5d5570d1226a6b470147da718f2988df0edc08710a2aa00fbcaf5b7525d3911c8db9148dba5f1
|
||||
EBUILD pycarwings2-2.13.ebuild 949 BLAKE2B 30c48bdc92fae5061dea93078d5e28cfc232f616869179ca919ff9f98a75dfe074e6818395352c12ce6aed094e124af45f56d0a8222f1a778c4d27f8eedeb371 SHA512 795e26ad08934805bb501d4cf50b044ca6cca02d3d7e13a2821e2402e0bd66e38a31ccb0c351cbb9576a1323fb4490ca87ec831f72bf3e247d4d4c52bc6c402c
|
||||
EBUILD pycarwings2-2.14.ebuild 980 BLAKE2B 7fe60b0b557bbae747545fdcb6c6a9759ec73a65237783ab0154ce6d3e9ca5cd54d37de4eeb0a452cf5f5bf18d228e7ffa7806e6d1670ffad75b69f41a251211 SHA512 bc4b0f3a3361d4d6ccf6f1b2db868713f813d68ff4861b2d560df867c05417cbd340f8ac7816fda62e1edbe977f12539eebea37f552c1de6e6fb5a9ee42ee76a
|
||||
EBUILD pycarwings2-2.14.ebuild 894 BLAKE2B f86767cc0be24ffefe74e384df006a82ff5b923b00f9484fc59be5ab5cb6601c670179ad0aac98c52f4e4f5a298c095c8328ccc3f9628943c74611eed528ecfb SHA512 f3808981b5463e2ccddb595c925a9cde5438e0a503d3c1014baaf656fdadf7ddd3941a4615df58145a84a693c7959722a667bc4ea5df8e3c286159bec7894884
|
||||
MISC metadata.xml 511 BLAKE2B b19d4cb6cb5ffe7f9cb3973bea7fbd4f44b918485e8819291cf1c465c533db7d8d05c25a0e954e2765ef4e1dc14842f7fa162241dccc49356b03167872532df9 SHA512 e9abb1a5637a034b0a2830633eda2d4536091123e59781fb173867fee4c18bb1e3bb01b2beff7f3d54e705138fe98aea2d3873e0c4203e24c55816bfb0d54c5c
|
||||
|
@ -1,38 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python library for interacting with the Nissan Leaf Carwings telematics service"
|
||||
HOMEPAGE="https://github.com/filcole/pycarwings2 https://pypi.org/project/pycarwings2/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/pycryptodome[${PYTHON_USEDEP}]
|
||||
dev-python/iso8601[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-runner[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-cov[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
@ -3,13 +3,12 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python library for interacting with the Nissan Leaf Carwings telematics service"
|
||||
HOMEPAGE="https://github.com/filcole/pycarwings2 https://pypi.org/project/pycarwings2/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
@ -24,7 +23,6 @@ RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/iso8601[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-runner[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
|
Loading…
x
Reference in New Issue
Block a user