public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/
@ 2018-08-15 19:53 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2018-08-15 19:53 UTC (permalink / raw
  To: gentoo-commits

commit:     411d1d592f48651c3dd2b3431780ad84f2fba282
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Aug  1 16:40:10 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Aug 15 19:53:31 2018 +0000
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"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/
@ 2018-08-15 19:53 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2018-08-15 19:53 UTC (permalink / raw
  To: gentoo-commits

commit:     7d1cae050f32e59fcda0f629017af706a5f135b7
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Aug  1 16:47:03 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> 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)
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/
@ 2018-08-15 20:04 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2018-08-15 20:04 UTC (permalink / raw
  To: gentoo-commits

commit:     00112e433da745838471e69bd323557264a88a7d
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 15 19:59:20 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Aug 15 20:04:38 2018 +0000
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..00000000000
--- 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 stuart@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
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/
@ 2021-08-25  2:30 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2021-08-25  2:30 UTC (permalink / raw
  To: gentoo-commits

commit:     aafac15fbdb713ae143a5f5d77e84f3393020ccf
Author:     Matt Smith <matt <AT> offtopica <DOT> uk>
AuthorDate: Sat Aug 21 17:33:00 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 25 02:30:31 2021 +0000
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 <matt <AT> offtopica.uk>
Closes: https://github.com/gentoo/gentoo/pull/22067
Signed-off-by: Sam James <sam <AT> 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
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/
@ 2022-03-19 23:45 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2022-03-19 23:45 UTC (permalink / raw
  To: gentoo-commits

commit:     38a1bc6a5a8895f08c4a51b008934ab54fe42789
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 23:43:29 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 23:43:29 2022 +0000
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 <sam <AT> 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() {


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-03-19 23:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-15 19:53 [gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2022-03-19 23:45 Sam James
2021-08-25  2:30 Sam James
2018-08-15 20:04 Andreas Sturmlechner
2018-08-15 19:53 Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox