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 32B661382C5 for ; Mon, 12 Apr 2021 05:39:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70246E0830; Mon, 12 Apr 2021 05:39:10 +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 5B983E0830 for ; Mon, 12 Apr 2021 05:39:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A62D7340B9C for ; Mon, 12 Apr 2021 05:38:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1281C66A for ; Mon, 12 Apr 2021 05:38:51 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1618143858.caff25af19e7ede074cfed2b1ad4b8ba43da3503.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-fs/dwarfs/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-fs/dwarfs/dwarfs-0.5.2-r1.ebuild sys-fs/dwarfs/dwarfs-0.5.2-r2.ebuild sys-fs/dwarfs/dwarfs-0.5.2.ebuild X-VCS-Directories: sys-fs/dwarfs/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: caff25af19e7ede074cfed2b1ad4b8ba43da3503 X-VCS-Branch: master Date: Mon, 12 Apr 2021 05:38:51 +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: 32f7e836-9659-42d2-8cf1-a6d9da82a292 X-Archives-Hash: 7ac68e67cf1c033c30e8d9bbcde8a8f6 commit: caff25af19e7ede074cfed2b1ad4b8ba43da3503 Author: Denis Reva gmail com> AuthorDate: Sun Apr 11 12:24:05 2021 +0000 Commit: Theo Anderson posteo de> CommitDate: Sun Apr 11 12:24:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=caff25af sys-fs/dwarfs: important! Fixed installation! Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Denis Reva gmail.com> sys-fs/dwarfs/{dwarfs-0.5.2.ebuild => dwarfs-0.5.2-r1.ebuild} | 9 ++++----- sys-fs/dwarfs/{dwarfs-0.5.2.ebuild => dwarfs-0.5.2-r2.ebuild} | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/sys-fs/dwarfs/dwarfs-0.5.2.ebuild b/sys-fs/dwarfs/dwarfs-0.5.2-r1.ebuild similarity index 92% copy from sys-fs/dwarfs/dwarfs-0.5.2.ebuild copy to sys-fs/dwarfs/dwarfs-0.5.2-r1.ebuild index 8c7493f14..33c7471fd 100644 --- a/sys-fs/dwarfs/dwarfs-0.5.2.ebuild +++ b/sys-fs/dwarfs/dwarfs-0.5.2-r1.ebuild @@ -14,14 +14,11 @@ SRC_URI="https://github.com/mhx/dwarfs/releases/download/v${PV}/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="" -IUSE="python +jemalloc" +IUSE="python +jemalloc test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" -#test IUSE disabled because there is no googletest in portage tree at this moment -#-DWITH_TESTS=$(usex test ON OFF) - PYTHON_REQ_USE="python" DEPEND="sys-devel/flex @@ -45,6 +42,7 @@ RDEPEND="${PYTHON_DEPS} sys-libs/binutils-libs sys-libs/zlib sys-libs/libunwind + test? ( dev-cpp/gtest ) !dev-cpp/folly" BDEPEND="app-text/ronn dev-util/cmake @@ -70,6 +68,7 @@ src_configure(){ mycmakeargs=( -DUSE_JEMALLOC=$(usex jemalloc ON OFF) -DWITH_PYTHON=$(usex python ON OFF) + -DWITH_TESTS=$(usex test ON OFF) -DPREFER_SYSTEM_ZSTD=1 -DPREFER_SYSTEM_XXHASH=1 -DWITH_LEGACY_FUSE=0 diff --git a/sys-fs/dwarfs/dwarfs-0.5.2.ebuild b/sys-fs/dwarfs/dwarfs-0.5.2-r2.ebuild similarity index 96% rename from sys-fs/dwarfs/dwarfs-0.5.2.ebuild rename to sys-fs/dwarfs/dwarfs-0.5.2-r2.ebuild index 8c7493f14..48bf7de58 100644 --- a/sys-fs/dwarfs/dwarfs-0.5.2.ebuild +++ b/sys-fs/dwarfs/dwarfs-0.5.2-r2.ebuild @@ -81,7 +81,7 @@ src_configure(){ src_install(){ cmake_src_install - dolib.so libmetadata_thrift.so libthrift_light.so + dolib.so libmetadata_thrift.so libthrift_light.so libdwarfs.so libfsst.so dolib.so folly/libfolly.so.0.58.0-dev folly/libfolly.so }