public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: ChangeLog fuse-2.7.1.ebuild
@ 2007-10-18 16:03 Stefan Schweizer (genstef)
  0 siblings, 0 replies; 2+ messages in thread
From: Stefan Schweizer (genstef) @ 2007-10-18 16:03 UTC (permalink / raw
  To: gentoo-commits

genstef     07/10/18 16:03:22

  Modified:             ChangeLog
  Added:                fuse-2.7.1.ebuild
  Log:
  version bump
  (Portage version: 2.1.3.13)

Revision  Changes    Path
1.108                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.107&r2=1.108

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	13 Oct 2007 10:35:39 -0000	1.107
+++ ChangeLog	18 Oct 2007 16:03:21 -0000	1.108
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.107 2007/10/13 10:35:39 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.108 2007/10/18 16:03:21 genstef Exp $
+
+*fuse-2.7.1 (18 Oct 2007)
+
+  18 Oct 2007; Stefan Schweizer <genstef@gentoo.org> +fuse-2.7.1.ebuild:
+  version bump
 
   13 Oct 2007; Markus Rothe <corsair@gentoo.org> fuse-2.7.0.ebuild:
   Stable on ppc64; bug #193329



1.1                  sys-fs/fuse/fuse-2.7.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/fuse-2.7.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/fuse-2.7.1.ebuild?rev=1.1&content-type=text/plain

Index: fuse-2.7.1.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.7.1.ebuild,v 1.1 2007/10/18 16:03:21 genstef Exp $

inherit linux-mod eutils libtool

MY_P=${P/_/-}
DESCRIPTION="An interface for filesystems implemented in userspace."
HOMEPAGE="http://fuse.sourceforge.net"
SRC_URI="mirror://sourceforge/fuse/${MY_P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="kernel_linux kernel_FreeBSD"
S=${WORKDIR}/${MY_P}
PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"

pkg_setup() {
	if use kernel_linux ; then
		if kernel_is ge 2 6 23; then
			CONFIG_CHECK="FUSE_FS"
			FUSE_FS_ERROR="You need to build the FUSE module from the kernel source, because your kernel is too new"
		else
			MODULE_NAMES="fuse(fs:${S}/kernel)"
			CONFIG_CHECK="@FUSE_FS:fuse"
			FUSE_FS_ERROR="We have detected FUSE already built into the kernel.
				We will continue, but we wont build the module this time."

		fi
		linux-mod_pkg_setup
		kernel_is 2 4 && die "kernel 2.4 is not supported by this ebuild. Get an
			older version from viewcvs"

		BUILD_PARAMS="majver=${KV_MAJOR}.${KV_MINOR}
					fusemoduledir=${ROOT}/lib/modules/${KV_FULL/\ }/fs"
		BUILD_TARGETS="all"
		ECONF_PARAMS="--with-kernel=${KV_DIR} --with-kernel-build=${KV_OUT_DIR}"
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/fuse-fix-lazy-binding.patch
	elibtoolize
}

src_compile() {
	econf \
		--disable-kernel-module \
		--disable-example \
		|| die "econf failed for fuse userland"
	emake || die "emake failed"

	if use kernel_linux ; then
		cd "${S}"
		sed -i -e 's/.*depmod.*//g' kernel/Makefile.in
		convert_to_m kernel/Makefile.in
		linux-mod_src_compile
	fi
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	dodoc AUTHORS ChangeLog Filesystems README \
		README.NFS NEWS doc/how-fuse-works \
		doc/kernel.txt FAQ
	docinto example
	dodoc example/*

	if use kernel_linux ; then
		linux-mod_src_install
		newinitd ${FILESDIR}/fuse.init fuse
	else
		insinto /usr/include/fuse
		doins include/fuse_kernel.h
		newinitd ${FILESDIR}/fuse-fbsd.init fuse
	fi

	rm -rf "${D}/dev"
}

pkg_postinst() {
	use kernel_linux && linux-mod_pkg_postinst
}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: ChangeLog fuse-2.7.1.ebuild
@ 2007-12-18 10:09 Vlastimil Babka (caster)
  0 siblings, 0 replies; 2+ messages in thread
From: Vlastimil Babka (caster) @ 2007-12-18 10:09 UTC (permalink / raw
  To: gentoo-commits

caster      07/12/18 10:09:01

  Modified:             ChangeLog fuse-2.7.1.ebuild
  Log:
  Allow the kernel module in 2.7.1 to be compiled with kernel 2.6.23 because it's supported and working. Bug #200053.
  (Portage version: 2.1.4_rc9)

Revision  Changes    Path
1.110                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.109&r2=1.110

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog	17 Dec 2007 22:37:21 -0000	1.109
+++ ChangeLog	18 Dec 2007 10:09:00 -0000	1.110
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.109 2007/12/17 22:37:21 genstef Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.110 2007/12/18 10:09:00 caster Exp $
+
+  18 Dec 2007; Vlastimil Babka <caster@gentoo.org> fuse-2.7.1.ebuild:
+  Allow the kernel module in 2.7.1 to be compiled with kernel 2.6.23 because
+  it's supported and working. Bug #200053.
 
 *fuse-2.7.2 (17 Dec 2007)
 



1.2                  sys-fs/fuse/fuse-2.7.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/fuse-2.7.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/fuse-2.7.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/fuse/fuse-2.7.1.ebuild?r1=1.1&r2=1.2

Index: fuse-2.7.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.7.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fuse-2.7.1.ebuild	18 Oct 2007 16:03:21 -0000	1.1
+++ fuse-2.7.1.ebuild	18 Dec 2007 10:09:00 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.7.1.ebuild,v 1.1 2007/10/18 16:03:21 genstef Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.7.1.ebuild,v 1.2 2007/12/18 10:09:00 caster Exp $
 
 inherit linux-mod eutils libtool
 
@@ -16,7 +16,7 @@
 
 pkg_setup() {
 	if use kernel_linux ; then
-		if kernel_is ge 2 6 23; then
+		if kernel_is ge 2 6 24; then
 			CONFIG_CHECK="FUSE_FS"
 			FUSE_FS_ERROR="You need to build the FUSE module from the kernel source, because your kernel is too new"
 		else



-- 
gentoo-commits@gentoo.org mailing list



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

end of thread, other threads:[~2007-12-18 10:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-18 10:09 [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: ChangeLog fuse-2.7.1.ebuild Vlastimil Babka (caster)
  -- strict thread matches above, loose matches on Subject: below --
2007-10-18 16:03 Stefan Schweizer (genstef)

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