public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-4.1.4.ebuild
@ 2011-04-06 14:10 Peter Volkov (pva)
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Volkov (pva) @ 2011-04-06 14:10 UTC (permalink / raw
  To: gentoo-commits

pva         11/04/06 14:10:32

  Modified:             ChangeLog
  Added:                autofs-4.1.4.ebuild
  Log:
  Version bump, bug #324961 thank Dustin Polke for this job.
  
  (Portage version: 2.1.9.45/cvs/Linux x86_64)

Revision  Changes    Path
1.102                net-fs/autofs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	3 Apr 2011 17:55:17 -0000	1.101
+++ ChangeLog	6 Apr 2011 14:10:32 -0000	1.102
@@ -1,6 +1,15 @@
 # ChangeLog for net-fs/autofs
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.101 2011/04/03 17:55:17 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.102 2011/04/06 14:10:32 pva Exp $
+
+*autofs-4.1.4 (06 Apr 2011)
+
+  06 Apr 2011; Peter Volkov <pva@gentoo.org> +autofs-4.1.4.ebuild,
+  +files/autofs-4.1.4-clean-up-maps.patch,
+  +files/autofs-4.1.4-fix-install-ldap-samples-and-maps.patch,
+  +files/autofs-4.1.4-fix-man-pages.patch, +files/autofs-4.1.4-init.patch,
+  +files/autofs-4.1.4-respect-user-flags-and-fix-asneeded.patch:
+  Version bump, bug #324961 thank Dustin Polke for this job.
 
 *autofs-5.0.5-r2 (03 Apr 2011)
 



1.1                  net-fs/autofs/autofs-4.1.4.ebuild

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

Index: autofs-4.1.4.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v 1.1 2011/04/06 14:10:32 pva Exp $

EAPI="4"

inherit eutils multilib autotools

PATCH_VER="1"
DESCRIPTION="Kernel based automounter"
HOMEPAGE="http://www.linux-consulting.com/Amd_AutoFS/autofs.html"
SRC_URI="mirror://kernel/linux/daemons/${PN}/v4/${P}.tar.bz2
	mirror://gentoo/${P}-patches-${PATCH_VER}.tar.lzma"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="hesiod ldap"

DEPEND="hesiod? ( net-dns/hesiod )
	ldap? ( >=net-nds/openldap-2.0 )"
RDEPEND="${DEPEND}"

UPSTREAM_FILESDIR="gentoo/${CATEGORY}/${PN}/files"

src_prepare() {
	EPATCH_SUFFIX="patch" \
		epatch "${WORKDIR}"/patches

	# Accumulated fixes for bugs
	#    #154797: Respect CC and CFLAGS
	#    #253412: Respect LDFLAGS
	#    #247969: Link order for --as-needed 
	epatch "${FILESDIR}"/${P}-respect-user-flags-and-fix-asneeded.patch

	# Reflect init script implementation
	epatch "${FILESDIR}"/${P}-fix-man-pages.patch

	# Use Gentoo specific maps, init script and config file
	for i in home master misc; do
		if [ -e samples/auto.${i} ]; then
			mv samples/auto.${i}{,.bak} || die "Failed to backup auto.${i}"
		fi
		ln -s "${S}/${UPSTREAM_FILESDIR}"/auto.${i} samples/auto.${i} || \
			die "Failed to symlink auto.${i}"
	done

	# Clean-up maps and disable everything.
	epatch "${FILESDIR}"/${P}-clean-up-maps.patch

	# Fix installation path of ldap samples and maps
	epatch "${FILESDIR}"/${P}-fix-install-ldap-samples-and-maps.patch

	epatch "${FILESDIR}"/${P}-init.patch #Fix init script deps

	# Do not include <nfs/nfs.h>, rather <linux/nfs.h>,
	# as the former is a lame header for the latter (bug #157968)
	sed 's@nfs/nfs.h@linux/nfs.h@' -i lib/rpc_subs.c || die

	eautoreconf
}

src_configure() {
	econf \
		$(use_with ldap openldap) \
		$(use_with hesiod)
}

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

	dodoc README* CHANGELOG CREDITS COPYRIGHT

	newinitd ${UPSTREAM_FILESDIR}/${PN}.init ${PN}
	newconfd ${UPSTREAM_FILESDIR}/${PN}.conf ${PN}
}

