[gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/

2022-03-19 Thread Sam James
commit: 38a1bc6a5a8895f08c4a51b008934ab54fe42789
Author: Sam James  gentoo  org>
AuthorDate: Sat Mar 19 23:43:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Mar 19 23:43:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38a1bc6a

sys-fs/copyfs: [QA] fix tc-get* quoting

This can cause build problems for e.g. 32-bit (gcc -m32 ...)

Signed-off-by: Sam James  gentoo.org>

 sys-fs/copyfs/copyfs-1.0.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild 
b/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
index 543302c45eb9..14daded7cf71 100644
--- a/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
+++ b/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -34,7 +34,7 @@ src_prepare() {
 }
 
 src_compile() {
-   emake CC=$(tc-getCC)
+   emake CC="$(tc-getCC)"
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/

2021-08-24 Thread Sam James
commit: aafac15fbdb713ae143a5f5d77e84f3393020ccf
Author: Matt Smith  offtopica  uk>
AuthorDate: Sat Aug 21 17:33:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 25 02:30:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aafac15f

sys-fs/copyfs: Don't use $D in src_configure

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Matt Smith  offtopica.uk>
Closes: https://github.com/gentoo/gentoo/pull/22067
Signed-off-by: Sam James  gentoo.org>

 sys-fs/copyfs/copyfs-1.0.1-r1.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild 
b/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
index ec53bab73be..543302c45eb 100644
--- a/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
+++ b/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -33,10 +33,10 @@ src_prepare() {
eautoreconf
 }
 
-src_configure() {
-   econf --bindir="${D}/usr/bin" --mandir="${D}/usr/share/man"
-}
-
 src_compile() {
emake CC=$(tc-getCC)
 }
+
+src_install() {
+   emake bindir="${D}"/usr/bin mandir="${D}"/usr/share/man install
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/

2018-08-15 Thread Andreas Sturmlechner
commit: 00112e433da745838471e69bd323557264a88a7d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Aug 15 19:59:20 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Aug 15 20:04:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00112e43

sys-fs/copyfs: Drop old

Package-Manager: Portage-2.3.46, Repoman-2.3.10

 sys-fs/copyfs/copyfs-1.0.1.ebuild | 43 ---
 1 file changed, 43 deletions(-)

diff --git a/sys-fs/copyfs/copyfs-1.0.1.ebuild 
b/sys-fs/copyfs/copyfs-1.0.1.ebuild
deleted file mode 100644
index 285ec9354bd..000
--- a/sys-fs/copyfs/copyfs-1.0.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit autotools eutils 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="~x86 ~amd64 ~ppc"
-IUSE=""
-
-DEPEND=">=sys-fs/fuse-2.0
-   sys-apps/attr"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   # this patch fixes sandbox violations
-   epatch "${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 stu...@gentoo.org
-   epatch "${FILESDIR}"/${PN}-1.0-unlink.patch
-   eautoreconf
-}
-
-src_configure() {
-   econf --bindir="${D}/usr/bin" --mandir="${D}/usr/share/man"
-}
-
-src_compile() {
-   emake CC=$(tc-getCC) || die
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/

2018-08-15 Thread Andreas Sturmlechner
commit: 7d1cae050f32e59fcda0f629017af706a5f135b7
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed Aug  1 16:47:03 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Aug 15 19:53:31 2018 +
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 000..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 stu...@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)
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/

2018-08-15 Thread Andreas Sturmlechner
commit: 411d1d592f48651c3dd2b3431780ad84f2fba282
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed Aug  1 16:40:10 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Aug 15 19:53:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=411d1d59

sys-fs/copyfs: fix HOMEPAGE, SRC_URI

 sys-fs/copyfs/copyfs-1.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/copyfs/copyfs-1.0.1.ebuild 
b/sys-fs/copyfs/copyfs-1.0.1.ebuild
index dcec1e63bce..285ec9354bd 100644
--- a/sys-fs/copyfs/copyfs-1.0.1.ebuild
+++ b/sys-fs/copyfs/copyfs-1.0.1.ebuild
@@ -6,8 +6,8 @@ EAPI="2"
 inherit autotools eutils toolchain-funcs
 
 DESCRIPTION="fuse-based filesystem for maintaining configuration files"
-HOMEPAGE="http://invaders.mars-attacks.org/~boklm/copyfs/;
-SRC_URI="${HOMEPAGE}/${P}.tar.bz2"
+HOMEPAGE="https://boklm.eu/copyfs/;
+SRC_URI="https://boklm.eu/copyfs/${P}.tar.bz2;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~x86 ~amd64 ~ppc"