dev-python/pyudev: update SRC_URI, drop olds
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
DIST pyudev-0.22.0.tar.gz 85077 BLAKE2B 66c78aa4d3bea5ceae3660a93e5bd1733629bb5228d67d8e647abb8c237a2786c1061b07e034be5467f5bcab58d95ba30f91d74bdc54cd8253dff69be3ad4a80 SHA512 a09ed479a54a1772a6af68cb975fef792068c2de3655e20223905bc3f574fd32bd3dbe6b97062eee3ab5f08a8b041ad3ea86dfb68c839ea44e29d65ec1686670
|
||||
DIST pyudev-0.23.2.tar.gz 87199 BLAKE2B 0ce4300296f4fcc3a56ba4100d3ebe7734330b3096fde59475fe9880758a3279324c4c3df883b22d1ec9f4e0cfa83fc7c25fbe54ed03a5e019567595deb21211 SHA512 40b947d363dca73789f5ab77cbda4b48349e28fe04f2f5cafb93d20799d842ebeb2b7d78d1f16dcbcaac5c20aff1b931b372c75852706e731337e6e1d30b8538
|
||||
EBUILD pyudev-0.22.0-r1.ebuild 1379 BLAKE2B c537a0286ce0f4adea6fbd55a947af5b6ba2bd03001bed213f4a2dbb6bd04ab52aba9348b4a8f7866f3f69c16a0a6b59d2340194115296571479de7247f7d599 SHA512 d13ddf79bb428b1686910466014091b37c4d3d28942f6521c0180af06a398d51b0aa29342ed07cb0aceb270f5dc5273010237f58f2d137ca87bb019b5e8b9159
|
||||
EBUILD pyudev-0.23.2.ebuild 1396 BLAKE2B ab39f19203911d06d0afa8f939878b70b9f31372d9a2cad0949df14cb244977b5fb7e305522ae92a083a6b604ad764ef93592f07de008eba4f693c8a86355e3d SHA512 0c8b602b27bc4807076fa4aa0e9ac95683ef1152fc2694b10f1ac10f6c0e2e8a4f8f8a115f6e473e29fd966ac36d231173caa82ceb59610ad18f94a5530a9e15
|
||||
MISC metadata.xml 503 BLAKE2B 94a63cc41dc755e87f4e94c4ac9211113aec2c90d4d1b6e2a201f9e4df3e3305480281870275cc4321508c87bdedad3b118df51e6a360007e11372c7298145fa SHA512 9a2050257e212ccdf432bb9a2917623c47df282cefb59b7ecef9688b0bb6904c13f9c589e36ca5f3fa29c61c2ccd2671106366d5a09082490da77a9bcf09c9e7
|
||||
EBUILD pyudev-0.23.2.ebuild 1350 BLAKE2B a089a71aa605989554de8cf64c480c8e048321090e6012085dcf77bc5a733855544a9d4174914c387a759a4478cf80753b325efcc4e7c6ef757be3279fc967d6 SHA512 eac6b4be39876d7d8169519de1e67ce6f6c04dd942e7058ee1f08ccd4b0b749c7679fca3adc6c8fad2b190955b41ee4e8e5b2721daf18239f8811c1a2fa0ed38
|
||||
MISC metadata.xml 558 BLAKE2B 19b95d86e8e16a474a4e7bd57ae6ca26c8d102cf21df5e50f4503d438764305b3646fffa87fd656ac561625ab5438bbd9a8171ce7a3623fe152cc9b2d3293987 SHA512 a7bbce4618873ca6dad96ccdb65f634154b9adb37b224817f46d09e560772df45e72facda70d4a806ca0e8910826cca731fa511149da4d880396b366f148b9f6
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="pypi">pyudev</remote-id>
|
||||
<remote-id type="github">pyudev/pyudev</remote-id>
|
||||
<doc>https://pythonhosted.org/pyudev/</doc>
|
||||
<maintainer status="unknown">
|
||||
<email>lunaryorn@gmail.com</email>
|
||||
|
||||
@@ -1,53 +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 binding to libudev"
|
||||
HOMEPAGE="https://pyudev.readthedocs.io/en/latest/ https://github.com/pyudev/pyudev"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="qt5"
|
||||
|
||||
# Known to fail on test system that aren't exactly the same devices as on CI
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
virtual/udev
|
||||
qt5? ( dev-python/PyQt5[${PYTHON_USEDEP}] )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/docutils[${PYTHON_USEDEP}]
|
||||
dev-python/hypothesis[${PYTHON_USEDEP}]
|
||||
dev-python/mock[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
DOCS=( CHANGES.rst README.rst )
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
python_prepare_all() {
|
||||
if use test; then
|
||||
ewarn "If your PORTAGE_TMPDIR is longer in length then '/var/tmp/',"
|
||||
ewarn "change it to /var/tmp to ensure tests will pass."
|
||||
fi
|
||||
|
||||
# tests are known to pass then fail on alternate runs
|
||||
# tests: fix run_path
|
||||
sed -i -e "s|== \('/run/udev'\)|in (\1,'/dev/.udev')|g" \
|
||||
tests/test_core.py || die
|
||||
|
||||
# disable use hypothesis timeouts (too short)
|
||||
sed -e '/@settings/s/(/(deadline=None,/' -i tests{,/_device_tests}/*.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
@@ -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
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
inherit distutils-r1 optfeature
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
inherit distutils-r1 optfeature pypi
|
||||
|
||||
DESCRIPTION="Python binding to libudev"
|
||||
HOMEPAGE="https://pyudev.readthedocs.io/en/latest/ https://github.com/pyudev/pyudev"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
|
||||
Reference in New Issue
Block a user