Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/qpdf/
Date: Wed, 22 Dec 2021 05:24:31
Message-Id: 1640149519.59a511f3eb46bb4dcc9569513497509699bf1d38.sam@gentoo
1 commit: 59a511f3eb46bb4dcc9569513497509699bf1d38
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 22 05:05:19 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 22 05:05:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59a511f3
7
8 app-text/qpdf: add 10.5.0
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-text/qpdf/Manifest | 2 +
13 app-text/qpdf/qpdf-10.5.0.ebuild | 88 ++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 90 insertions(+)
15
16 diff --git a/app-text/qpdf/Manifest b/app-text/qpdf/Manifest
17 index c7ed6bb77b41..22144477787b 100644
18 --- a/app-text/qpdf/Manifest
19 +++ b/app-text/qpdf/Manifest
20 @@ -1,2 +1,4 @@
21 DIST qpdf-10.3.2.tar.gz 18943834 BLAKE2B 5b4e320ddd663721d8201139842bb09a752347f86c3e33116063b2fff1426aed5ff6e3c581c120771a712a8ed278102e0d41816db207a25dabd84e5b89490d35 SHA512 4e630959abf27d1801e36d0cbd754945ded42ade9299057a6b9a642c7cb2a3f8242e274642f1c33a65b4a5a77562d91dcbe64fd5772d483cbe5edb4a6a389219
22 DIST qpdf-10.4.0.tar.gz 18942833 BLAKE2B bc984c742bec582b5b67f7a4f4f00bb22a36e8e14d78b8e8848baed0c94489f6920070bc317928c53aca855c252c2fa5de0fba8b64ba16ba37afc2362d6ae7ba SHA512 7a17cc2b3168bb60ac05d01b585d34d94f62e44e309b86635351b2564bc2c3b7846d3a008ae0d6c068bce3b1d9c42d3a3ab40de3f85a1ec4952280cf8321a041
23 +DIST qpdf-10.5.0-doc.zip 6621139 BLAKE2B 9297946619df67799a450495ead8a980d8e2cfa92556e9eb6ac6f365b80d489bb11a9c5dd95e13df9a8fb013a3f254e89ae1682e8be73799ba0c872dc50075c5 SHA512 75c4eac6e828eb5f8544b4194b775e8258a769aa5e18006b9491d9658981abcd286cd082a233122805e785f283704dccaf2078cd84965ab58ebc6c80fdb4a06f
24 +DIST qpdf-10.5.0.tar.gz 18362586 BLAKE2B efb0a051df9824c6324ce3c4de7b6f5890a04e0a0e1e08a1086c7b7a7e3d29e01d8b6760eeb36cd5461f5ea8a9ac1e6453711df53b514c223abd3d2a41ae1a93 SHA512 758dd4fd86b79a8b08738abb36685cf4a458dcf70a480efe3207d1148a691cf06a8040c83075ace9c3bbaf372cefe78508df2e52513cc969dca76442ed43775d
25
26 diff --git a/app-text/qpdf/qpdf-10.5.0.ebuild b/app-text/qpdf/qpdf-10.5.0.ebuild
27 new file mode 100644
28 index 000000000000..d83ec13d06ca
29 --- /dev/null
30 +++ b/app-text/qpdf/qpdf-10.5.0.ebuild
31 @@ -0,0 +1,88 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit bash-completion-r1
38 +
39 +DESCRIPTION="Command-line tool for structural, content-preserving transformation of PDF files"
40 +HOMEPAGE="http://qpdf.sourceforge.net/"
41 +SRC_URI="mirror://sourceforge/qpdf/${P}.tar.gz"
42 +SRC_URI+=" doc? ( mirror://sourceforge/qpdf/${P}-doc.zip )"
43 +
44 +LICENSE="|| ( Apache-2.0 Artistic-2 )"
45 +# subslot = libqpdf soname version
46 +SLOT="0/28"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris"
48 +IUSE="doc examples gnutls ssl test"
49 +RESTRICT="!test? ( test )"
50 +
51 +RDEPEND="
52 + sys-libs/zlib
53 + virtual/jpeg:0=
54 + ssl? (
55 + gnutls? ( net-libs/gnutls:= )
56 + !gnutls? ( dev-libs/openssl:= )
57 + )
58 +"
59 +DEPEND="${RDEPEND}
60 + test? (
61 + app-text/ghostscript-gpl[tiff(+)]
62 + media-libs/tiff
63 + sys-apps/diffutils
64 + )
65 +"
66 +BDEPEND="dev-lang/perl
67 + doc? ( app-arch/unzip )"
68 +
69 +DOCS=( ChangeLog README.md TODO )
70 +
71 +src_configure() {
72 + # Keep an eye on https://qpdf.readthedocs.io/en/stable/packaging.html.
73 + local myeconfargs=(
74 + --disable-check-autofiles
75 +
76 + --disable-implicit-crypto
77 + --enable-crypto-native
78 +
79 + --disable-oss-fuzz
80 + $(use_enable test test-compare-images)
81 + )
82 +
83 + if use ssl ; then
84 + local crypto_provider=openssl
85 +
86 + if use gnutls ; then
87 + crypto_provider=gnutls
88 + fi
89 +
90 + myeconfargs+=(
91 + --with-default-crypto=${crypto_provider}
92 + --enable-crypto-${crypto_provider}
93 + )
94 + fi
95 +
96 + econf "${myeconfargs[@]}"
97 +}
98 +
99 +src_install() {
100 + default
101 +
102 + if use doc ; then
103 + docompress -x /usr/share/doc/${PF}/singlehtml
104 + dodoc -r "${WORKDIR}"/${P}-doc/.
105 +
106 + fi
107 +
108 + if use examples ; then
109 + dobin $(find examples/build/.libs -maxdepth 1 -type f -executable || die)
110 + fi
111 +
112 + # Completions
113 + dobashcomp completions/bash/qpdf
114 +
115 + insinto /usr/share/zsh/site-functions
116 + doins completions/zsh/_qpdf
117 +
118 + find "${ED}" -type f -name '*.la' -delete || die
119 +}