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/python-poppler-qt5/
Date: Wed, 11 May 2022 16:43:54
Message-Id: 1652287425.238bd01c800450289ebf3ac52b5956c386530104.mgorny@gentoo
1 commit: 238bd01c800450289ebf3ac52b5956c386530104
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 8 14:04:44 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 11 16:43:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=238bd01c
7
8 dev-python/python-poppler-qt5: Bump to 21.3.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-poppler-qt5/Manifest | 1 +
13 .../python-poppler-qt5-21.3.0.ebuild | 33 ++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/python-poppler-qt5/Manifest b/dev-python/python-poppler-qt5/Manifest
17 index 1139449118c1..ac4ae3ac9c84 100644
18 --- a/dev-python/python-poppler-qt5/Manifest
19 +++ b/dev-python/python-poppler-qt5/Manifest
20 @@ -1 +1,2 @@
21 DIST python-poppler-qt5-0.75.0.tar.gz 23281 BLAKE2B 06b2b0899d2a3cfc84e623b98cc3379aa45ac9ca9267f25168cce04f2ed761fd897043376fda3386b2daff2b46850b24782cafd6aabb13a8e7d6f3920b55a02c SHA512 2f03036a2eaeb8e28875f19a813ff85a91c1e9a94301bdb736ecc50e7ececb4de2622728e6fecbf64e114435529f82b6afd23d772e2d3910ae03d5d2b5da3205
22 +DIST python-poppler-qt5-21.3.0.tar.gz 25641 BLAKE2B 5937f1ddc1493bb1ef1d98b91dd8ccec4bd8c835956d84c8d7ce7a1cedcbe16854861e1f13825812e0f74c335020f0d74aad2d2bbc7a5780c6eb3ac77437f13b SHA512 cc942a860c2c999ff04fb0468b1556b0e23e7aa19a0185a39c5e903e717dca64bcbd51b8fe34b6885bd789cbf5cc1080c2ca1dcee30b3e69fa1721618e8db278
23
24 diff --git a/dev-python/python-poppler-qt5/python-poppler-qt5-21.3.0.ebuild b/dev-python/python-poppler-qt5/python-poppler-qt5-21.3.0.ebuild
25 new file mode 100644
26 index 000000000000..11ca6622f42e
27 --- /dev/null
28 +++ b/dev-python/python-poppler-qt5/python-poppler-qt5-21.3.0.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=sip
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1 multiprocessing qmake-utils
39 +
40 +DESCRIPTION="Python binding for libpoppler-qt5"
41 +HOMEPAGE="https://github.com/frescobaldi/python-poppler-qt5"
42 +SRC_URI="https://github.com/frescobaldi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="LGPL-2.1"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +
49 +RDEPEND="
50 + app-text/poppler[qt5]
51 + dev-python/PyQt5[${PYTHON_USEDEP}]
52 +"
53 +DEPEND="${RDEPEND}"
54 +
55 +src_configure() {
56 + DISTUTILS_ARGS=(
57 + --jobs="$(makeopts_jobs)"
58 + --qmake="$(qt5_get_bindir)"/qmake
59 + --qmake-setting="$(qt5_get_qmake_args)"
60 + --verbose
61 + )
62 +}