public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-fs/quota: ChangeLog quota-3.17-r1.ebuild
@ 2011-03-03  7:26 Justin Lecher (jlec)
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher (jlec) @ 2011-03-03  7:26 UTC (permalink / raw
  To: gentoo-commits

jlec        11/03/03 07:26:27

  Modified:             ChangeLog
  Added:                quota-3.17-r1.ebuild
  Log:
  Add check() to initscript, #357089
  
  (Portage version: 2.2.0_alpha26/cvs/Linux x86_64)

Revision  Changes    Path
1.50                 sys-fs/quota/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	26 Feb 2011 16:49:17 -0000	1.49
+++ ChangeLog	3 Mar 2011 07:26:27 -0000	1.50
@@ -1,6 +1,12 @@
 # ChangeLog for sys-fs/quota
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.49 2011/02/26 16:49:17 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.50 2011/03/03 07:26:27 jlec Exp $
+
+*quota-3.17-r1 (03 Mar 2011)
+
+  03 Mar 2011; Justin Lecher <jlec@gentoo.org> +quota-3.17-r1.ebuild,
+  +files/quota.rc7:
+  Add check() to initscript, #357089
 
   26 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> quota-3.17.ebuild:
   Marked ~ppc64 wrt #340455



1.1                  sys-fs/quota/quota-3.17-r1.ebuild

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

Index: quota-3.17-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v 1.1 2011/03/03 07:26:27 jlec Exp $

inherit eutils flag-o-matic

DESCRIPTION="Linux quota tools"
HOMEPAGE="http://sourceforge.net/projects/linuxquota/"
SRC_URI="mirror://sourceforge/linuxquota/${P}.tar.gz"

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

RDEPEND="ldap? ( >=net-nds/openldap-2.3.35 )
	tcpd? ( sys-apps/tcp-wrappers )
	rpc? ( || ( net-nds/portmap net-nds/rpcbind ) )"
DEPEND="${RDEPEND}
	nls? ( sys-devel/gettext )"

S=${WORKDIR}/quota-tools

src_unpack() {
	unpack ${A}
	cd "${S}"

	# patch to prevent quotactl.2 manpage from being installed
	# that page is provided by man-pages instead
	epatch "${FILESDIR}"/${PN}-no-quotactl-manpage.patch

	# This was for openldap-2.2 support before,
	# Now we only support >=2.3
	append-cppflags -DLDAP_DEPRECATED=0

	sed -i -e "s:,LIBS=\"\$saved_LIBS=\":;LIBS=\"\$saved_LIBS\":" configure
}

src_compile() {
	econf \
		$(use_enable nls) \
		$(use_enable ldap ldapmail) \
		$(use_enable rpc) \
		$(use_enable rpc rpcsetquota) \
		|| die
	emake || die
}

src_install() {
	emake STRIP="" ROOTDIR="${D}" install || die
	rm -r "${D}"/usr/include || die #70938

	insinto /etc
	insopts -m0644
	doins warnquota.conf quotatab

	dodoc doc/*
	dodoc README.*
	dodoc Changelog

	newinitd "${FILESDIR}"/quota.rc7 quota
	newconfd "${FILESDIR}"/quota.confd quota

	if use rpc ; then
		newinitd "${FILESDIR}"/rpc.rquotad.initd rpc.rquotad
	else
		rm -f "${D}"/usr/sbin/rpc.rquotad
	fi

	if use ldap ; then
		insinto /etc/openldap/schema
		insopts -m0644
		doins ldap-scripts/quota.schema

		exeinto /usr/share/quota/ldap-scripts
		doexe ldap-scripts/*.pl
		doexe ldap-scripts/edquota_editor
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/quota: ChangeLog quota-3.17-r1.ebuild
@ 2011-04-26 11:33 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-04-26 11:33 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/04/26 11:33:49

  Modified:             ChangeLog quota-3.17-r1.ebuild
  Log:
  Stable on amd64 wrt bug #364361
  
  (Portage version: 2.1.9.44/cvs/Linux x86_64)

Revision  Changes    Path
1.54                 sys-fs/quota/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	22 Apr 2011 09:59:18 -0000	1.53
+++ ChangeLog	26 Apr 2011 11:33:49 -0000	1.54
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/quota
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.53 2011/04/22 09:59:18 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.54 2011/04/26 11:33:49 hwoarang Exp $
+
+  26 Apr 2011; Markos Chandras <hwoarang@gentoo.org> quota-3.17-r1.ebuild:
+  Stable on amd64 wrt bug #364361
 
   22 Apr 2011; Justin Lecher <jlec@gentoo.org> quota-3.17.ebuild,
   quota-3.17-r1.ebuild:



1.3                  sys-fs/quota/quota-3.17-r1.ebuild

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

Index: quota-3.17-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- quota-3.17-r1.ebuild	22 Apr 2011 09:59:18 -0000	1.2
+++ quota-3.17-r1.ebuild	26 Apr 2011 11:33:49 -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/sys-fs/quota/quota-3.17-r1.ebuild,v 1.2 2011/04/22 09:59:18 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v 1.3 2011/04/26 11:33:49 hwoarang Exp $
 
 inherit eutils flag-o-matic
 
@@ -10,7 +10,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="nls tcpd ldap rpc"
 
 RDEPEND="ldap? ( >=net-nds/openldap-2.3.35 )






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/quota: ChangeLog quota-3.17-r1.ebuild
@ 2011-05-01 12:26 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-05-01 12:26 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/05/01 12:26:53

  Modified:             ChangeLog quota-3.17-r1.ebuild
  Log:
  ppc/ppc64 stable wrt #364361
  
  (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)

Revision  Changes    Path
1.55                 sys-fs/quota/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	26 Apr 2011 11:33:49 -0000	1.54
+++ ChangeLog	1 May 2011 12:26:53 -0000	1.55
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/quota
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.54 2011/04/26 11:33:49 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.55 2011/05/01 12:26:53 xarthisius Exp $
+
+  01 May 2011; Kacper Kowalik <xarthisius@gentoo.org> quota-3.17-r1.ebuild:
+  ppc/ppc64 stable wrt #364361
 
   26 Apr 2011; Markos Chandras <hwoarang@gentoo.org> quota-3.17-r1.ebuild:
   Stable on amd64 wrt bug #364361



1.4                  sys-fs/quota/quota-3.17-r1.ebuild

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

Index: quota-3.17-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- quota-3.17-r1.ebuild	26 Apr 2011 11:33:49 -0000	1.3
+++ quota-3.17-r1.ebuild	1 May 2011 12:26:53 -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/sys-fs/quota/quota-3.17-r1.ebuild,v 1.3 2011/04/26 11:33:49 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v 1.4 2011/05/01 12:26:53 xarthisius Exp $
 
 inherit eutils flag-o-matic
 
@@ -10,7 +10,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="nls tcpd ldap rpc"
 
 RDEPEND="ldap? ( >=net-nds/openldap-2.3.35 )






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/quota: ChangeLog quota-3.17-r1.ebuild
@ 2011-05-09  8:37 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 7+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-05-09  8:37 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/05/09 08:37:33

  Modified:             ChangeLog quota-3.17-r1.ebuild
  Log:
  x86 stable wrt bug #364361
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.56                 sys-fs/quota/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	1 May 2011 12:26:53 -0000	1.55
+++ ChangeLog	9 May 2011 08:37:33 -0000	1.56
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/quota
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.55 2011/05/01 12:26:53 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.56 2011/05/09 08:37:33 phajdan.jr Exp $
+
+  09 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> quota-3.17-r1.ebuild:
+  x86 stable wrt bug #364361
 
   01 May 2011; Kacper Kowalik <xarthisius@gentoo.org> quota-3.17-r1.ebuild:
   ppc/ppc64 stable wrt #364361



1.5                  sys-fs/quota/quota-3.17-r1.ebuild

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

Index: quota-3.17-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- quota-3.17-r1.ebuild	1 May 2011 12:26:53 -0000	1.4
+++ quota-3.17-r1.ebuild	9 May 2011 08:37:33 -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/sys-fs/quota/quota-3.17-r1.ebuild,v 1.4 2011/05/01 12:26:53 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v 1.5 2011/05/09 08:37:33 phajdan.jr Exp $
 
 inherit eutils flag-o-matic
 
@@ -10,7 +10,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="nls tcpd ldap rpc"
 
 RDEPEND="ldap? ( >=net-nds/openldap-2.3.35 )






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/quota: ChangeLog quota-3.17-r1.ebuild
@ 2011-05-13 14:51 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2011-05-13 14:51 UTC (permalink / raw
  To: gentoo-commits

jer         11/05/13 14:51:06

  Modified:             ChangeLog quota-3.17-r1.ebuild
  Log:
  Stable for HPPA (bug #364361).
  
  (Portage version: 2.2.0_alpha33/cvs/Linux i686)

Revision  Changes    Path
1.57                 sys-fs/quota/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	9 May 2011 08:37:33 -0000	1.56
+++ ChangeLog	13 May 2011 14:51:06 -0000	1.57
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/quota
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.56 2011/05/09 08:37:33 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.57 2011/05/13 14:51:06 jer Exp $
+
+  13 May 2011; Jeroen Roovers <jer@gentoo.org> quota-3.17-r1.ebuild:
+  Stable for HPPA (bug #364361).
 
   09 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> quota-3.17-r1.ebuild:
   x86 stable wrt bug #364361



1.6                  sys-fs/quota/quota-3.17-r1.ebuild

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

Index: quota-3.17-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- quota-3.17-r1.ebuild	9 May 2011 08:37:33 -0000	1.5
+++ quota-3.17-r1.ebuild	13 May 2011 14:51:06 -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/sys-fs/quota/quota-3.17-r1.ebuild,v 1.5 2011/05/09 08:37:33 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v 1.6 2011/05/13 14:51:06 jer Exp $
 
 inherit eutils flag-o-matic
 
@@ -10,7 +10,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="nls tcpd ldap rpc"
 
 RDEPEND="ldap? ( >=net-nds/openldap-2.3.35 )






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/quota: ChangeLog quota-3.17-r1.ebuild
@ 2011-05-15 21:02 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2011-05-15 21:02 UTC (permalink / raw
  To: gentoo-commits

maekke      11/05/15 21:02:20

  Modified:             ChangeLog quota-3.17-r1.ebuild
  Log:
  arm stable, bug #364361
  
  (Portage version: 2.1.9.49/cvs/Linux i686)

Revision  Changes    Path
1.58                 sys-fs/quota/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog	13 May 2011 14:51:06 -0000	1.57
+++ ChangeLog	15 May 2011 21:02:20 -0000	1.58
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/quota
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.57 2011/05/13 14:51:06 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.58 2011/05/15 21:02:20 maekke Exp $
+
+  15 May 2011; Markus Meier <maekke@gentoo.org> quota-3.17-r1.ebuild:
+  arm stable, bug #364361
 
   13 May 2011; Jeroen Roovers <jer@gentoo.org> quota-3.17-r1.ebuild:
   Stable for HPPA (bug #364361).



1.7                  sys-fs/quota/quota-3.17-r1.ebuild

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

Index: quota-3.17-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- quota-3.17-r1.ebuild	13 May 2011 14:51:06 -0000	1.6
+++ quota-3.17-r1.ebuild	15 May 2011 21:02:20 -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/sys-fs/quota/quota-3.17-r1.ebuild,v 1.6 2011/05/13 14:51:06 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v 1.7 2011/05/15 21:02:20 maekke Exp $
 
 inherit eutils flag-o-matic
 
@@ -10,7 +10,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="nls tcpd ldap rpc"
 
 RDEPEND="ldap? ( >=net-nds/openldap-2.3.35 )






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/quota: ChangeLog quota-3.17-r1.ebuild
@ 2011-05-21 18:01 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2011-05-21 18:01 UTC (permalink / raw
  To: gentoo-commits

armin76     11/05/21 18:01:37

  Modified:             ChangeLog quota-3.17-r1.ebuild
  Log:
  alpha/ia64/sparc stable wrt #364361
  
  (Portage version: 2.1.9.49/cvs/Linux ia64)

Revision  Changes    Path
1.59                 sys-fs/quota/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	15 May 2011 21:02:20 -0000	1.58
+++ ChangeLog	21 May 2011 18:01:37 -0000	1.59
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/quota
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.58 2011/05/15 21:02:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/ChangeLog,v 1.59 2011/05/21 18:01:37 armin76 Exp $
+
+  21 May 2011; Raúl Porcel <armin76@gentoo.org> quota-3.17-r1.ebuild:
+  alpha/ia64/sparc stable wrt #364361
 
   15 May 2011; Markus Meier <maekke@gentoo.org> quota-3.17-r1.ebuild:
   arm stable, bug #364361



1.8                  sys-fs/quota/quota-3.17-r1.ebuild

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

Index: quota-3.17-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- quota-3.17-r1.ebuild	15 May 2011 21:02:20 -0000	1.7
+++ quota-3.17-r1.ebuild	21 May 2011 18:01:37 -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/sys-fs/quota/quota-3.17-r1.ebuild,v 1.7 2011/05/15 21:02:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/quota/quota-3.17-r1.ebuild,v 1.8 2011/05/21 18:01:37 armin76 Exp $
 
 inherit eutils flag-o-matic
 
@@ -10,7 +10,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="nls tcpd ldap rpc"
 
 RDEPEND="ldap? ( >=net-nds/openldap-2.3.35 )






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

end of thread, other threads:[~2011-05-21 18:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-26 11:33 [gentoo-commits] gentoo-x86 commit in sys-fs/quota: ChangeLog quota-3.17-r1.ebuild Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2011-05-21 18:01 Raul Porcel (armin76)
2011-05-15 21:02 Markus Meier (maekke)
2011-05-13 14:51 Jeroen Roovers (jer)
2011-05-09  8:37 PaweA Hajdan (phajdan.jr)
2011-05-01 12:26 Kacper Kowalik (xarthisius)
2011-03-03  7:26 Justin Lecher (jlec)

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