Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/reportlab/
Date: Wed, 30 Nov 2022 03:09:25
Message-Id: 1669777755.a997c9529b7a4cd5cea29f6b5fa8229292b47cea.mgorny@gentoo
1 commit: a997c9529b7a4cd5cea29f6b5fa8229292b47cea
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 03:06:10 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 03:09:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a997c952
7
8 dev-python/reportlab: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/reportlab/Manifest | 1 -
13 dev-python/reportlab/reportlab-3.6.11-r1.ebuild | 63 -------------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/dev-python/reportlab/Manifest b/dev-python/reportlab/Manifest
17 index 686235cc33ea..2b7b4e626192 100644
18 --- a/dev-python/reportlab/Manifest
19 +++ b/dev-python/reportlab/Manifest
20 @@ -1,3 +1,2 @@
21 DIST pfbfer-20070710.zip 677333 BLAKE2B 100214476a361a5e5d1f3da0999591345f6e3a3f8c6bc3f6a3e9eca734190c6259758a43302c6e41254d33491fe535eb7d5dd07aa9727c912424bebc31fc18df SHA512 6fd4a5d955464b10d13a7b748703450c1fe120d5ed09e8cfa1b4dfa9c183c59fe001df29433af551796b0df62544b7ddc364f9bb1bdcc2cd300434340ffcc4f2
22 -DIST reportlab-3.6.11.tar.gz 4519404 BLAKE2B a099a4adcaf7186cbb558ba708abf47019cff33c6a5335b27bb1eb1377c3276ae9ecdf33e66f614880de2f72e195333f3a7839ce776b8946431e2d23872fb13b SHA512 2ef81850f4e30e78ef9e923d3aea7efac6c98dce83f90c0edd47384febd68eb6ac81e05c7038e7d67458bdae16d1b19b75e9aeb8da6a5283e9173e27e4369251
23 DIST reportlab-3.6.12.tar.gz 4519536 BLAKE2B 106e0ede2b3c039152ae5a39e0aa5b3bf0239789ba08630f751260b75305973bff13730e3f7419340514a4f0174223dddf522cd9408b8dd04fbe39b84979b152 SHA512 99e6ab1cf27cc9e661b3bfd8c71290d94189db6de5e71b2429cccd48bfee5659d5fb46dfc5709e6616877b48bc17241c74282e0d2ecddda2ead16df4c1b6818f
24
25 diff --git a/dev-python/reportlab/reportlab-3.6.11-r1.ebuild b/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
26 deleted file mode 100644
27 index 3e1d8c5d7ec3..000000000000
28 --- a/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
29 +++ /dev/null
30 @@ -1,63 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -DISTUTILS_USE_PEP517=setuptools
37 -PYTHON_COMPAT=( python3_{8..11} )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Tools for generating printable PDF documents from any data source"
42 -HOMEPAGE="
43 - https://www.reportlab.com/
44 - https://pypi.org/project/reportlab/
45 -"
46 -SRC_URI="
47 - mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz
48 - https://www.reportlab.com/ftp/fonts/pfbfer-20070710.zip
49 -"
50 -
51 -LICENSE="BSD"
52 -SLOT="0"
53 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
54 -
55 -DEPEND="
56 - media-libs/freetype
57 - media-libs/libart_lgpl
58 - sys-libs/zlib:=
59 -"
60 -RDEPEND="
61 - ${DEPEND}
62 - dev-python/pillow[tiff,truetype,jpeg(+),${PYTHON_USEDEP}]
63 -"
64 -BDEPEND="
65 - app-arch/unzip
66 -"
67 -
68 -PATCHES=(
69 - "${FILESDIR}"/${PN}-3.6.9-paths.patch
70 - "${FILESDIR}"/${PN}-3.6.11-correct-srclen-type-in-gstate__aapixbuf.patch
71 -)
72 -
73 -distutils_enable_sphinx docs/source
74 -
75 -src_unpack() {
76 - unpack ${P}.tar.gz
77 - cd ${P}/src/reportlab/fonts || die
78 - unpack pfbfer-20070710.zip
79 -}
80 -
81 -src_configure() {
82 - cat > local-setup.cfg <<-EOF || die
83 - [OPTIONS]
84 - no-download-t1-files = 1
85 - use-system-libart = 1
86 - EOF
87 -}
88 -
89 -python_test() {
90 - pushd tests >/dev/null || die
91 - "${EPYTHON}" runAll.py -v || die "Testing failed with ${EPYTHON}"
92 - popd >/dev/null || die
93 -}