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 0D48E138334 for ; Wed, 15 Aug 2018 19:53:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAFD6E0A93; Wed, 15 Aug 2018 19:53:51 +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 B4D90E0A93 for ; Wed, 15 Aug 2018 19:53:51 +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 9E40B335D14 for ; Wed, 15 Aug 2018 19:53:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B0253AE for ; Wed, 15 Aug 2018 19:53:47 +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: <1534362811.7d1cae050f32e59fcda0f629017af706a5f135b7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/copyfs/copyfs-1.0.1-r1.ebuild X-VCS-Directories: sys-fs/copyfs/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7d1cae050f32e59fcda0f629017af706a5f135b7 X-VCS-Branch: master Date: Wed, 15 Aug 2018 19:53:47 +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-Archives-Salt: 3f152ec5-6c74-46a2-be65-efb19c7472c3 X-Archives-Hash: 9a605f2e19c8792f18ce2314410cbb8d commit: 7d1cae050f32e59fcda0f629017af706a5f135b7 Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Aug 1 16:47:03 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 15 19:53:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d1cae05 sys-fs/copyfs: EAPI7, improve ebuild Bug: https://bugs.gentoo.org/648050 sys-fs/copyfs/copyfs-1.0.1-r1.ebuild | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild b/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild new file mode 100644 index 00000000000..ec53bab73be --- /dev/null +++ b/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools toolchain-funcs + +DESCRIPTION="fuse-based filesystem for maintaining configuration files" +HOMEPAGE="https://boklm.eu/copyfs/" +SRC_URI="https://boklm.eu/copyfs/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=">=sys-fs/fuse-2.0:0" +DEPEND="${RDEPEND} + sys-apps/attr" + +PATCHES=( + # this patch fixes sandbox violations + "${FILESDIR}"/${P}-gentoo.patch + # this patch adds support for cleaning up the versions directory + # the patch is experimental at best, but it's better than your + # versions directory filling up with unused files + # + # patch by stuart@gentoo.org + "${FILESDIR}"/${PN}-1.0-unlink.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf --bindir="${D}/usr/bin" --mandir="${D}/usr/share/man" +} + +src_compile() { + emake CC=$(tc-getCC) +}