From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 638F81382C5 for ; Tue, 25 May 2021 10:43:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA6FFE076B; Tue, 25 May 2021 10:43:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A48EDE076B for ; Tue, 25 May 2021 10:43:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35E8234072E for ; Tue, 25 May 2021 10:43:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67947720 for ; Tue, 25 May 2021 10:43:16 +0000 (UTC) From: "Ronny Gutbrod" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ronny Gutbrod" Message-ID: <1621939379.20db5ad751285ec579ad6c39343d9cce429197ff.tastytea@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-text/epubgrep/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-text/epubgrep/Manifest app-text/epubgrep/epubgrep-0.2.0.ebuild X-VCS-Directories: app-text/epubgrep/ X-VCS-Committer: tastytea X-VCS-Committer-Name: Ronny Gutbrod X-VCS-Revision: 20db5ad751285ec579ad6c39343d9cce429197ff X-VCS-Branch: dev Date: Tue, 25 May 2021 10:43:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 02a3020c-12c4-4300-83b5-a42bb730effa X-Archives-Hash: bd6494b7a99e4e25213d8fa04c0e9be3 commit: 20db5ad751285ec579ad6c39343d9cce429197ff Author: Ronny (tastytea) Gutbrod tastytea de> AuthorDate: Tue May 25 10:39:46 2021 +0000 Commit: Ronny Gutbrod tastytea de> CommitDate: Tue May 25 10:42:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=20db5ad7 app-text/epubgrep: Version bump 0.2.0. Signed-off-by: Ronny (tastytea) Gutbrod tastytea.de> app-text/epubgrep/Manifest | 1 + app-text/epubgrep/epubgrep-0.2.0.ebuild | 45 +++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) diff --git a/app-text/epubgrep/Manifest b/app-text/epubgrep/Manifest index a6bef4a14..c8a012e96 100644 --- a/app-text/epubgrep/Manifest +++ b/app-text/epubgrep/Manifest @@ -1 +1,2 @@ DIST epubgrep-0.1.3.tar.gz 33668 BLAKE2B 717de938e4830dbf970b11e67dd361e619ab77c83bfe4e3cb94dc3654317099e7bafb8029ab7899e83c16eb0d25f6bd41ac28d72c28b8826c1d6cd25d24b401b SHA512 c321578607400e365143111324851497681cc0464e1ddc8362dbbc3b76096b379d080800efd11e217a643ced14b6032fd16b8f0e01922e248926ac2e3840d659 +DIST epubgrep-0.2.0.tar.gz 217269 BLAKE2B 4bf4065009ad4ee0f8963e692ad5c08d04950920b7f7a1ffab6ca8f24fadfc7f48486fe166799e1a984d683af962ef850cafab717eed9b068f1a0918a4faebbd SHA512 ab6d8433db63c7ab2e8c9ec334f573bb81f3d9390124f60d6619d52fe83d4df15abca240c55e74022abd17cf536fa00b31ac32f597a1370f99826bb8a6d5b904 diff --git a/app-text/epubgrep/epubgrep-0.2.0.ebuild b/app-text/epubgrep/epubgrep-0.2.0.ebuild new file mode 100644 index 000000000..46a105b76 --- /dev/null +++ b/app-text/epubgrep/epubgrep-0.2.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Search tool for EPUB ebooks" +HOMEPAGE="https://schlomp.space/tastytea/epubgrep" +SRC_URI="https://schlomp.space/tastytea/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/boost[nls] + app-arch/libarchive[bzip2,iconv,lzma,zlib] + dev-libs/libfmt +" +DEPEND=" + ${RDEPEND} + dev-cpp/termcolor + test? ( dev-cpp/catch ) +" +BDEPEND=" + sys-devel/gettext + app-text/asciidoc +" + +src_configure() { + local mycmakeargs=( + "-DWITH_TESTS=$(usex test)" + "-DFALLBACK_BUNDLED=NO" + ) + + cmake_src_configure +} + +src_test() { + BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test +}