public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-fs/cifs-utils: cifs-utils-6.1-r1.ebuild ChangeLog
@ 2013-09-21 15:52 Pacho Ramos (pacho)
  0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos (pacho) @ 2013-09-21 15:52 UTC (permalink / raw
  To: gentoo-commits

pacho       13/09/21 15:52:37

  Modified:             ChangeLog
  Added:                cifs-utils-6.1-r1.ebuild
  Log:
  Do not rely on hardcoded path to systemd-ask-password, bug #478538 by Dennis Lichtenthäler
  
  (Portage version: 2.2.6/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.65                 net-fs/cifs-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	10 Jul 2013 15:25:25 -0000	1.64
+++ ChangeLog	21 Sep 2013 15:52:37 -0000	1.65
@@ -1,6 +1,13 @@
 # ChangeLog for net-fs/cifs-utils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.64 2013/07/10 15:25:25 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.65 2013/09/21 15:52:37 pacho Exp $
+
+*cifs-utils-6.1-r1 (21 Sep 2013)
+
+  21 Sep 2013; Pacho Ramos <pacho@gentoo.org> +cifs-utils-6.1-r1.ebuild,
+  +files/cifs-utils-6.1-hardcoded-path.patch:
+  Do not rely on hardcoded path to systemd-ask-password, bug #478538 by Dennis
+  Lichtenthäler
 
 *cifs-utils-6.1 (10 Jul 2013)
 



1.1                  net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: cifs-utils-6.1-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.1 2013/09/21 15:52:37 pacho Exp $

EAPI=5

inherit eutils linux-info multilib

DESCRIPTION="Tools for Managing Linux CIFS Client Filesystems"
HOMEPAGE="http://wiki.samba.org/index.php/LinuxCIFS_utils"
SRC_URI="ftp://ftp.samba.org/pub/linux-cifs/${PN}/${P}.tar.bz2"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~x86 ~arm-linux ~x86-linux"
IUSE="acl ads +caps +caps-ng creds upcall"

DEPEND="!net-fs/mount-cifs
	!<net-fs/samba-3.6_rc1
	acl? ( || (
		=net-fs/samba-3.6*[winbind]
		>=net-fs/samba-4.0.0_alpha1
	) )
	ads? (
		sys-libs/talloc
		virtual/krb5
		sys-apps/keyutils
	)
	caps? ( !caps-ng? ( sys-libs/libcap ) )
	caps? ( caps-ng? ( sys-libs/libcap-ng ) )
	creds? ( sys-apps/keyutils )
	upcall? (
		sys-apps/keyutils
		sys-libs/talloc
		virtual/krb5
	)"
RDEPEND="${DEPEND}"

REQUIRED_USE="acl? ( upcall )"

DOCS="doc/linux-cifs-client-guide.odt"

pkg_setup() {
	linux-info_pkg_setup

	if ! linux_config_exists || ! linux_chkconfig_present CIFS; then
		ewarn "You must enable CIFS support in your kernel config, "
		ewarn "to be able to mount samba shares. You can find it at"
		ewarn
		ewarn "  File systems"
		ewarn "	Network File Systems"
		ewarn "			CIFS support"
		ewarn
		ewarn "and recompile your kernel ..."
	fi
}

src_prepare() {
	# Do not rely on hardcoded path to systemd-ask-password, bug #478538
	epatch "${FILESDIR}/${P}-hardcoded-path.patch"
}

src_configure() {
	ROOTSBINDIR="${EPREFIX}"/sbin \
	econf \
		$(use_enable acl cifsacl cifsidmap) \
		$(use_enable ads cifsupcall) \
		$(use caps && use_with !caps-ng libcap || echo --without-libcap) \
		$(use caps && use_with caps-ng libcap-ng || echo --without-libcap-ng) \
		$(use_enable creds cifscreds) \
		$(use_enable upcall cifsupcall)
}

src_install() {
	default

	# remove empty directories
	find "${ED}" -type d -print0 | xargs --null rmdir \
		--ignore-fail-on-non-empty &>/dev/null

	if use acl ; then
		dodir /etc/cifs-utils
		dosym /usr/$(get_libdir)/cifs-utils/idmapwb.so \
			/etc/cifs-utils/idmap-plugin
		dodir /etc/request-key.d
		echo 'create cifs.idmap * * /usr/sbin/cifs.idmap %k' \
			> "${ED}/etc/request-key.d/cifs.idmap.conf"
	fi

	if use ads ; then
		dodir /etc/request-key.d
		echo 'create dns_resolver * * /usr/sbin/cifs.upcall %k' \
			> "${ED}/etc/request-key.d/cifs.upcall.conf"
	fi
}

pkg_postinst() {
	# Inform about set-user-ID bit of mount.cifs
	ewarn "setuid use flag was dropped due to multiple security implications"
	ewarn "such as CVE-2009-2948, CVE-2011-3585 and CVE-2012-1586"
	ewarn "You are free to set setuid flags by yourself"

	# Inform about upcall usage
	if use acl ; then
		einfo "The cifs.idmap utility has been enabled by creating the"
		einfo "configuration file /etc/request-key.d/cifs.idmap.conf"
		einfo "This enables you to get and set CIFS acls."
	fi

	if use ads ; then
		einfo "The cifs.upcall utility has been enabled by creating the"
		einfo "configuration file /etc/request-key.d/cifs.upcall.conf"
		einfo "This enables you to mount DFS shares."
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in net-fs/cifs-utils: cifs-utils-6.1-r1.ebuild ChangeLog
@ 2013-10-19 21:42 Pacho Ramos (pacho)
  0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos (pacho) @ 2013-10-19 21:42 UTC (permalink / raw
  To: gentoo-commits

pacho       13/10/19 21:42:16

  Modified:             cifs-utils-6.1-r1.ebuild ChangeLog
  Log:
  amd64 stable, bug #486312
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild

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

Index: cifs-utils-6.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cifs-utils-6.1-r1.ebuild	16 Oct 2013 14:24:11 -0000	1.2
+++ cifs-utils-6.1-r1.ebuild	19 Oct 2013 21:42:15 -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/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.2 2013/10/16 14:24:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.3 2013/10/19 21:42:15 pacho Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~x86 ~arm-linux ~x86-linux"
+KEYWORDS="amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~x86 ~arm-linux ~x86-linux"
 IUSE="acl ads +caps +caps-ng creds upcall"
 
 DEPEND="!net-fs/mount-cifs



1.68                 net-fs/cifs-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?r1=1.67&r2=1.68

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	16 Oct 2013 14:24:11 -0000	1.67
+++ ChangeLog	19 Oct 2013 21:42:15 -0000	1.68
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/cifs-utils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.67 2013/10/16 14:24:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.68 2013/10/19 21:42:15 pacho Exp $
+
+  19 Oct 2013; Pacho Ramos <pacho@gentoo.org> cifs-utils-6.1-r1.ebuild:
+  amd64 stable, bug #486312
 
   16 Oct 2013; Jeroen Roovers <jer@gentoo.org> cifs-utils-6.1-r1.ebuild:
   Stable for HPPA (bug #486312).





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

* [gentoo-commits] gentoo-x86 commit in net-fs/cifs-utils: cifs-utils-6.1-r1.ebuild ChangeLog
@ 2013-12-07 21:13 Pacho Ramos (pacho)
  0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos (pacho) @ 2013-12-07 21:13 UTC (permalink / raw
  To: gentoo-commits

pacho       13/12/07 21:13:30

  Modified:             cifs-utils-6.1-r1.ebuild ChangeLog
  Log:
  x86 stable, bug #486312
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.7                  net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild

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

Index: cifs-utils-6.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- cifs-utils-6.1-r1.ebuild	15 Nov 2013 23:53:27 -0000	1.6
+++ cifs-utils-6.1-r1.ebuild	7 Dec 2013 21:13:30 -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/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.6 2013/11/15 23:53:27 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.7 2013/12/07 21:13:30 pacho Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~x86 ~arm-linux ~x86-linux"
+KEYWORDS="amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh x86 ~arm-linux ~x86-linux"
 IUSE="+acl +ads +caps +caps-ng creds"
 
 DEPEND="!net-fs/mount-cifs



1.72                 net-fs/cifs-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	15 Nov 2013 23:53:27 -0000	1.71
+++ ChangeLog	7 Dec 2013 21:13:30 -0000	1.72
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/cifs-utils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.71 2013/11/15 23:53:27 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.72 2013/12/07 21:13:30 pacho Exp $
+
+  07 Dec 2013; Pacho Ramos <pacho@gentoo.org> cifs-utils-6.1-r1.ebuild:
+  x86 stable, bug #486312
 
   15 Nov 2013; Rick Farina <zerochaos@gentoo.org> cifs-utils-6.1-r1.ebuild,
   cifs-utils-6.2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-fs/cifs-utils: cifs-utils-6.1-r1.ebuild ChangeLog
@ 2013-12-24 16:55 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-24 16:55 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/24 16:55:46

  Modified:             cifs-utils-6.1-r1.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #486312
  
  (Portage version: 2.2.1/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild

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

Index: cifs-utils-6.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- cifs-utils-6.1-r1.ebuild	14 Dec 2013 00:00:14 -0000	1.9
+++ cifs-utils-6.1-r1.ebuild	24 Dec 2013 16:55:46 -0000	1.10
@@ -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/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.9 2013/12/14 00:00:14 jmbsvicetto Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.10 2013/12/24 16:55:46 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh x86 ~arm-linux ~x86-linux"
+KEYWORDS="amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~sh x86 ~arm-linux ~x86-linux"
 IUSE="+acl +ads +caps +caps-ng creds"
 
 DEPEND="!net-fs/mount-cifs



1.75                 net-fs/cifs-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	14 Dec 2013 00:00:14 -0000	1.74
+++ ChangeLog	24 Dec 2013 16:55:46 -0000	1.75
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/cifs-utils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.74 2013/12/14 00:00:14 jmbsvicetto Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.75 2013/12/24 16:55:46 ago Exp $
+
+  24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> cifs-utils-6.1-r1.ebuild:
+  Stable for ppc64, wrt bug #486312
 
   14 Dec 2013; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
   cifs-utils-6.1-r1.ebuild, cifs-utils-6.2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-fs/cifs-utils: cifs-utils-6.1-r1.ebuild ChangeLog
@ 2014-01-29  7:05 Pacho Ramos (pacho)
  0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos (pacho) @ 2014-01-29  7:05 UTC (permalink / raw
  To: gentoo-commits

pacho       14/01/29 07:05:40

  Modified:             cifs-utils-6.1-r1.ebuild ChangeLog
  Log:
  ia64 stable, bug #486312 (thanks to Emeric Maschino for testing)
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.12                 net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild?r1=1.11&r2=1.12

Index: cifs-utils-6.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- cifs-utils-6.1-r1.ebuild	26 Jan 2014 09:51:44 -0000	1.11
+++ cifs-utils-6.1-r1.ebuild	29 Jan 2014 07:05:40 -0000	1.12
@@ -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/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.11 2014/01/26 09:51:44 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.12 2014/01/29 07:05:40 pacho Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux"
 IUSE="+acl +ads +caps +caps-ng creds"
 
 DEPEND="!net-fs/mount-cifs



1.78                 net-fs/cifs-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?r1=1.77&r2=1.78

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	26 Jan 2014 09:51:44 -0000	1.77
+++ ChangeLog	29 Jan 2014 07:05:40 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/cifs-utils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.77 2014/01/26 09:51:44 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.78 2014/01/29 07:05:40 pacho Exp $
+
+  29 Jan 2014; Pacho Ramos <pacho@gentoo.org> cifs-utils-6.1-r1.ebuild:
+  ia64 stable, bug #486312 (thanks to Emeric Maschino for testing)
 
   26 Jan 2014; Pacho Ramos <pacho@gentoo.org> cifs-utils-6.1-r1.ebuild,
   cifs-utils-6.2.ebuild, cifs-utils-6.3.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-fs/cifs-utils: cifs-utils-6.1-r1.ebuild ChangeLog
@ 2014-06-22 21:28 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Klausmann (klausman) @ 2014-06-22 21:28 UTC (permalink / raw
  To: gentoo-commits

klausman    14/06/22 21:28:55

  Modified:             cifs-utils-6.1-r1.ebuild ChangeLog
  Log:
  Stable on alpha, bug #486312
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)

Revision  Changes    Path
1.13                 net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild?r1=1.12&r2=1.13

Index: cifs-utils-6.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- cifs-utils-6.1-r1.ebuild	29 Jan 2014 07:05:40 -0000	1.12
+++ cifs-utils-6.1-r1.ebuild	22 Jun 2014 21:28:55 -0000	1.13
@@ -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/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.12 2014/01/29 07:05:40 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.13 2014/06/22 21:28:55 klausman Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux"
 IUSE="+acl +ads +caps +caps-ng creds"
 
 DEPEND="!net-fs/mount-cifs



1.79                 net-fs/cifs-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	29 Jan 2014 07:05:40 -0000	1.78
+++ ChangeLog	22 Jun 2014 21:28:55 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/cifs-utils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.78 2014/01/29 07:05:40 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.79 2014/06/22 21:28:55 klausman Exp $
+
+  22 Jun 2014; Tobias Klausmann <klausman@gentoo.org> cifs-utils-6.1-r1.ebuild:
+  Stable on alpha, bug #486312
 
   29 Jan 2014; Pacho Ramos <pacho@gentoo.org> cifs-utils-6.1-r1.ebuild:
   ia64 stable, bug #486312 (thanks to Emeric Maschino for testing)





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

* [gentoo-commits] gentoo-x86 commit in net-fs/cifs-utils: cifs-utils-6.1-r1.ebuild ChangeLog
@ 2014-08-13  9:33 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-08-13  9:33 UTC (permalink / raw
  To: gentoo-commits

ago         14/08/13 09:33:19

  Modified:             cifs-utils-6.1-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #486312
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.14                 net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild

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

Index: cifs-utils-6.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- cifs-utils-6.1-r1.ebuild	22 Jun 2014 21:28:55 -0000	1.13
+++ cifs-utils-6.1-r1.ebuild	13 Aug 2014 09:33:19 -0000	1.14
@@ -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/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.13 2014/06/22 21:28:55 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-6.1-r1.ebuild,v 1.14 2014/08/13 09:33:19 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux"
 IUSE="+acl +ads +caps +caps-ng creds"
 
 DEPEND="!net-fs/mount-cifs



1.81                 net-fs/cifs-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cifs-utils/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	21 Jul 2014 12:18:44 -0000	1.80
+++ ChangeLog	13 Aug 2014 09:33:19 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/cifs-utils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.80 2014/07/21 12:18:44 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.81 2014/08/13 09:33:19 ago Exp $
+
+  13 Aug 2014; Agostino Sarubbo <ago@gentoo.org> cifs-utils-6.1-r1.ebuild:
+  Stable for ppc, wrt bug #486312
 
 *cifs-utils-6.4 (21 Jul 2014)
 





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

end of thread, other threads:[~2014-08-13  9:33 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-13  9:33 [gentoo-commits] gentoo-x86 commit in net-fs/cifs-utils: cifs-utils-6.1-r1.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2014-06-22 21:28 Tobias Klausmann (klausman)
2014-01-29  7:05 Pacho Ramos (pacho)
2013-12-24 16:55 Agostino Sarubbo (ago)
2013-12-07 21:13 Pacho Ramos (pacho)
2013-10-19 21:42 Pacho Ramos (pacho)
2013-09-21 15:52 Pacho Ramos (pacho)

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