diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-11-27 19:17:39 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-11-27 19:17:39 +0000 |
commit | 3dcb63f53c77ffe3c5b1ff3776c8254c593d1d55 (patch) | |
tree | beb2f48ee9d6632607931765f11741706a3d4827 /media-gfx/svg2rlg | |
parent | b44896ea03d59328305f2dc8fb8987b21983cfb2 (diff) |
gentoo auto-resync : 27:11:2022 - 19:17:39
Diffstat (limited to 'media-gfx/svg2rlg')
-rw-r--r-- | media-gfx/svg2rlg/Manifest | 2 | ||||
-rw-r--r-- | media-gfx/svg2rlg/svg2rlg-0.4.0-r1.ebuild (renamed from media-gfx/svg2rlg/svg2rlg-0.4.0.ebuild) | 19 |
2 files changed, 14 insertions, 7 deletions
diff --git a/media-gfx/svg2rlg/Manifest b/media-gfx/svg2rlg/Manifest index 0e45b181932a..8d1c357231d1 100644 --- a/media-gfx/svg2rlg/Manifest +++ b/media-gfx/svg2rlg/Manifest @@ -1,3 +1,3 @@ DIST svg2rlg-0.4.0.tar.gz 504861 BLAKE2B bfd147d824d5a49f8621e705f6bdeefdaa571918db94afea8e839d048d2089a8c8ebf8e2763caa9866f55a7142e1bb3522b01f53eaf5b8343164a08ee0983ef3 SHA512 e3813a22784c2199a1df69574c64093347a153fa2b7a40e2f38f52e5d46d7ca8d6e8e3bbe54ab59381f6c7246352c016ff3e19b1278c6f2c8dcfbe8bd7017b12 -EBUILD svg2rlg-0.4.0.ebuild 757 BLAKE2B 992e5ed74a3eb2acaa44e453f8749f94059db700175150465b2d937b14ce11fb5d7574a2e0d56b3efea9b67982aefeaac84b03b1093d5861aff938a9d4cb50e3 SHA512 09327a8025fa0eb650ded78d95b417e6cfa9e229dfa7a35673e8b35b0f84c30304b3ef80a019f3f1f17071766b25daeff764a0db1a02d4fe3c77cf094fe94830 +EBUILD svg2rlg-0.4.0-r1.ebuild 757 BLAKE2B 0ffc0e785fac1ca5f1b13d9235af4c56015237ac8d1aac87f19d0332bcca4ee308d20b9aa1bfe2c7e982ff387649961bddf8b48c5dbae8c85f2eea8fc8e01960 SHA512 fa592f54afd32caf312dac35fb05d79460ac39f6d083ceb2ac210c049679b4c32de596474b3f3f91e158e1a9c30dbb2c32ee106163100d67f3140ca2ca7220e1 MISC metadata.xml 248 BLAKE2B b8c3f3218b1a5b5a815a2a09751730237a898cdfe3b4efddbbe6cf0289c4784c1317447a7d511af25cd83e9b24cf0a1d2ead158ffd3917f2e83d83ff9868743b SHA512 403566e808f63d98634f04fa0953a6e1ec6d679a2d68cc88d38c8b150388bc93960ce9ef3134d16d72602a531ffa4dde18c8bb09c1f1d82658e381e514c859af diff --git a/media-gfx/svg2rlg/svg2rlg-0.4.0.ebuild b/media-gfx/svg2rlg/svg2rlg-0.4.0-r1.ebuild index 0c86b5cb4198..696d7e71f64a 100644 --- a/media-gfx/svg2rlg/svg2rlg-0.4.0.ebuild +++ b/media-gfx/svg2rlg/svg2rlg-0.4.0-r1.ebuild @@ -1,13 +1,18 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) -PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="Converts SVG files to PDFs or reportlab graphics" -HOMEPAGE="https://github.com/sarnold/svg2rlg https://pypi.org/project/svg2rlg/" +HOMEPAGE=" + https://github.com/sarnold/svg2rlg/ + https://pypi.org/project/svg2rlg/ +" if [[ ${PV} = 9999* ]]; then EGIT_REPO_URI="https://github.com/sarnold/svg2rlg.git" @@ -21,10 +26,12 @@ fi LICENSE="BSD" SLOT="0" -RDEPEND="dev-python/reportlab[${PYTHON_USEDEP}]" +RDEPEND=" + dev-python/reportlab[${PYTHON_USEDEP}] +" -distutils_enable_tests nose +distutils_enable_tests pytest python_test() { - nosetests -sx test_svg2rlg.py || die "Test failed with ${EPYTHON}" + epytest test_svg2rlg.py } |