public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2013-07-21  8:54 Tim Harder (radhermit)
  0 siblings, 0 replies; 11+ messages in thread
From: Tim Harder (radhermit) @ 2013-07-21  8:54 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/07/21 08:54:32

  Modified:             ChangeLog
  Added:                fuse-2.9.3.ebuild
  Log:
  Version bump, add examples use flag.
  
  (Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.186                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.186&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.186&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.185&r2=1.186

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog	9 Jun 2013 23:03:55 -0000	1.185
+++ ChangeLog	21 Jul 2013 08:54:32 -0000	1.186
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.185 2013/06/09 23:03:55 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.186 2013/07/21 08:54:32 radhermit Exp $
+
+*fuse-2.9.3 (21 Jul 2013)
+
+  21 Jul 2013; Tim Harder <radhermit@gentoo.org> +fuse-2.9.3.ebuild:
+  Version bump, add examples use flag.
 
   09 Jun 2013; Mike Frysinger <vapier@gentoo.org> metadata.xml:
   Add upstream CPE tag (security info) from ChromiumOS.



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

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

Index: fuse-2.9.3.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.1 2013/07/21 08:54:32 radhermit Exp $

EAPI=5
inherit eutils libtool linux-info udev toolchain-funcs

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"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
IUSE="examples kernel_linux kernel_FreeBSD static-libs"

PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"
DEPEND="virtual/pkgconfig"

S=${WORKDIR}/${MY_P}

pkg_setup() {
	if use kernel_linux ; then
		if kernel_is lt 2 6 9 ; then
			die "Your kernel is too old."
		fi
		CONFIG_CHECK="~FUSE_FS"
		FUSE_FS_WARNING="You need to have FUSE module built to use user-mode utils"
		linux-info_pkg_setup
	fi
}

src_prepare() {
	# sandbox violation with mtab writability wrt #438250
	# don't sed configure.in without eautoreconf because of maintainer mode
	sed -i 's:umount --fake:true --fake:' configure || die
	elibtoolize
}

src_configure() {
	econf \
		INIT_D_PATH="${EPREFIX}/etc/init.d" \
		MOUNT_FUSE_PATH="${EPREFIX}/sbin" \
		UDEV_RULES_PATH="${EPREFIX}/$(udev_get_udevdir)/rules.d" \
		$(use_enable static-libs static) \
		--disable-example
}

src_install() {
	default

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

	if use examples ; then
		docinto examples
		dodoc example/*
	fi

	if use kernel_linux ; then
		newinitd "${FILESDIR}"/fuse.init fuse
	elif use kernel_FreeBSD ; then
		insinto /usr/include/fuse
		doins include/fuse_kernel.h
		newinitd "${FILESDIR}"/fuse-fbsd.init fuse
	else
		die "We don't know what init code install for your kernel, please file a bug."
	fi

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

	dodir /etc
	cat > "${ED}"/etc/fuse.conf <<-EOF
		# Set the maximum number of FUSE mounts allowed to non-root users.
		# The default is 1000.
		#
		#mount_max = 1000

		# Allow non-root users to specify the 'allow_other' or 'allow_root'
		# mount options.
		#
		#user_allow_other
	EOF
}





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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2013-10-19  3:46 Mike Frysinger (vapier)
  0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2013-10-19  3:46 UTC (permalink / raw
  To: gentoo-commits

vapier      13/10/19 03:46:31

  Modified:             fuse-2.9.3.ebuild ChangeLog
  Log:
  Add m68k/mips/s390/sh love.
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.2                  sys-fs/fuse/fuse-2.9.3.ebuild

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

Index: fuse-2.9.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fuse-2.9.3.ebuild	21 Jul 2013 08:54:32 -0000	1.1
+++ fuse-2.9.3.ebuild	19 Oct 2013 03:46:31 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.1 2013/07/21 08:54:32 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.2 2013/10/19 03:46:31 vapier Exp $
 
 EAPI=5
 inherit eutils libtool linux-info udev toolchain-funcs
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"



1.188                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.188&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.188&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.187&r2=1.188

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.187
retrieving revision 1.188
diff -u -r1.187 -r1.188
--- ChangeLog	21 Jul 2013 08:56:44 -0000	1.187
+++ ChangeLog	19 Oct 2013 03:46:31 -0000	1.188
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.187 2013/07/21 08:56:44 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.188 2013/10/19 03:46:31 vapier Exp $
+
+  19 Oct 2013; Mike Frysinger <vapier@gentoo.org> fuse-2.9.3.ebuild:
+  Add m68k/mips/s390/sh love.
 
   21 Jul 2013; Tim Harder <radhermit@gentoo.org> -fuse-2.8.6.ebuild,
   -fuse-2.8.7.ebuild, -fuse-2.9.0.ebuild, -fuse-2.9.1.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2013-10-25 13:49 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2013-10-25 13:49 UTC (permalink / raw
  To: gentoo-commits

jer         13/10/25 13:49:38

  Modified:             fuse-2.9.3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #489102).
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.3                  sys-fs/fuse/fuse-2.9.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?r1=1.2&r2=1.3

Index: fuse-2.9.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fuse-2.9.3.ebuild	19 Oct 2013 03:46:31 -0000	1.2
+++ fuse-2.9.3.ebuild	25 Oct 2013 13:49:38 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.2 2013/10/19 03:46:31 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.3 2013/10/25 13:49:38 jer Exp $
 
 EAPI=5
 inherit eutils libtool linux-info udev toolchain-funcs
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"



1.189                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.189&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.189&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.188&r2=1.189

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- ChangeLog	19 Oct 2013 03:46:31 -0000	1.188
+++ ChangeLog	25 Oct 2013 13:49:38 -0000	1.189
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.188 2013/10/19 03:46:31 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.189 2013/10/25 13:49:38 jer Exp $
+
+  25 Oct 2013; Jeroen Roovers <jer@gentoo.org> fuse-2.9.3.ebuild:
+  Stable for HPPA (bug #489102).
 
   19 Oct 2013; Mike Frysinger <vapier@gentoo.org> fuse-2.9.3.ebuild:
   Add m68k/mips/s390/sh love.





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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2013-11-23 16:40 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 11+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2013-11-23 16:40 UTC (permalink / raw
  To: gentoo-commits

nimiux      13/11/23 16:40:49

  Modified:             fuse-2.9.3.ebuild ChangeLog
  Log:
  Stable for amd64 wrt bug #489102
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key D628E536)

Revision  Changes    Path
1.4                  sys-fs/fuse/fuse-2.9.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?r1=1.3&r2=1.4

Index: fuse-2.9.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fuse-2.9.3.ebuild	25 Oct 2013 13:49:38 -0000	1.3
+++ fuse-2.9.3.ebuild	23 Nov 2013 16:40:49 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.3 2013/10/25 13:49:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.4 2013/11/23 16:40:49 nimiux Exp $
 
 EAPI=5
 inherit eutils libtool linux-info udev toolchain-funcs
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"



1.190                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.190&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.190&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.189&r2=1.190

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.189
retrieving revision 1.190
diff -u -r1.189 -r1.190
--- ChangeLog	25 Oct 2013 13:49:38 -0000	1.189
+++ ChangeLog	23 Nov 2013 16:40:49 -0000	1.190
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.189 2013/10/25 13:49:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.190 2013/11/23 16:40:49 nimiux Exp $
+
+  23 Nov 2013; Chema Alonso <nimiux@gentoo.org> fuse-2.9.3.ebuild:
+  Stable for amd64 wrt bug #489102
 
   25 Oct 2013; Jeroen Roovers <jer@gentoo.org> fuse-2.9.3.ebuild:
   Stable for HPPA (bug #489102).





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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2013-11-29 17:12 Markus Meier (maekke)
  0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2013-11-29 17:12 UTC (permalink / raw
  To: gentoo-commits

maekke      13/11/29 17:12:25

  Modified:             fuse-2.9.3.ebuild ChangeLog
  Log:
  arm stable, bug #489102
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.5                  sys-fs/fuse/fuse-2.9.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?r1=1.4&r2=1.5

Index: fuse-2.9.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fuse-2.9.3.ebuild	23 Nov 2013 16:40:49 -0000	1.4
+++ fuse-2.9.3.ebuild	29 Nov 2013 17:12:25 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.4 2013/11/23 16:40:49 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.5 2013/11/29 17:12:25 maekke Exp $
 
 EAPI=5
 inherit eutils libtool linux-info udev toolchain-funcs
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"



1.191                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.191&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.191&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.190&r2=1.191

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -r1.190 -r1.191
--- ChangeLog	23 Nov 2013 16:40:49 -0000	1.190
+++ ChangeLog	29 Nov 2013 17:12:25 -0000	1.191
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.190 2013/11/23 16:40:49 nimiux Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.191 2013/11/29 17:12:25 maekke Exp $
+
+  29 Nov 2013; Markus Meier <maekke@gentoo.org> fuse-2.9.3.ebuild:
+  arm stable, bug #489102
 
   23 Nov 2013; Chema Alonso <nimiux@gentoo.org> fuse-2.9.3.ebuild:
   Stable for amd64 wrt bug #489102





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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2013-12-08 11:00 Pacho Ramos (pacho)
  0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos (pacho) @ 2013-12-08 11:00 UTC (permalink / raw
  To: gentoo-commits

pacho       13/12/08 11:00:22

  Modified:             fuse-2.9.3.ebuild ChangeLog
  Log:
  x86 stable, bug #489102
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.6                  sys-fs/fuse/fuse-2.9.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?r1=1.5&r2=1.6

Index: fuse-2.9.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- fuse-2.9.3.ebuild	29 Nov 2013 17:12:25 -0000	1.5
+++ fuse-2.9.3.ebuild	8 Dec 2013 11:00:22 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.5 2013/11/29 17:12:25 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.6 2013/12/08 11:00:22 pacho Exp $
 
 EAPI=5
 inherit eutils libtool linux-info udev toolchain-funcs
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"



1.192                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.192&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.192&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.191&r2=1.192

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- ChangeLog	29 Nov 2013 17:12:25 -0000	1.191
+++ ChangeLog	8 Dec 2013 11:00:22 -0000	1.192
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.191 2013/11/29 17:12:25 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.192 2013/12/08 11:00:22 pacho Exp $
+
+  08 Dec 2013; Pacho Ramos <pacho@gentoo.org> fuse-2.9.3.ebuild:
+  x86 stable, bug #489102
 
   29 Nov 2013; Markus Meier <maekke@gentoo.org> fuse-2.9.3.ebuild:
   arm stable, bug #489102





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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2013-12-21 18:13 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-21 18:13 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/21 18:13:34

  Modified:             fuse-2.9.3.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #489102
  
  (Portage version: 2.2.1/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  sys-fs/fuse/fuse-2.9.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?r1=1.6&r2=1.7

Index: fuse-2.9.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- fuse-2.9.3.ebuild	8 Dec 2013 11:00:22 -0000	1.6
+++ fuse-2.9.3.ebuild	21 Dec 2013 18:13:34 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.6 2013/12/08 11:00:22 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.7 2013/12/21 18:13:34 ago Exp $
 
 EAPI=5
 inherit eutils libtool linux-info udev toolchain-funcs
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"



1.193                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.193&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.193&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.192&r2=1.193

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.192
retrieving revision 1.193
diff -u -r1.192 -r1.193
--- ChangeLog	8 Dec 2013 11:00:22 -0000	1.192
+++ ChangeLog	21 Dec 2013 18:13:34 -0000	1.193
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.192 2013/12/08 11:00:22 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.193 2013/12/21 18:13:34 ago Exp $
+
+  21 Dec 2013; Agostino Sarubbo <ago@gentoo.org> fuse-2.9.3.ebuild:
+  Stable for ppc, wrt bug #489102
 
   08 Dec 2013; Pacho Ramos <pacho@gentoo.org> fuse-2.9.3.ebuild:
   x86 stable, bug #489102





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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2013-12-23 15:30 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-23 15:30 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/23 15:30:18

  Modified:             fuse-2.9.3.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #489102
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  sys-fs/fuse/fuse-2.9.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?r1=1.8&r2=1.9

Index: fuse-2.9.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- fuse-2.9.3.ebuild	22 Dec 2013 11:56:09 -0000	1.8
+++ fuse-2.9.3.ebuild	23 Dec 2013 15:30:18 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.8 2013/12/22 11:56:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.9 2013/12/23 15:30:18 ago Exp $
 
 EAPI=5
 inherit eutils libtool linux-info udev toolchain-funcs
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"



1.195                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.195&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.195&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.194&r2=1.195

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.194
retrieving revision 1.195
diff -u -r1.194 -r1.195
--- ChangeLog	22 Dec 2013 11:56:09 -0000	1.194
+++ ChangeLog	23 Dec 2013 15:30:18 -0000	1.195
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.194 2013/12/22 11:56:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.195 2013/12/23 15:30:18 ago Exp $
+
+  23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> fuse-2.9.3.ebuild:
+  Stable for sparc, wrt bug #489102
 
   22 Dec 2013; Agostino Sarubbo <ago@gentoo.org> fuse-2.9.3.ebuild:
   Stable for ppc64, wrt bug #489102





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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2014-01-15  9:24 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-15  9:24 UTC (permalink / raw
  To: gentoo-commits

ago         14/01/15 09:24:48

  Modified:             fuse-2.9.3.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #489102
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 sys-fs/fuse/fuse-2.9.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?r1=1.9&r2=1.10

Index: fuse-2.9.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- fuse-2.9.3.ebuild	23 Dec 2013 15:30:18 -0000	1.9
+++ fuse-2.9.3.ebuild	15 Jan 2014 09:24:48 -0000	1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.9 2013/12/23 15:30:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.10 2014/01/15 09:24:48 ago Exp $
 
 EAPI=5
 inherit eutils libtool linux-info udev toolchain-funcs
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"



1.196                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.196&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.196&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.195&r2=1.196

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -r1.195 -r1.196
--- ChangeLog	23 Dec 2013 15:30:18 -0000	1.195
+++ ChangeLog	15 Jan 2014 09:24:48 -0000	1.196
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/fuse
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.195 2013/12/23 15:30:18 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.196 2014/01/15 09:24:48 ago Exp $
+
+  15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> fuse-2.9.3.ebuild:
+  Stable for ia64, wrt bug #489102
 
   23 Dec 2013; Agostino Sarubbo <ago@gentoo.org> fuse-2.9.3.ebuild:
   Stable for sparc, wrt bug #489102





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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2014-01-18 19:54 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-01-18 19:54 UTC (permalink / raw
  To: gentoo-commits

ago         14/01/18 19:54:54

  Modified:             fuse-2.9.3.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #489102
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 sys-fs/fuse/fuse-2.9.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?r1=1.10&r2=1.11

Index: fuse-2.9.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- fuse-2.9.3.ebuild	15 Jan 2014 09:24:48 -0000	1.10
+++ fuse-2.9.3.ebuild	18 Jan 2014 19:54:53 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.10 2014/01/15 09:24:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.11 2014/01/18 19:54:53 ago Exp $
 
 EAPI=5
 inherit eutils libtool linux-info udev toolchain-funcs
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"



1.197                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.197&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.197&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.196&r2=1.197

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.196
retrieving revision 1.197
diff -u -r1.196 -r1.197
--- ChangeLog	15 Jan 2014 09:24:48 -0000	1.196
+++ ChangeLog	18 Jan 2014 19:54:53 -0000	1.197
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/fuse
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.196 2014/01/15 09:24:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.197 2014/01/18 19:54:53 ago Exp $
+
+  18 Jan 2014; Agostino Sarubbo <ago@gentoo.org> fuse-2.9.3.ebuild:
+  Stable for alpha, wrt bug #489102
 
   15 Jan 2014; Agostino Sarubbo <ago@gentoo.org> fuse-2.9.3.ebuild:
   Stable for ia64, wrt bug #489102





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

* [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog
@ 2015-03-07 21:34 Mike Frysinger (vapier)
  0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2015-03-07 21:34 UTC (permalink / raw
  To: gentoo-commits

vapier      15/03/07 21:34:40

  Modified:             fuse-2.9.3.ebuild ChangeLog
  Log:
  Add arm64 love.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.14                 sys-fs/fuse/fuse-2.9.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild?r1=1.13&r2=1.14

Index: fuse-2.9.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- fuse-2.9.3.ebuild	10 Aug 2014 20:19:38 -0000	1.13
+++ fuse-2.9.3.ebuild	7 Mar 2015 21:34:40 -0000	1.14
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.13 2014/08/10 20:19:38 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.3.ebuild,v 1.14 2015/03/07 21:34:40 vapier Exp $
 
 EAPI=5
 inherit eutils libtool linux-info udev toolchain-funcs
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"
@@ -32,6 +32,7 @@
 }
 
 src_prepare() {
+	epatch "${FILESDIR}"/${P}-kernel-types.patch
 	# sandbox violation with mtab writability wrt #438250
 	# don't sed configure.in without eautoreconf because of maintainer mode
 	sed -i 's:umount --fake:true --fake:' configure || die



1.201                sys-fs/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.201&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?rev=1.201&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/fuse/ChangeLog?r1=1.200&r2=1.201

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -r1.200 -r1.201
--- ChangeLog	15 Dec 2014 03:13:20 -0000	1.200
+++ ChangeLog	7 Mar 2015 21:34:40 -0000	1.201
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/fuse
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.200 2014/12/15 03:13:20 radhermit Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.201 2015/03/07 21:34:40 vapier Exp $
+
+  07 Mar 2015; Mike Frysinger <vapier@gentoo.org>
+  +files/fuse-2.9.3-kernel-types.patch, fuse-2.9.3.ebuild:
+  Add arm64 love.
 
   15 Dec 2014; Tim Harder <radhermit@gentoo.org> -fuse-2.9.2.ebuild:
   Remove old.





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

end of thread, other threads:[~2015-03-07 21:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-21 18:13 [gentoo-commits] gentoo-x86 commit in sys-fs/fuse: fuse-2.9.3.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2015-03-07 21:34 Mike Frysinger (vapier)
2014-01-18 19:54 Agostino Sarubbo (ago)
2014-01-15  9:24 Agostino Sarubbo (ago)
2013-12-23 15:30 Agostino Sarubbo (ago)
2013-12-08 11:00 Pacho Ramos (pacho)
2013-11-29 17:12 Markus Meier (maekke)
2013-11-23 16:40 JosA MarAa Alonso (nimiux)
2013-10-25 13:49 Jeroen Roovers (jer)
2013-10-19  3:46 Mike Frysinger (vapier)
2013-07-21  8:54 Tim Harder (radhermit)

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