diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-11-29 12:10:12 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-11-29 12:10:12 +0100 |
commit | bd4eb25094ea83024e08451b8834a3e45e3053b1 (patch) | |
tree | a7c6937dad6ccd38b280fc847a17d22349f7f1b7 /dev-python/pdfrw | |
parent | dev-python/mkdocs-material-extensions: Remove old (diff) | |
download | gentoo-bd4eb25094ea83024e08451b8834a3e45e3053b1.tar.gz gentoo-bd4eb25094ea83024e08451b8834a3e45e3053b1.tar.bz2 gentoo-bd4eb25094ea83024e08451b8834a3e45e3053b1.zip |
dev-python/pdfrw: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pdfrw')
-rw-r--r-- | dev-python/pdfrw/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pdfrw/pdfrw-0.4_p1.ebuild | 54 |
2 files changed, 0 insertions, 55 deletions
diff --git a/dev-python/pdfrw/Manifest b/dev-python/pdfrw/Manifest index 9825bf87acf8..ab1fb3bd9836 100644 --- a/dev-python/pdfrw/Manifest +++ b/dev-python/pdfrw/Manifest @@ -1,3 +1,2 @@ DIST pdfrw-0.4-1.gh.tar.gz 143615 BLAKE2B 281dc94c762dcc776e2c9c84609b59ca32387510bcfbec39271a6073533f9ad5d416cf4250b3dcd8564973d197ce090719c5561f58b972c89d463b90723ac8e6 SHA512 f2ef6a966cb1b947425679e6c16e658b5d1dbc13d62fb2e1edc278508b03f6c6847b3c83dab8bcd7df3438e587df066bc16b653461ae402bb8688ddb05f4e886 -DIST pdfrw-0.4-1.tar.gz 143615 BLAKE2B 281dc94c762dcc776e2c9c84609b59ca32387510bcfbec39271a6073533f9ad5d416cf4250b3dcd8564973d197ce090719c5561f58b972c89d463b90723ac8e6 SHA512 f2ef6a966cb1b947425679e6c16e658b5d1dbc13d62fb2e1edc278508b03f6c6847b3c83dab8bcd7df3438e587df066bc16b653461ae402bb8688ddb05f4e886 DIST pdfrw-static_pdfs-d646009a0e3e71daf13a52ab1029e2230920ebf4.tar.gz 25243391 BLAKE2B 5c491d56c9731352907787bbe10b8b3ac362f0c7892ddcd15a1299d3b2b4bb604662f6231aa22478290992a345e769af2e2c2459a25a16c370ea05fa68101f80 SHA512 9bf1d5ddc8f55b40b50041e745579406bb0036fb7795ac40064aad7cdf592869051ba84a5ab080042e237690bb2f1811b86b2a4424535aa4c367f6e29a0c34eb diff --git a/dev-python/pdfrw/pdfrw-0.4_p1.ebuild b/dev-python/pdfrw/pdfrw-0.4_p1.ebuild deleted file mode 100644 index e4c31c904a61..000000000000 --- a/dev-python/pdfrw/pdfrw-0.4_p1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -PDFS_COMMIT=d646009a0e3e71daf13a52ab1029e2230920ebf4 -DESCRIPTION="PDF file reader/writer library" -HOMEPAGE="https://github.com/sarnold/pdfrw" - -if [[ ${PV} = 9999* ]]; then - EGIT_REPO_URI="https://github.com/sarnold/pdfrw.git" - EGIT_BRANCH="main" - inherit git-r3 -else - MY_PV="${PV/_p/-}" - MY_P="${PN}-${MY_PV}" - SRC_URI="https://github.com/sarnold/${PN}/archive/${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz - test? ( https://github.com/pmaupin/static_pdfs/archive/${PDFS_COMMIT}.tar.gz - -> pdfrw-static_pdfs-${PDFS_COMMIT}.tar.gz )" - KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ppc ppc64 ~sparc x86" - S="${WORKDIR}/${MY_P}" -fi - -LICENSE="BSD MIT" -SLOT="0" -IUSE="crypt" - -BDEPEND="dev-python/pillow[${PYTHON_USEDEP}] - crypt? ( dev-python/pycryptodome[${PYTHON_USEDEP}] ) - test? ( dev-python/reportlab[${PYTHON_USEDEP}] )" - -# unittest would be sufficient but its output is unreadable -distutils_enable_tests pytest - -src_unpack() { - default - if use test; then - mv "static_pdfs-${PDFS_COMMIT}"/* "${MY_P}"/tests/static_pdfs || die - fi -} - -src_prepare() { - # broken upstream (sensitive to reportlab version?) - #sed -e 's:test_rl1_platypus:_&:' \ - # -i tests/test_examples.py || die - eapply "${FILESDIR}/pdfrw-fix-import-collections-warning.patch" - use test && eapply "${FILESDIR}/pdfrw-static-fix-import-collections-warning.patch" - - distutils-r1_src_prepare -} |