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 F36201382C5 for ; Wed, 30 Dec 2020 18:22:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F78BE0B1E; Wed, 30 Dec 2020 18:22:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 2A22BE0B1E for ; Wed, 30 Dec 2020 18:22:53 +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 4899A335C8E for ; Wed, 30 Dec 2020 18:22:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4E0832B for ; Wed, 30 Dec 2020 18:22:50 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1609352477.7c716703c7dc46510fefc8fdb5deaa324f7645cd.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/encfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/encfs/encfs-1.9.5-r1.ebuild X-VCS-Directories: sys-fs/encfs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 7c716703c7dc46510fefc8fdb5deaa324f7645cd X-VCS-Branch: master Date: Wed, 30 Dec 2020 18:22:50 +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: dd2fb656-6439-40ea-8e1d-4965f3fd4a0a X-Archives-Hash: 725d0ddaf1c3b18661a226c6bee50f73 commit: 7c716703c7dc46510fefc8fdb5deaa324f7645cd Author: Hank Leininger korelogic com> AuthorDate: Sat Oct 3 01:48:06 2020 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Dec 30 18:21:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c716703 sys-fs/encfs: fix fuse slot, eapi 7, cmake-utils -> cmake encfs is not compatible with fuse-3.x, so we need to specify a slot with which it is compatible. Also bumped to EAPI 7 while I was touching it, and migrated from deprecated cmake-utils.eclass to cmake.eclass. Also, recent cmake-utils / cmake eclasses turn on shared libs, but encfs' build system does the wrong thing for libencfs.so, so turn that knob back off. Signed-off-by: Hank Leininger korelogic.com> Closes: https://bugs.gentoo.org/701698 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Anthony G. Basile gentoo.org> sys-fs/encfs/encfs-1.9.5-r1.ebuild | 41 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/sys-fs/encfs/encfs-1.9.5-r1.ebuild b/sys-fs/encfs/encfs-1.9.5-r1.ebuild new file mode 100644 index 00000000000..c4043c7510d --- /dev/null +++ b/sys-fs/encfs/encfs-1.9.5-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit cmake + +DESCRIPTION="An implementation of encrypted filesystem in user-space using FUSE" +HOMEPAGE="https://vgough.github.io/encfs/" +SRC_URI="https://github.com/vgough/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3 LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~sparc ~x86" +IUSE="libressl nls" + +RDEPEND=" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + dev-libs/tinyxml2:0= + sys-fs/fuse:0= + sys-libs/zlib" +DEPEND=" + ${RDEPEND} + dev-lang/perl + sys-devel/gettext + virtual/pkgconfig" + +# Build dir is hardcoded in test suite, but we restrict them +# because they can lead to false negatives, bug #630486 +RESTRICT="test" +BUILD_DIR="${S}/build" + +src_configure() { + local mycmakeargs=( + -DENABLE_NLS="$(usex nls)" + -DUSE_INTERNAL_TINYXML=OFF + -DBUILD_UNIT_TESTS=OFF + -DBUILD_SHARED_LIBS=OFF + ) + cmake_src_configure +}