* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-5.0.5-r4.ebuild
@ 2011-05-23 8:29 Peter Volkov (pva)
0 siblings, 0 replies; 6+ messages in thread
From: Peter Volkov (pva) @ 2011-05-23 8:29 UTC (permalink / raw
To: gentoo-commits
pva 11/05/23 08:29:05
Modified: ChangeLog
Added: autofs-5.0.5-r4.ebuild
Log:
Bump to new upstream snapshot, bug #367533, thank Dustin Polke for this job.
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Revision Changes Path
1.108 net-fs/autofs/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?r1=1.107&r2=1.108
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog 15 May 2011 11:03:49 -0000 1.107
+++ ChangeLog 23 May 2011 08:29:05 -0000 1.108
@@ -1,6 +1,12 @@
# 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.107 2011/05/15 11:03:49 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.108 2011/05/23 08:29:05 pva Exp $
+
+*autofs-5.0.5-r4 (23 May 2011)
+
+ 23 May 2011; Peter Volkov <pva@gentoo.org> +files/autofs5-auto.master,
+ +autofs-5.0.5-r4.ebuild:
+ Bump to new upstream snapshot, bug #367533, thank Dustin Polke for this job.
15 May 2011; Peter Volkov <pva@gentoo.org> autofs-5.0.4-r5.ebuild:
Add fix for bug #355975 into stable.
1.1 net-fs/autofs/autofs-5.0.5-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.1&content-type=text/plain
Index: autofs-5.0.5-r4.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-5.0.5-r4.ebuild,v 1.1 2011/05/23 08:29:05 pva Exp $
EAPI="4"
inherit eutils multilib autotools linux-info
DESCRIPTION="Kernel based automounter"
HOMEPAGE="http://www.linux-consulting.com/Amd_AutoFS/autofs.html"
PATCH_VER="4"
SRC_URI="mirror://kernel/linux/daemons/${PN}/v5/${P}.tar.bz2
mirror://gentoo/${P}-patches-${PATCH_VER}.tar.lzma"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="hesiod ldap sasl"
# USE="sasl" adds SASL support to the LDAP module which will not be build. If
# SASL support should be available, please add "ldap" to the USE flags.
REQUIRED_USE="sasl? ( ldap )"
# currently, sasl code assumes the presence of kerberosV
RDEPEND="hesiod? ( net-dns/hesiod )
ldap? ( >=net-nds/openldap-2.0
sasl? ( dev-libs/cyrus-sasl
dev-libs/libxml2
virtual/krb5 ) )"
DEPEND="${RDEPEND}"
src_prepare() {
# Upstream's patchset
EPATCH_SUFFIX="patch" \
epatch "${WORKDIR}"/patches
# Fix for bug #210762
# Upstream reference: http://thread.gmane.org/gmane.linux.kernel.autofs/4203
epatch "${FILESDIR}"/${PN}-5.0.3-heimdal.patch
# 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-v1.patch
# 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 include/rpc_subs.h || die
# Upstream reference: http://thread.gmane.org/gmane.linux.kernel.autofs/5591
epatch "${FILESDIR}"/${P}-fix-building-without-sasl.patch
# Upstream reference: http://thread.gmane.org/gmane.linux.kernel.autofs/5371
epatch "${FILESDIR}"/${P}-fix-install-deadlink.patch
# Upstream reference: http://thread.gmane.org/gmane.linux.kernel.autofs/6039
# Disable LDAP specific code if USE="-ldap", let's see what upstream says...
epatch "${FILESDIR}"/${P}-fix-building-without-ldap.patch
# https://bugs.gentoo.org/show_bug.cgi?id=361899
epatch "${FILESDIR}"/${P}-add-missing-endif-HAVE_SASL-in-modules-lookup_ldap.c.patch
eautoreconf
}
src_configure() {
# work around bug #355975 (mount modifies timestamp of /etc/mtab)
# with >=sys-apps/util-linux-2.19,
addpredict "/etc/mtab"
# --with-confdir is for bug #361481
econf \
--with-confdir=/etc/conf.d \
$(use_with ldap openldap) \
$(use_with sasl) \
$(use_with hesiod) \
--enable-ignore-busy
}
src_install() {
emake DESTDIR="${D}" install
dodoc README* CHANGELOG CREDITS COPYRIGHT INSTALL
# kernel patches
docinto patches
dodoc patches/${PN}4-2.6.??{,.?{,?}}-v5-update-????????.patch
newinitd "${FILESDIR}"/autofs5.initd autofs
insinto etc/autofs
newins "${FILESDIR}"/autofs5-auto.master auto.master
}
pkg_postinst() {
if kernel_is -lt 2 6 30; then
elog "This version of ${PN} requires a kernel with autofs4 supporting"
elog "protocol version 5.00. Patches for kernels older than 2.6.30 have"
elog "been installed into"
elog "${EROOT}usr/share/doc/${P}/patches."
elog "For further instructions how to patch the kernel, please refer to"
elog "${EROOT}usr/share/doc/${P}/INSTALL."
elog
fi
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."
}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-5.0.5-r4.ebuild
@ 2011-06-25 20:01 Markos Chandras (hwoarang)
0 siblings, 0 replies; 6+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-06-25 20:01 UTC (permalink / raw
To: gentoo-commits
hwoarang 11/06/25 20:01:06
Modified: ChangeLog autofs-5.0.5-r4.ebuild
Log:
Stable on amd64 wrt bug #372835
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Revision Changes Path
1.110 net-fs/autofs/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?r1=1.109&r2=1.110
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog 20 Jun 2011 14:09:41 -0000 1.109
+++ ChangeLog 25 Jun 2011 20:01:06 -0000 1.110
@@ -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.109 2011/06/20 14:09:41 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.110 2011/06/25 20:01:06 hwoarang Exp $
+
+ 25 Jun 2011; Markos Chandras <hwoarang@gentoo.org> autofs-5.0.5-r4.ebuild:
+ Stable on amd64 wrt bug #372835
*autofs-5.0.5-r5 (20 Jun 2011)
1.2 net-fs/autofs/autofs-5.0.5-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?r1=1.1&r2=1.2
Index: autofs-5.0.5-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- autofs-5.0.5-r4.ebuild 23 May 2011 08:29:05 -0000 1.1
+++ autofs-5.0.5-r4.ebuild 25 Jun 2011 20:01:06 -0000 1.2
@@ -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-5.0.5-r4.ebuild,v 1.1 2011/05/23 08:29:05 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild,v 1.2 2011/06/25 20:01:06 hwoarang Exp $
EAPI="4"
inherit eutils multilib autotools linux-info
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="hesiod ldap sasl"
# USE="sasl" adds SASL support to the LDAP module which will not be build. If
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-5.0.5-r4.ebuild
@ 2011-07-10 10:29 Markus Meier (maekke)
0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2011-07-10 10:29 UTC (permalink / raw
To: gentoo-commits
maekke 11/07/10 10:29:57
Modified: ChangeLog autofs-5.0.5-r4.ebuild
Log:
arm stable, bug #372835
(Portage version: 2.1.10.4/cvs/Linux i686)
Revision Changes Path
1.113 net-fs/autofs/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?r1=1.112&r2=1.113
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog 1 Jul 2011 11:24:07 -0000 1.112
+++ ChangeLog 10 Jul 2011 10:29:57 -0000 1.113
@@ -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.112 2011/07/01 11:24:07 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.113 2011/07/10 10:29:57 maekke Exp $
+
+ 10 Jul 2011; Markus Meier <maekke@gentoo.org> autofs-5.0.5-r4.ebuild:
+ arm stable, bug #372835
*autofs-5.0.6-r1 (01 Jul 2011)
1.3 net-fs/autofs/autofs-5.0.5-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?r1=1.2&r2=1.3
Index: autofs-5.0.5-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- autofs-5.0.5-r4.ebuild 25 Jun 2011 20:01:06 -0000 1.2
+++ autofs-5.0.5-r4.ebuild 10 Jul 2011 10:29:57 -0000 1.3
@@ -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-5.0.5-r4.ebuild,v 1.2 2011/06/25 20:01:06 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild,v 1.3 2011/07/10 10:29:57 maekke Exp $
EAPI="4"
inherit eutils multilib autotools linux-info
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="hesiod ldap sasl"
# USE="sasl" adds SASL support to the LDAP module which will not be build. If
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-5.0.5-r4.ebuild
@ 2011-07-15 20:15 Markus Meier (maekke)
0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2011-07-15 20:15 UTC (permalink / raw
To: gentoo-commits
maekke 11/07/15 20:15:35
Modified: ChangeLog autofs-5.0.5-r4.ebuild
Log:
x86 stable, bug #372835
(Portage version: 2.1.10.4/cvs/Linux x86_64)
Revision Changes Path
1.114 net-fs/autofs/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.114&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.114&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?r1=1.113&r2=1.114
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog 10 Jul 2011 10:29:57 -0000 1.113
+++ ChangeLog 15 Jul 2011 20:15:35 -0000 1.114
@@ -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.113 2011/07/10 10:29:57 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.114 2011/07/15 20:15:35 maekke Exp $
+
+ 15 Jul 2011; Markus Meier <maekke@gentoo.org> autofs-5.0.5-r4.ebuild:
+ x86 stable, bug #372835
10 Jul 2011; Markus Meier <maekke@gentoo.org> autofs-5.0.5-r4.ebuild:
arm stable, bug #372835
1.4 net-fs/autofs/autofs-5.0.5-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?r1=1.3&r2=1.4
Index: autofs-5.0.5-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- autofs-5.0.5-r4.ebuild 10 Jul 2011 10:29:57 -0000 1.3
+++ autofs-5.0.5-r4.ebuild 15 Jul 2011 20:15:35 -0000 1.4
@@ -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-5.0.5-r4.ebuild,v 1.3 2011/07/10 10:29:57 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild,v 1.4 2011/07/15 20:15:35 maekke Exp $
EAPI="4"
inherit eutils multilib autotools linux-info
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
IUSE="hesiod ldap sasl"
# USE="sasl" adds SASL support to the LDAP module which will not be build. If
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-5.0.5-r4.ebuild
@ 2011-07-24 10:56 Raul Porcel (armin76)
0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2011-07-24 10:56 UTC (permalink / raw
To: gentoo-commits
armin76 11/07/24 10:56:01
Modified: ChangeLog autofs-5.0.5-r4.ebuild
Log:
alpha/ia64/sparc stable wrt #372835
(Portage version: 2.1.10.7/cvs/Linux ia64)
Revision Changes Path
1.115 net-fs/autofs/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.115&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.115&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?r1=1.114&r2=1.115
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog 15 Jul 2011 20:15:35 -0000 1.114
+++ ChangeLog 24 Jul 2011 10:56:01 -0000 1.115
@@ -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.114 2011/07/15 20:15:35 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.115 2011/07/24 10:56:01 armin76 Exp $
+
+ 24 Jul 2011; Raúl Porcel <armin76@gentoo.org> autofs-5.0.5-r4.ebuild:
+ alpha/ia64/sparc stable wrt #372835
15 Jul 2011; Markus Meier <maekke@gentoo.org> autofs-5.0.5-r4.ebuild:
x86 stable, bug #372835
1.5 net-fs/autofs/autofs-5.0.5-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?r1=1.4&r2=1.5
Index: autofs-5.0.5-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- autofs-5.0.5-r4.ebuild 15 Jul 2011 20:15:35 -0000 1.4
+++ autofs-5.0.5-r4.ebuild 24 Jul 2011 10:56:01 -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-5.0.5-r4.ebuild,v 1.4 2011/07/15 20:15:35 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild,v 1.5 2011/07/24 10:56:01 armin76 Exp $
EAPI="4"
inherit eutils multilib autotools linux-info
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86"
IUSE="hesiod ldap sasl"
# USE="sasl" adds SASL support to the LDAP module which will not be build. If
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-5.0.5-r4.ebuild
@ 2011-08-05 20:14 Jeroen Roovers (jer)
0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2011-08-05 20:14 UTC (permalink / raw
To: gentoo-commits
jer 11/08/05 20:14:19
Modified: ChangeLog autofs-5.0.5-r4.ebuild
Log:
Stable for HPPA (bug #372835).
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Revision Changes Path
1.118 net-fs/autofs/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.118&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.118&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/ChangeLog?r1=1.117&r2=1.118
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog 2 Aug 2011 18:29:39 -0000 1.117
+++ ChangeLog 5 Aug 2011 20:14:18 -0000 1.118
@@ -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.117 2011/08/02 18:29:39 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.118 2011/08/05 20:14:18 jer Exp $
+
+ 05 Aug 2011; Jeroen Roovers <jer@gentoo.org> autofs-5.0.5-r4.ebuild:
+ Stable for HPPA (bug #372835).
02 Aug 2011; Markos Chandras <hwoarang@gentoo.org> autofs-4.1.4.ebuild:
Stable on amd64 wrt bug #374887
1.6 net-fs/autofs/autofs-5.0.5-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild?r1=1.5&r2=1.6
Index: autofs-5.0.5-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- autofs-5.0.5-r4.ebuild 24 Jul 2011 10:56:01 -0000 1.5
+++ autofs-5.0.5-r4.ebuild 5 Aug 2011 20:14:18 -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-5.0.5-r4.ebuild,v 1.5 2011/07/24 10:56:01 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.5-r4.ebuild,v 1.6 2011/08/05 20:14:18 jer Exp $
EAPI="4"
inherit eutils multilib autotools linux-info
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 sparc x86"
IUSE="hesiod ldap sasl"
# USE="sasl" adds SASL support to the LDAP module which will not be build. If
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-08-05 20:14 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-10 10:29 [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-5.0.5-r4.ebuild Markus Meier (maekke)
-- strict thread matches above, loose matches on Subject: below --
2011-08-05 20:14 Jeroen Roovers (jer)
2011-07-24 10:56 Raul Porcel (armin76)
2011-07-15 20:15 Markus Meier (maekke)
2011-06-25 20:01 Markos Chandras (hwoarang)
2011-05-23 8:29 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