Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/
Date: Wed, 15 Aug 2018 20:04:59
Message-Id: 1534363478.00112e433da745838471e69bd323557264a88a7d.asturm@gentoo
1 commit: 00112e433da745838471e69bd323557264a88a7d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 15 19:59:20 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 15 20:04:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00112e43
7
8 sys-fs/copyfs: Drop old
9
10 Package-Manager: Portage-2.3.46, Repoman-2.3.10
11
12 sys-fs/copyfs/copyfs-1.0.1.ebuild | 43 ---------------------------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/sys-fs/copyfs/copyfs-1.0.1.ebuild b/sys-fs/copyfs/copyfs-1.0.1.ebuild
16 deleted file mode 100644
17 index 285ec9354bd..00000000000
18 --- a/sys-fs/copyfs/copyfs-1.0.1.ebuild
19 +++ /dev/null
20 @@ -1,43 +0,0 @@
21 -# Copyright 1999-2010 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -inherit autotools eutils toolchain-funcs
27 -
28 -DESCRIPTION="fuse-based filesystem for maintaining configuration files"
29 -HOMEPAGE="https://boklm.eu/copyfs/"
30 -SRC_URI="https://boklm.eu/copyfs/${P}.tar.bz2"
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="~x86 ~amd64 ~ppc"
34 -IUSE=""
35 -
36 -DEPEND=">=sys-fs/fuse-2.0
37 - sys-apps/attr"
38 -RDEPEND="${DEPEND}"
39 -
40 -src_prepare() {
41 - # this patch fixes sandbox violations
42 - epatch "${FILESDIR}"/${P}-gentoo.patch
43 -
44 - # this patch adds support for cleaning up the versions directory
45 - # the patch is experimental at best, but it's better than your
46 - # versions directory filling up with unused files
47 - #
48 - # patch by stuart@g.o
49 - epatch "${FILESDIR}"/${PN}-1.0-unlink.patch
50 - eautoreconf
51 -}
52 -
53 -src_configure() {
54 - econf --bindir="${D}/usr/bin" --mandir="${D}/usr/share/man"
55 -}
56 -
57 -src_compile() {
58 - emake CC=$(tc-getCC) || die
59 -}
60 -
61 -src_install() {
62 - emake DESTDIR="${D}" install || die
63 -}