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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2DF6A158086 for ; Tue, 7 Dec 2021 07:07:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B676E07D0; Tue, 7 Dec 2021 07:07:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C1C73E07D0 for ; Tue, 7 Dec 2021 07:07:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9370C342F4F for ; Tue, 7 Dec 2021 07:07:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B28EF1C6 for ; Tue, 7 Dec 2021 07:07:12 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1638860817.ce1702840be1c3cb5fdb8adc28c0804f42df2f8d.sam@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.ebuild X-VCS-Directories: sys-fs/encfs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ce1702840be1c3cb5fdb8adc28c0804f42df2f8d X-VCS-Branch: master Date: Tue, 7 Dec 2021 07:07:12 +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: 26edc9dc-c60a-4cb7-b626-67a9de8fabdc X-Archives-Hash: daf8326cefa503d1844c0c0c45c31bb2 commit: ce1702840be1c3cb5fdb8adc28c0804f42df2f8d Author: Sam James gentoo org> AuthorDate: Tue Dec 7 07:06:53 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Dec 7 07:06:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce170284 sys-fs/encfs: drop 1.9.5 (cmake-utils--, EAPI 6--) Bug: https://bugs.gentoo.org/701698 Signed-off-by: Sam James gentoo.org> sys-fs/encfs/encfs-1.9.5.ebuild | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/sys-fs/encfs/encfs-1.9.5.ebuild b/sys-fs/encfs/encfs-1.9.5.ebuild deleted file mode 100644 index 70d05c10d13e..000000000000 --- a/sys-fs/encfs/encfs-1.9.5.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -inherit cmake-utils - -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 ~ppc64 ~sparc x86" -IUSE="nls" - -RDEPEND=" - dev-libs/openssl:0= - dev-libs/tinyxml2:0= - sys-fs/fuse:= - 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 - ) - cmake-utils_src_configure -}