diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-05-30 11:44:06 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-05-30 11:44:06 +0100 |
commit | f516638b7fe9592837389826a6152a7e1b251c54 (patch) | |
tree | 8bfecb640b7b6403d7a3d662d923eed630033da7 /dev-python/pkginfo | |
parent | 1a61119f9f7b057830e2ce0563f913ec86f282ad (diff) |
gentoo resync : 30.05.2020
Diffstat (limited to 'dev-python/pkginfo')
-rw-r--r-- | dev-python/pkginfo/Manifest | 2 | ||||
-rw-r--r-- | dev-python/pkginfo/pkginfo-1.5.0.1.ebuild | 13 |
2 files changed, 7 insertions, 8 deletions
diff --git a/dev-python/pkginfo/Manifest b/dev-python/pkginfo/Manifest index 233e272c3c53..82320062bba4 100644 --- a/dev-python/pkginfo/Manifest +++ b/dev-python/pkginfo/Manifest @@ -1,3 +1,3 @@ DIST pkginfo-1.5.0.1.tar.gz 34496 BLAKE2B b5a60e3fe2408283afbdebf8efa709b7b1c96b82ddc76b3fbc4d58d544c2170de1434525fe2e324af9864332c6570885b05a3d8ec2c248fbff20984d2ee80a94 SHA512 319bb403970affd5a4222dfdb3d17738630d1350ea84e51ad1bebc6c8c72e0dcfd69a4eaf5e7bd156b8e605d806357922c05cc994dcafb01b7a33c617b2df447 -EBUILD pkginfo-1.5.0.1.ebuild 731 BLAKE2B 5113806dc08df6ea5468e18f417a5392a05a0c464f547ebb00e1459a736add818bf4234dfc74ba0d731455349461720b0f3c41fb2a3f3fcf063bf8e4cdb7b0b3 SHA512 93a4ed8c1662193e60bd1163363875390a7f865200cf40ccaac2125de4e3a7758760a0632ef0f7dd6070c4acb07be99fae6f1b32388e17831f32d6f9fd366fde +EBUILD pkginfo-1.5.0.1.ebuild 712 BLAKE2B e3e285d532060820111777a6c1816ad91f6981a2f9f50fd9ed0df4677d97fc99b396db501e5277ecd1e7a0fb70c241ad331ccb80041669659b8e42cf8c919074 SHA512 5b38d641eb7f951262be38175dcc35d1e1a9b3b45711e42e02f9f3b3493d31f6f539337a0d3cd667cd13cb6de176f3255b92177e87ea4af6269cc1e76e40b244 MISC metadata.xml 345 BLAKE2B bae902e9e5c7357ce7df1d26ddb2c4c81ca0dbcf4d17eeef7127a49cc4a17794ba29483049ebd5518df71e18258c4ad375a90e0bfb2052fa95a9143431095662 SHA512 f970952fd577c2baadebf824932c4e825d962a497d7f41870a6d51301a5776d22809b923efcdf2ecb38322e4c53e11dbeb5083660ff0f93a3c301a88bb807151 diff --git a/dev-python/pkginfo/pkginfo-1.5.0.1.ebuild b/dev-python/pkginfo/pkginfo-1.5.0.1.ebuild index 5b9a75a65d2d..ef84c07b7197 100644 --- a/dev-python/pkginfo/pkginfo-1.5.0.1.ebuild +++ b/dev-python/pkginfo/pkginfo-1.5.0.1.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 ) inherit distutils-r1 @@ -20,10 +20,9 @@ IUSE="doc" distutils_enable_tests nose distutils_enable_sphinx docs -python_test() { - distutils_install_for_testing - - pushd "${TEST_DIR}/lib" >/dev/null || die - nosetests -v || die "Tests fail with ${EPYTHON}" - popd >/dev/null || die +src_prepare() { + # TODO + sed -i -e 's:test_ctor_w_package_no_PKG_INFO:_&:' \ + pkginfo/tests/test_installed.py || die + distutils-r1_src_prepare } |