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: Fri, 09 Oct 2020 08:53:24
Message-Id: 1602232993.437269326135b72bf3daf76926a60e91d3db409c.mgorny@gentoo
1 commit: 437269326135b72bf3daf76926a60e91d3db409c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 9 08:40:29 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 9 08:43:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43726932
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.5.42.ebuild | 59 ----------------------------
14 2 files changed, 60 deletions(-)
15
16 diff --git a/dev-python/reportlab/Manifest b/dev-python/reportlab/Manifest
17 index 2585b56ae43..89734b85747 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.5.42.tar.gz 2883081 BLAKE2B 22f4e7ebc233895a036eeb94c5beb9206be561a8a44895b36291a4f840603a2fec90107ac60e749f99be629202801c63ff67d5034d19b42383f2df12d457104d SHA512 f52717867190bf7812fd566d9ec3044198db809cdd0f53cc9dbfa92503a202540db659369e20bba3de07cd28eb10515d03b85700ac138c9394dc9eed1f08b8f8
23 DIST reportlab-3.5.48.tar.gz 2890211 BLAKE2B bf0cde9b9e80459caee37949dc90a777a56da5d2c8e6dde09bddbdac2f2c55031d92b3c7c6346b6f563904525020c0e4f666b5e2effdd761c81412df21ec60eb SHA512 ce31cb7e9e2226cb6d59d446f90c1df94f0f84077d298f7ba862f5c75995afa20fa077b1ee1ab9a145c9276cee0d75fe61237e001ad0e5b96dfb0027adff3db7
24
25 diff --git a/dev-python/reportlab/reportlab-3.5.42.ebuild b/dev-python/reportlab/reportlab-3.5.42.ebuild
26 deleted file mode 100644
27 index 5d22adf0bae..00000000000
28 --- a/dev-python/reportlab/reportlab-3.5.42.ebuild
29 +++ /dev/null
30 @@ -1,59 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python{3_6,3_7,3_8} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Tools for generating printable PDF documents from any data source"
41 -HOMEPAGE="
42 - https://www.reportlab.com/
43 - https://pypi.org/project/reportlab/
44 - https://bitbucket.org/rptlab/reportlab/"
45 -SRC_URI="
46 - mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz
47 - https://www.reportlab.com/ftp/fonts/pfbfer-20070710.zip"
48 -
49 -LICENSE="BSD"
50 -SLOT="0"
51 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
52 -IUSE="test"
53 -RESTRICT="!test? ( test )"
54 -
55 -DEPEND="
56 - media-libs/libart_lgpl:=
57 - sys-libs/zlib:=
58 -"
59 -RDEPEND="
60 - dev-python/pillow[tiff,truetype,jpeg(+),${PYTHON_USEDEP}]
61 -"
62 -BDEPEND="
63 - test? ( ${RDEPEND} )
64 - app-arch/unzip
65 -"
66 -RDEPEND+=${DEPEND}
67 -
68 -distutils_enable_sphinx docs/source
69 -
70 -src_unpack() {
71 - unpack ${P}.tar.gz
72 - cd ${P}/src/reportlab/fonts || die
73 - unpack pfbfer-20070710.zip
74 -}
75 -
76 -src_prepare() {
77 - # tests requiring Internet access
78 - sed -i -e 's:test0:_&:' \
79 - tests/test_platypus_general.py \
80 - tests/test_platypus_images.py || die
81 - sed -i -e 's:test9:_&:' tests/test_lib_utils.py || die
82 - distutils-r1_src_prepare
83 -}
84 -
85 -python_test() {
86 - pushd tests > /dev/null || die
87 - "${EPYTHON}" runAll.py || die "Testing failed with ${EPYTHON}"
88 - popd > /dev/null || die
89 -}