Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-text/epubgrep/
Date: Mon, 07 Jun 2021 13:51:40
Message-Id: 1623073842.83d8f5ea82085a109f3bc4c9d10d076409830912.tastytea@gentoo
1 commit: 83d8f5ea82085a109f3bc4c9d10d076409830912
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Mon Jun 7 13:26:20 2021 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Mon Jun 7 13:50:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=83d8f5ea
7
8 app-text/epubgrep: Version bump 0.5.1
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 app-text/epubgrep/Manifest | 1 +
13 app-text/epubgrep/epubgrep-0.5.1.ebuild | 43 +++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/app-text/epubgrep/Manifest b/app-text/epubgrep/Manifest
17 index 6038a18fd..13d973cc9 100644
18 --- a/app-text/epubgrep/Manifest
19 +++ b/app-text/epubgrep/Manifest
20 @@ -1,2 +1,3 @@
21 DIST epubgrep-0.4.0.tar.gz 247541 BLAKE2B f193ea359edc56343cfaab85b33c52f1fda832e335b58a7d2f6d6b98538870e043d6a1b56e8e3f562bd2dff8ddd809aeacad88bf047b2a6e7933a68b29312f49 SHA512 ae6005b62c8fc0ce8d3ae00fb4c04b2f6d84aca4c3497722be52c064b4403a15bc30aa33b4f59bc834d0501bee984f4df1c4a5c620ad14f83186776c46a73fa5
22 DIST epubgrep-0.5.0.tar.gz 253335 BLAKE2B 43a0fff1368a4173797355b8e408ea740ec2810fc13d2a96fb96fda861d076b28c2ce1ce66ddeea64370be21f0873327a96bddca249c73427f6874476dd1d628 SHA512 87deba97675f827dd7e8914b7cf537d903f22a91504e0316e70fd04e567e0282998c729d1a7cef0d0bfaaaa8cf2bd4765afa18c41403248f261bc4240dd08c1a
23 +DIST epubgrep-0.5.1.tar.gz 269799 BLAKE2B 11f67e7584a33d0ba4249e2b8d210c3d74d67a6d6f5a44b2ed8f6d50d52e6ceb4f6db18458afcefa004b185acf4848e724da85286ec7c9ee155dafc4c76f6668 SHA512 dc8550f0802ce92344c7f24d2ffb57c656bef81914414e47310c703ad5c302d1508b3cf3b28459a939156dc5772a702a6a28a8ec28a946218c541c4e690da3c5
24
25 diff --git a/app-text/epubgrep/epubgrep-0.5.1.ebuild b/app-text/epubgrep/epubgrep-0.5.1.ebuild
26 new file mode 100644
27 index 000000000..82f8cf70b
28 --- /dev/null
29 +++ b/app-text/epubgrep/epubgrep-0.5.1.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit cmake
37 +
38 +DESCRIPTION="Search tool for EPUB e-books"
39 +HOMEPAGE="https://schlomp.space/tastytea/epubgrep"
40 +SRC_URI="https://schlomp.space/tastytea/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +S="${WORKDIR}/${PN}"
42 +
43 +LICENSE="AGPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE="test"
47 +RESTRICT="!test? ( test )"
48 +
49 +RDEPEND="
50 + dev-libs/boost[nls]
51 + app-arch/libarchive[bzip2,iconv,lzma,zlib]
52 + dev-libs/libfmt
53 + dev-libs/pugixml
54 +"
55 +DEPEND="
56 + ${RDEPEND}
57 + dev-cpp/termcolor
58 + dev-cpp/nlohmann_json
59 + test? ( dev-cpp/catch )
60 +"
61 +BDEPEND="
62 + sys-devel/gettext
63 + app-text/asciidoc
64 +"
65 +
66 +src_configure() {
67 + local mycmakeargs=(
68 + "-DWITH_TESTS=$(usex test)"
69 + "-DFALLBACK_BUNDLED=NO"
70 + )
71 +
72 + cmake_src_configure
73 +}