dev-python/p1monitor: drop olds, change SRC_URI
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
DIST p1monitor-2.1.0.tar.gz 10841 BLAKE2B bab122ad1430357f9c44788ed428abc4b82de3fb07fa4083041ba2ed10d7080ac80b29b8f635735b5043bc954bdd597603de659e2c54cbb6a482ac6dc531bcf3 SHA512 ab27dc6ffc9bb20017ed224c17e02e017d74acc69d689356a7c663ba20d32a7fd25b6496aae42fc2596d0bee41d041953912ff8d28e4d8d5c32ea04b7a121d27
|
||||
DIST p1monitor-2.1.1.tar.gz 11008 BLAKE2B 247766a440e8535c474bb25fb6dc5a537ac972903c8ff174a00fc01244ce2ba675536ed9f742970c885f3355403dcc518b6b236bc8817bec23a4f002f33dec96 SHA512 0596c50cdcf57c6b9e3f907ec54b01bcc3cd9e1ccc2d1c76ae4f2d6129038386525463026ecf679398d2c3c154d143c1e309bb1445bc823fd04175966a54afff
|
||||
EBUILD p1monitor-2.1.0.ebuild 925 BLAKE2B f5ea28b7fe8b9c0acfaebbf0a6b2fb794e4149d368aab9ff84dc15a11657386389501bbdd2f67dee90fc53ff2c715d5bffcd866edac4d3b6a94b56099881bb30 SHA512 3e620e9defc90a83330d40e05189da6183c59c802735774e6a2efd045acd16d93787cce27bd7964c7be9335f424f73906de812115979c2a8096fb9164f36d8cd
|
||||
EBUILD p1monitor-2.1.1.ebuild 921 BLAKE2B a8f9a564e5268464fd05dfc891313e65d93f61abe3ba409001af45a07b7144cd711944ea5ca348cb90192ee4bc68f627b406b6bbb9304c68a07f6aa7fa3de288 SHA512 9b1f19a389544ccfc9016d8458ff418135c290b692ed02b9db1d91923611d7db49150278714d6acb25007b34451a7a1a4ede9300f7163d0d8541bdec9eb4c0a7
|
||||
EBUILD p1monitor-2.1.1.ebuild 834 BLAKE2B 8c6c93d2a92140e28c31fd7d45467c1d25095df9e1908db2d15a099de0ce763c27f0d14cb627c1e2f72ca8293d176c00e85d1df1102c3d8dbe264e9999fd5bda SHA512 854db2d614b176462ba0ad2c8784d4f30d66191fb956b0ba5466ca2a7cef64b2a4efebb73f4525720fa1cfe7ed2b73044c02d4ccf39a8c81e7dd00c982059b4f
|
||||
MISC metadata.xml 533 BLAKE2B a70327eca67e0aea4f83814a499340727b33ae11ced29853a44ca12716c676c73553172723937d838c290f4d21bd6cd65c48f7dead368de2bad8ec7f03b27d57 SHA512 a2f98b812d2ffe74c0fc05a9e4947ef62924fff2d593c3ae3a8e30920350eb1b0d803c4c2d7de2c21119c8b2fc980ec9526133324d1838802b3992a599d32c91
|
||||
|
||||
@@ -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} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Asynchronous Python client for the P1 Monitor"
|
||||
HOMEPAGE="https://github.com/klaasnicolaas/python-p1monitor https://pypi.org/project/p1monitor/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/aresponses[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
||||
dev-python/pytest-cov[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
@@ -1,16 +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} )
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=poetry
|
||||
|
||||
inherit distutils-r1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Asynchronous Python client for the P1 Monitor"
|
||||
HOMEPAGE="https://github.com/klaasnicolaas/python-p1monitor https://pypi.org/project/p1monitor/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
@@ -23,7 +21,6 @@ DOCS="README.md"
|
||||
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/aresponses[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
|
||||
Reference in New Issue
Block a user