pkg_postinst() {
	elog "If you plan on using autofs for automounting remote NFS mounts,"
	elog "please check that both portmap (or rpcbind) and rpc.statd/lockd"
	elog "are running."
	elog
	elog "Also the normal autofs status has been renamed stats"
	elog "as there is already a predefined Gentoo status"
	if use ldap; then
		elog
		elog "Sample files for ldap have been installed into"
		elog "${PREFIX}/usr/share/share/doc/${P}/samples."
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-4.1.4.ebuild
@ 2011-05-12 15:38 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeremy Olexa (darkside) @ 2011-05-12 15:38 UTC (permalink / raw
  To: gentoo-commits

darkside    11/05/12 15:38:22

  Modified:             ChangeLog
  Removed:              autofs-4.1.4.ebuild
  Log:
  QA: remove version with non-fetchable patchball
  
  (Portage version: 2.1.9.46/cvs/Linux i686)

Revision  Changes    Path
1.105                net-fs/autofs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	30 Apr 2011 18:20:50 -0000	1.104
+++ ChangeLog	12 May 2011 15:38:22 -0000	1.105
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/autofs
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.104 2011/04/30 18:20:50 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.105 2011/05/12 15:38:22 darkside Exp $
+
+  12 May 2011; Jeremy Olexa <darkside@gentoo.org> -autofs-4.1.4.ebuild:
+  QA: remove version with non-fetchable patchball
 
 *autofs-5.0.5-r3 (30 Apr 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-4.1.4.ebuild
@ 2011-05-15 10:58 Peter Volkov (pva)
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Volkov (pva) @ 2011-05-15 10:58 UTC (permalink / raw
  To: gentoo-commits

pva         11/05/15 10:58:21

  Modified:             ChangeLog
  Added:                autofs-4.1.4.ebuild
  Log:
  Revert QA removal, bug #324961, thank Dustin Polke for report.
  
  (Portage version: 2.1.9.49/cvs/Linux x86_64)

Revision  Changes    Path
1.106                net-fs/autofs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	12 May 2011 15:38:22 -0000	1.105
+++ ChangeLog	15 May 2011 10:58:21 -0000	1.106
@@ -1,9 +1,6 @@
 # ChangeLog for net-fs/autofs
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.105 2011/05/12 15:38:22 darkside Exp $
-
-  12 May 2011; Jeremy Olexa <darkside@gentoo.org> -autofs-4.1.4.ebuild:
-  QA: remove version with non-fetchable patchball
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.106 2011/05/15 10:58:21 pva Exp $
 
 *autofs-5.0.5-r3 (30 Apr 2011)
 



1.4                  net-fs/autofs/autofs-4.1.4.ebuild

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







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

* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-4.1.4.ebuild
@ 2011-07-24 13:02 Peter Volkov (pva)
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Volkov (pva) @ 2011-07-24 13:02 UTC (permalink / raw
  To: gentoo-commits

pva         11/07/24 13:02:59

  Modified:             ChangeLog autofs-4.1.4.ebuild
  Log:
  Add addpredict to 4.1.4 to fix issue reported by David Abbott in bug #374887.
  
  (Portage version: 2.1.10.6/cvs/Linux x86_64)

Revision  Changes    Path
1.116                net-fs/autofs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog	24 Jul 2011 10:56:01 -0000	1.115
+++ ChangeLog	24 Jul 2011 13:02:59 -0000	1.116
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/autofs
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.115 2011/07/24 10:56:01 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.116 2011/07/24 13:02:59 pva Exp $
+
+  24 Jul 2011; Peter Volkov <pva@gentoo.org> autofs-4.1.4.ebuild:
+  Add addpredict to 4.1.4 to fix issue reported by David Abbott in bug #374887.
 
   24 Jul 2011; Raúl Porcel <armin76@gentoo.org> autofs-5.0.5-r4.ebuild:
   alpha/ia64/sparc stable wrt #372835



1.5                  net-fs/autofs/autofs-4.1.4.ebuild

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

Index: autofs-4.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- autofs-4.1.4.ebuild	15 May 2011 10:58:21 -0000	1.4
+++ autofs-4.1.4.ebuild	24 Jul 2011 13:02:59 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v 1.4 2011/05/15 10:58:21 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v 1.5 2011/07/24 13:02:59 pva Exp $
 
 EAPI="4"
 
@@ -61,6 +61,10 @@
 }
 
 src_configure() {
+	# work around bug #355975 (mount modifies timestamp of /etc/mtab)
+	# with >=sys-apps/util-linux-2.19,
+	addpredict "/etc/mtab"
+
 	econf \
 		$(use_with ldap openldap) \
 		$(use_with hesiod)






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

* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-4.1.4.ebuild
@ 2011-08-02 18:29 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-08-02 18:29 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/08/02 18:29:39

  Modified:             ChangeLog autofs-4.1.4.ebuild
  Log:
  Stable on amd64 wrt bug #374887
  
  (Portage version: 2.2.0_alpha46/cvs/Linux x86_64)

Revision  Changes    Path
1.117                net-fs/autofs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog	24 Jul 2011 13:02:59 -0000	1.116
+++ ChangeLog	2 Aug 2011 18:29:39 -0000	1.117
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/autofs
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.116 2011/07/24 13:02:59 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.117 2011/08/02 18:29:39 hwoarang Exp $
+
+  02 Aug 2011; Markos Chandras <hwoarang@gentoo.org> autofs-4.1.4.ebuild:
+  Stable on amd64 wrt bug #374887
 
   24 Jul 2011; Peter Volkov <pva@gentoo.org> autofs-4.1.4.ebuild:
   Add addpredict to 4.1.4 to fix issue reported by David Abbott in bug #374887.



1.6                  net-fs/autofs/autofs-4.1.4.ebuild

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

Index: autofs-4.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- autofs-4.1.4.ebuild	24 Jul 2011 13:02:59 -0000	1.5
+++ autofs-4.1.4.ebuild	2 Aug 2011 18:29:39 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v 1.5 2011/07/24 13:02:59 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v 1.6 2011/08/02 18:29:39 hwoarang Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="hesiod ldap"
 
 DEPEND="hesiod? ( net-dns/hesiod )






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

* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-4.1.4.ebuild
@ 2011-09-04 10:06 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2011-09-04 10:06 UTC (permalink / raw
  To: gentoo-commits

maekke      11/09/04 10:06:12

  Modified:             ChangeLog autofs-4.1.4.ebuild
  Log:
  x86 stable, bug #374887
  
  (Portage version: 2.1.10.12/cvs/Linux x86_64)

Revision  Changes    Path
1.121                net-fs/autofs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog	24 Aug 2011 19:11:29 -0000	1.120
+++ ChangeLog	4 Sep 2011 10:06:12 -0000	1.121
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/autofs
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.120 2011/08/24 19:11:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.121 2011/09/04 10:06:12 maekke Exp $
+
+  04 Sep 2011; Markus Meier <maekke@gentoo.org> autofs-4.1.4.ebuild:
+  x86 stable, bug #374887
 
   24 Aug 2011; Markus Meier <maekke@gentoo.org> autofs-5.0.6-r1.ebuild:
   x86 stable, bug #379569



1.7                  net-fs/autofs/autofs-4.1.4.ebuild

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

Index: autofs-4.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- autofs-4.1.4.ebuild	2 Aug 2011 18:29:39 -0000	1.6
+++ autofs-4.1.4.ebuild	4 Sep 2011 10:06:12 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v 1.6 2011/08/02 18:29:39 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v 1.7 2011/09/04 10:06:12 maekke Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="hesiod ldap"
 
 DEPEND="hesiod? ( net-dns/hesiod )






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

* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-4.1.4.ebuild
@ 2011-09-21  0:44 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2011-09-21  0:44 UTC (permalink / raw
  To: gentoo-commits

jer         11/09/21 00:44:45

  Modified:             ChangeLog autofs-4.1.4.ebuild
  Log:
  Stable for HPPA (bug #374887).
  
  (Portage version: 2.2.0_alpha59/cvs/Linux x86_64)

Revision  Changes    Path
1.128                net-fs/autofs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog	19 Sep 2011 12:23:21 -0000	1.127
+++ ChangeLog	21 Sep 2011 00:44:45 -0000	1.128
@@ -1,6 +1,9 @@
 # ChangeLog for net-fs/autofs
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.127 2011/09/19 12:23:21 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.128 2011/09/21 00:44:45 jer Exp $
+
+  21 Sep 2011; Jeroen Roovers <jer@gentoo.org> autofs-4.1.4.ebuild:
+  Stable for HPPA (bug #374887).
 
   19 Sep 2011; Peter Volkov <pva@gentoo.org> autofs-5.0.6-r2.ebuild:
   Drop <glibc-2.14 depend as rpc headers are now back into glibc, bug 374403



1.8                  net-fs/autofs/autofs-4.1.4.ebuild

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

Index: autofs-4.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- autofs-4.1.4.ebuild	4 Sep 2011 10:06:12 -0000	1.7
+++ autofs-4.1.4.ebuild	21 Sep 2011 00:44:45 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v 1.7 2011/09/04 10:06:12 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v 1.8 2011/09/21 00:44:45 jer Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="hesiod ldap"
 
 DEPEND="hesiod? ( net-dns/hesiod )






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

end of thread, other threads:[~2011-09-21  0:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-24 13:02 [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-4.1.4.ebuild Peter Volkov (pva)
  -- strict thread matches above, loose matches on Subject: below --
2011-09-21  0:44 Jeroen Roovers (jer)
2011-09-04 10:06 Markus Meier (maekke)
2011-08-02 18:29 Markos Chandras (hwoarang)
2011-05-15 10:58 Peter Volkov (pva)
2011-05-12 15:38 Jeremy Olexa (darkside)
2011-04-06 14:10 Peter Volkov (pva)

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