Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pdfgrep/
Date: Sun, 03 Feb 2019 19:14:15
Message-Id: 1549221227.b1699a0a21d6b5ad39a582517e00c98a82b802e3.asturm@gentoo
1 commit: b1699a0a21d6b5ad39a582517e00c98a82b802e3
2 Author: Florian Schmaus <flo <AT> geekplace <DOT> eu>
3 AuthorDate: Wed Jan 9 13:24:39 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 3 19:13:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1699a0a
7
8 app-text/pdfgrep: Bump to 2.1.2
9
10 Closes: https://bugs.gentoo.org/655510
11 Signed-off-by: Florian Schmaus <flo <AT> geekplace.eu>
12 Package-Manager: Portage-2.3.51, Repoman-2.3.11
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 app-text/pdfgrep/Manifest | 1 +
16 app-text/pdfgrep/pdfgrep-2.1.2.ebuild | 36 +++++++++++++++++++++++++++++++++++
17 2 files changed, 37 insertions(+)
18
19 diff --git a/app-text/pdfgrep/Manifest b/app-text/pdfgrep/Manifest
20 index cbccbe4a734..23af45ba436 100644
21 --- a/app-text/pdfgrep/Manifest
22 +++ b/app-text/pdfgrep/Manifest
23 @@ -1,2 +1,3 @@
24 DIST pdfgrep-1.4.1.tar.gz 151926 BLAKE2B 68b846b26c28e8209fa3ac7a7e6fe3d0c4c6a298e9bea2e3929fd82a44482ec914bd3594f3e07da8c56766e94ca3d4c3c2d6997364393e95b3741b1bf9685ec5 SHA512 27ce23c25a5f284b3eba92a0f8dbf02600248548967c1e71dfb41e43528824d9add587ea0ac23899ff07d2ffc6c74c2e6e4c2e7240e69494b8d31b7a4afc3735
25 DIST pdfgrep-2.0.1.tar.gz 187217 BLAKE2B f498158e63e2f8419829df0d1801a31d3dff02627ccf0efee7239650203300233d1a19a5c72c57eb24495f2b5403e0e2c6a479b0f28a8d053aa578c732866b1a SHA512 4285f8cb514975a0040cdd6b82133090e27ba5c2f95ca880dccc3dd4fa3427260a5fc73d807df9124a79fa36ac6ed8c11380cde11e00599ed7134d92c50df4a0
26 +DIST pdfgrep-2.1.2.tar.gz 197289 BLAKE2B 94d20649104f7b17adf2d99bdf2ce215cf16746c649f7ec77d58a41b90b13dd903d47b5ed2d35f56ca7ca12ae49cfb8a57004f9ad3ee6b8930f533b33d7d8463 SHA512 27bc4741e5203b2fd265815a22ad8d702b3455b2ae932641b040fc9ce615bc9ff0abef221eb2ec8aa59c79cb139d31184261d076f9731177129a473d62aa4e5c
27
28 diff --git a/app-text/pdfgrep/pdfgrep-2.1.2.ebuild b/app-text/pdfgrep/pdfgrep-2.1.2.ebuild
29 new file mode 100644
30 index 00000000000..41a8ff10f22
31 --- /dev/null
32 +++ b/app-text/pdfgrep/pdfgrep-2.1.2.ebuild
33 @@ -0,0 +1,36 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +DESCRIPTION="A tool similar to grep which searches text in PDFs"
40 +HOMEPAGE="https://pdfgrep.org/"
41 +SRC_URI="https://www.pdfgrep.org/download/${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="+pcre test unac"
47 +
48 +RDEPEND="
49 + app-text/poppler:=[cxx]
50 + dev-libs/libgcrypt:0=
51 + pcre? ( dev-libs/libpcre[cxx] )
52 + unac? ( app-text/unac )"
53 +DEPEND="${RDEPEND}"
54 +BDEPEND="
55 + app-text/asciidoc
56 + virtual/pkgconfig
57 + test? (
58 + dev-texlive/texlive-latex
59 + dev-texlive/texlive-latexrecommended
60 + dev-util/dejagnu
61 + )"
62 +
63 +DOCS="AUTHORS README.md NEWS.md"
64 +
65 +src_configure() {
66 + econf \
67 + $(use_with pcre libpcre) \
68 + $(use_with unac)
69 +}