Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pikepdf/
Date: Thu, 03 Dec 2020 16:51:27
Message-Id: 1607014269.e135f7405a201a552bdaeea9bf29f6cb75055ac2.grozin@gentoo
1 commit: e135f7405a201a552bdaeea9bf29f6cb75055ac2
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 3 16:51:09 2020 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 3 16:51:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e135f740
7
8 dev-python/pikepdf: clean 2.2.0
9
10 Package-Manager: Portage-3.0.10, Repoman-3.0.2
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 dev-python/pikepdf/pikepdf-2.2.0.ebuild | 59 ---------------------------------
14 1 file changed, 59 deletions(-)
15
16 diff --git a/dev-python/pikepdf/pikepdf-2.2.0.ebuild b/dev-python/pikepdf/pikepdf-2.2.0.ebuild
17 deleted file mode 100644
18 index 39f8d8d20e6..00000000000
19 --- a/dev-python/pikepdf/pikepdf-2.2.0.ebuild
20 +++ /dev/null
21 @@ -1,59 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -PYTHON_COMPAT=( python3_{6..9} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Python library to work with pdf files based on qpdf"
30 -HOMEPAGE="https://pypi.org/project/pikepdf/ https://github.com/pikepdf/pikepdf"
31 -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -LICENSE="MPL-2.0"
33 -SLOT="0"
34 -KEYWORDS="~amd64"
35 -IUSE="test"
36 -RESTRICT="!test? ( test )"
37 -
38 -RDEPEND="app-text/qpdf:0=
39 - dev-python/pillow[${PYTHON_USEDEP}]
40 - dev-python/lxml[${PYTHON_USEDEP}]
41 - dev-python/pybind11[${PYTHON_USEDEP}]"
42 -DEPEND="${RDEPEND}
43 - >=dev-python/wheel-0.35[${PYTHON_USEDEP}]
44 - >=dev-python/pybind11-2.6.0[${PYTHON_USEDEP}]
45 - >=dev-python/setuptools_scm-4.1[${PYTHON_USEDEP}]
46 - dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
47 - test? ( >=dev-python/attrs-20.2.0[${PYTHON_USEDEP}]
48 - >=dev-python/hypothesis-5[${PYTHON_USEDEP}]
49 - <dev-python/hypothesis-6.0[${PYTHON_USEDEP}]
50 - >=dev-python/pillow-5.0.0[${PYTHON_USEDEP}]
51 - >=dev-python/pytest-6[${PYTHON_USEDEP}]
52 - <dev-python/pytest-7[${PYTHON_USEDEP}]
53 - >=dev-python/pytest-cov-2.10.1[${PYTHON_USEDEP}]
54 - <dev-python/pytest-cov-3[${PYTHON_USEDEP}]
55 - >=dev-python/pytest-xdist-1.28[${PYTHON_USEDEP}]
56 - <dev-python/pytest-xdist-2.0[${PYTHON_USEDEP}]
57 - >=dev-python/pytest-timeout-1.4.2[${PYTHON_USEDEP}]
58 - >=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}]
59 - >=dev-python/python-xmp-toolkit-2.0.1[${PYTHON_USEDEP}] )"
60 -
61 -PATCHES=( "${FILESDIR}"/${PN}-1.8.3-test.patch )
62 -
63 -python_test() {
64 - pytest
65 -}
66 -
67 -# When ipython and matplotlib will get python3_8 support, we'll be able to add
68 -#
69 -#IUSE="doc"
70 -#DEPEND="doc? ( dev-python/ipython
71 -# dev-python/matplotlib
72 -# dev-python/sphinx-1.4
73 -# dev-python/sphinx_rtd_theme )"
74 -#python_compile_all() {
75 -# use doc && emake -C docs html
76 -#}
77 -#python_install_all() {
78 -# use doc && local HTML_DOCS=( docs/_build/html/. )
79 -# distutils-r1_python_install_all
80 -#}