diff options
Diffstat (limited to 'dev-python/pycdio')
-rw-r--r-- | dev-python/pycdio/Manifest | 2 | ||||
-rw-r--r-- | dev-python/pycdio/pycdio-2.1.1-r1.ebuild | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/dev-python/pycdio/Manifest b/dev-python/pycdio/Manifest index 7a93a8f66897..abc271a7102b 100644 --- a/dev-python/pycdio/Manifest +++ b/dev-python/pycdio/Manifest @@ -1,3 +1,3 @@ DIST pycdio-2.1.1.tar.gz 246562 BLAKE2B 7dbbf384f9d70aade922172c6dd070229c1ffc65a76a491c45f91ec176bced9af0dc0e08f50f8ad78828273de14166eae886b402f282a10bdad3f8302276ef01 SHA512 4c756b1c2f39332add86e01af129ccb608178306be42c9719c163b6bad0ba4de3916ac477c6866450890e094b14a2689a24e7d19bcf13846330555c2bb1feaa7 -EBUILD pycdio-2.1.1-r1.ebuild 1020 BLAKE2B 4b672704a5def4923b24db847f048d592079d77fd065f62e33e81b16eed8d8fd4d8cf32a289f2d354d888edc911468b2d2a21aaecdb2e98d085ed6697cc194be SHA512 2882f2d3b27cfa9c1f2446472ef48d9c521b7eabc4c8a54eb0e50cb5a8effc6b378890681221d859a7789e55129e1c120e49d9c38e78329ccabf12756d7e483b +EBUILD pycdio-2.1.1-r1.ebuild 1160 BLAKE2B 58b6e5644e3c132cac5c0ee18f6784b8b5f65b199b5456217a1e29600add6787d3b69a2e26527f53fea92594317996b53bdca1774e446d10ee4177f40aacaa84 SHA512 d9f30af6842db86932781548303ce55c9b6768dbaa127a5cabaa666b1a722064e59c7fb26a8580c07a21eb6f2c5f422025e9ed74c65335832100a391c2255e2a MISC metadata.xml 653 BLAKE2B 8cb2e5d7b92c99876fba8c0227e12c40af546d4a10fe108b04f47d4e718f08629ddf06af30458952e251b16310d01e1470966b14af96de39441a1879771b85a4 SHA512 30186cf5dcd94811a192207a368d5caf6c34e0c2de87f9de45d843c9c2327d9caae1f7d1ffa17a6debf9b28ef4d9f3bbb4e136c4894cb344aea59be4f8e4e406 diff --git a/dev-python/pycdio/pycdio-2.1.1-r1.ebuild b/dev-python/pycdio/pycdio-2.1.1-r1.ebuild index 3555b2842eb3..48f92c3847e4 100644 --- a/dev-python/pycdio/pycdio-2.1.1-r1.ebuild +++ b/dev-python/pycdio/pycdio-2.1.1-r1.ebuild @@ -5,13 +5,14 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 pypi DESCRIPTION="Python OO interface to libcdio (CD Input and Control library)" HOMEPAGE=" https://savannah.gnu.org/projects/libcdio/ + https://github.com/rocky/pycdio/ https://pypi.org/project/pycdio/ " @@ -38,6 +39,8 @@ python_prepare_all() { -e "s:^sys.path.insert.*::" \ -e "s:\.\./data:./data:g" \ example/*.py || die + # https://github.com/rocky/pycdio/pull/5 + sed -i -e 's:assertEquals:assertEqual:' test/test-*.py || die distutils-r1_python_prepare_all } |