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 C76A0139368 for ; Tue, 3 Aug 2021 13:18:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CD17E09BB; Tue, 3 Aug 2021 13:18:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 61061E09BB for ; Tue, 3 Aug 2021 13:18:44 +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 86EB0343D4A for ; Tue, 3 Aug 2021 13:18:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4DF2859 for ; Tue, 3 Aug 2021 13:18:40 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1627996696.d8b20388df699bf8afe6f755034bdfa2993ad615.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lufis/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/lufis/lufis-0.3.ebuild X-VCS-Directories: sys-fs/lufis/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d8b20388df699bf8afe6f755034bdfa2993ad615 X-VCS-Branch: master Date: Tue, 3 Aug 2021 13:18:40 +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: d020fea7-ed92-40ab-9b0c-36f19be19c2d X-Archives-Hash: 819c42db46d5aa5116665eebb7311bde commit: d8b20388df699bf8afe6f755034bdfa2993ad615 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 3 12:22:59 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Aug 3 13:18:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8b20388 sys-fs/lufis: Drop 0.3 (r0), EAPI6-- Closes: https://bugs.gentoo.org/799686 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> sys-fs/lufis/lufis-0.3.ebuild | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/sys-fs/lufis/lufis-0.3.ebuild b/sys-fs/lufis/lufis-0.3.ebuild deleted file mode 100644 index df57946bde0..00000000000 --- a/sys-fs/lufis/lufis-0.3.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit toolchain-funcs - -DESCRIPTION="Wrapper to use lufs modules with fuse kernel support" -HOMEPAGE="http://fuse.sourceforge.net/" -SRC_URI="mirror://sourceforge/fuse/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ppc x86" -IUSE="" - -DEPEND="!=sys-fs/fuse-1.3" - -PATCHES=( - "${FILESDIR}"/lufis-allow-uid-and-gid-addon.patch -) - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - dobin lufis - dodoc README ChangeLog - - insinto /usr/include/lufs/ - doins fs.h proto.h -}