public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-auth/munge: munge-0.5.9.ebuild ChangeLog
@ 2010-12-04 18:22 Justin Bronder (jsbronder)
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Bronder (jsbronder) @ 2010-12-04 18:22 UTC (permalink / raw
  To: gentoo-commits

jsbronder    10/12/04 18:22:24

  Modified:             munge-0.5.9.ebuild ChangeLog
  Log:
  Conditionally remove unnecessary directories; they're only created if certain directories already exist in /etc.  #346683
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sys-auth/munge/munge-0.5.9.ebuild

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

Index: munge-0.5.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- munge-0.5.9.ebuild	14 Nov 2010 23:04:40 -0000	1.1
+++ munge-0.5.9.ebuild	4 Dec 2010 18:22:24 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.1 2010/11/14 23:04:40 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.2 2010/12/04 18:22:24 jsbronder Exp $
 
 EAPI=3
 inherit eutils
@@ -53,7 +53,9 @@
 	diropts -o munge -g munge -m700
 	dodir /var/log/munge || die
 
-	rm -r "${D}"/etc/{init.d,default} || die
+	[ -d "${D}"/etc/init.d ] && rm -r "${D}"/etc/init.d
+	[ -d "${D}"/etc/default ] && rm -r "${D}"/etc/default
+	[ -d "${D}"/etc/sysconfig ] && rm -r "${D}"/etc/sysconfig
 
 	newconfd "${FILESDIR}"/${PN}d.confd ${PN}d || die
 	newinitd "${FILESDIR}"/${PN}d.initd ${PN}d || die



1.2                  sys-auth/munge/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	14 Nov 2010 23:04:40 -0000	1.1
+++ ChangeLog	4 Dec 2010 18:22:24 -0000	1.2
@@ -1,6 +1,10 @@
 # ChangeLog for sys-auth/munge
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.1 2010/11/14 23:04:40 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.2 2010/12/04 18:22:24 jsbronder Exp $
+
+  04 Dec 2010; Justin Bronder <jsbronder@gentoo.org> munge-0.5.9.ebuild:
+  Conditionally remove unnecessary directories; they're only created if certain
+  directories already exist in /etc. #346683
 
 *munge-0.5.9 (14 Nov 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in sys-auth/munge: munge-0.5.9.ebuild ChangeLog
@ 2010-12-06  0:42 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-12-06  0:42 UTC (permalink / raw
  To: gentoo-commits

jer         10/12/06 00:42:45

  Modified:             munge-0.5.9.ebuild ChangeLog
  Log:
  Marked ~hppa (bug #345465).
  
  (Portage version: 2.1.9.25/cvs/Linux i686)

Revision  Changes    Path
1.3                  sys-auth/munge/munge-0.5.9.ebuild

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

Index: munge-0.5.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- munge-0.5.9.ebuild	4 Dec 2010 18:22:24 -0000	1.2
+++ munge-0.5.9.ebuild	6 Dec 2010 00:42:45 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.2 2010/12/04 18:22:24 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.3 2010/12/06 00:42:45 jer Exp $
 
 EAPI=3
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~hppa ~x86"
 IUSE="gcrypt"
 
 DEPEND="app-arch/bzip2



1.3                  sys-auth/munge/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	4 Dec 2010 18:22:24 -0000	1.2
+++ ChangeLog	6 Dec 2010 00:42:45 -0000	1.3
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/munge
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.2 2010/12/04 18:22:24 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.3 2010/12/06 00:42:45 jer Exp $
+
+  06 Dec 2010; Jeroen Roovers <jer@gentoo.org> munge-0.5.9.ebuild:
+  Marked ~hppa (bug #345465).
 
   04 Dec 2010; Justin Bronder <jsbronder@gentoo.org> munge-0.5.9.ebuild:
   Conditionally remove unnecessary directories; they're only created if certain






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

* [gentoo-commits] gentoo-x86 commit in sys-auth/munge: munge-0.5.9.ebuild ChangeLog
@ 2010-12-06  3:02 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-12-06  3:02 UTC (permalink / raw
  To: gentoo-commits

jer         10/12/06 03:02:05

  Modified:             munge-0.5.9.ebuild ChangeLog
  Log:
  Marked ~ppc (bug #345465).
  
  (Portage version: 2.1.9.25/cvs/Linux i686)

Revision  Changes    Path
1.4                  sys-auth/munge/munge-0.5.9.ebuild

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

Index: munge-0.5.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- munge-0.5.9.ebuild	6 Dec 2010 00:42:45 -0000	1.3
+++ munge-0.5.9.ebuild	6 Dec 2010 03:02:05 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.3 2010/12/06 00:42:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.4 2010/12/06 03:02:05 jer Exp $
 
 EAPI=3
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
 IUSE="gcrypt"
 
 DEPEND="app-arch/bzip2



1.4                  sys-auth/munge/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	6 Dec 2010 00:42:45 -0000	1.3
+++ ChangeLog	6 Dec 2010 03:02:05 -0000	1.4
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/munge
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.3 2010/12/06 00:42:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.4 2010/12/06 03:02:05 jer Exp $
+
+  06 Dec 2010; Jeroen Roovers <jer@gentoo.org> munge-0.5.9.ebuild:
+  Marked ~ppc (bug #345465).
 
   06 Dec 2010; Jeroen Roovers <jer@gentoo.org> munge-0.5.9.ebuild:
   Marked ~hppa (bug #345465).






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

* [gentoo-commits] gentoo-x86 commit in sys-auth/munge: munge-0.5.9.ebuild ChangeLog
@ 2010-12-26  6:02 Matt Turner (mattst88)
  0 siblings, 0 replies; 7+ messages in thread
From: Matt Turner (mattst88) @ 2010-12-26  6:02 UTC (permalink / raw
  To: gentoo-commits

mattst88    10/12/26 06:02:33

  Modified:             munge-0.5.9.ebuild ChangeLog
  Log:
  Added ~mips, bug 345465
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  sys-auth/munge/munge-0.5.9.ebuild

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

Index: munge-0.5.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- munge-0.5.9.ebuild	6 Dec 2010 03:02:05 -0000	1.4
+++ munge-0.5.9.ebuild	26 Dec 2010 06:02:33 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.4 2010/12/06 03:02:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.5 2010/12/26 06:02:33 mattst88 Exp $
 
 EAPI=3
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+KEYWORDS="~amd64 ~hppa ~mips ~ppc ~x86"
 IUSE="gcrypt"
 
 DEPEND="app-arch/bzip2



1.5                  sys-auth/munge/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	6 Dec 2010 03:02:05 -0000	1.4
+++ ChangeLog	26 Dec 2010 06:02:33 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/munge
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.4 2010/12/06 03:02:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.5 2010/12/26 06:02:33 mattst88 Exp $
+
+  26 Dec 2010; Matt Turner <mattst88@gentoo.org> munge-0.5.9.ebuild:
+  Added ~mips, bug 345465
 
   06 Dec 2010; Jeroen Roovers <jer@gentoo.org> munge-0.5.9.ebuild:
   Marked ~ppc (bug #345465).






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

* [gentoo-commits] gentoo-x86 commit in sys-auth/munge: munge-0.5.9.ebuild ChangeLog
@ 2011-01-04  0:37 Michael Weber (xmw)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Weber (xmw) @ 2011-01-04  0:37 UTC (permalink / raw
  To: gentoo-commits

xmw         11/01/04 00:37:20

  Modified:             munge-0.5.9.ebuild ChangeLog
  Log:
  added ~sparc (bug 345465)
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  sys-auth/munge/munge-0.5.9.ebuild

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

Index: munge-0.5.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- munge-0.5.9.ebuild	26 Dec 2010 06:02:33 -0000	1.5
+++ munge-0.5.9.ebuild	4 Jan 2011 00:37:20 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.5 2010/12/26 06:02:33 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.6 2011/01/04 00:37:20 xmw Exp $
 
 EAPI=3
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~mips ~ppc ~x86"
+KEYWORDS="~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
 IUSE="gcrypt"
 
 DEPEND="app-arch/bzip2



1.6                  sys-auth/munge/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	26 Dec 2010 06:02:33 -0000	1.5
+++ ChangeLog	4 Jan 2011 00:37:20 -0000	1.6
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/munge
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.5 2010/12/26 06:02:33 mattst88 Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.6 2011/01/04 00:37:20 xmw Exp $
+
+  04 Jan 2011; Michael Weber <xmw@gentoo.org> munge-0.5.9.ebuild:
+  added ~sparc (bug 345465)
 
   26 Dec 2010; Matt Turner <mattst88@gentoo.org> munge-0.5.9.ebuild:
   Added ~mips, bug 345465






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

* [gentoo-commits] gentoo-x86 commit in sys-auth/munge: munge-0.5.9.ebuild ChangeLog
@ 2011-01-06 17:10 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-01-06 17:10 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/01/06 17:10:43

  Modified:             munge-0.5.9.ebuild ChangeLog
  Log:
  Marked ~ppc64 wrt bug 345465
  
  (Portage version: 2.2.0_alpha11/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  sys-auth/munge/munge-0.5.9.ebuild

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

Index: munge-0.5.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- munge-0.5.9.ebuild	4 Jan 2011 00:37:20 -0000	1.6
+++ munge-0.5.9.ebuild	6 Jan 2011 17:10:43 -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-auth/munge/munge-0.5.9.ebuild,v 1.6 2011/01/04 00:37:20 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.7 2011/01/06 17:10:43 xarthisius Exp $
 
 EAPI=3
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="gcrypt"
 
 DEPEND="app-arch/bzip2



1.7                  sys-auth/munge/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	4 Jan 2011 00:37:20 -0000	1.6
+++ ChangeLog	6 Jan 2011 17:10:43 -0000	1.7
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/munge
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.6 2011/01/04 00:37:20 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.7 2011/01/06 17:10:43 xarthisius Exp $
+
+  06 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> munge-0.5.9.ebuild:
+  Marked ~ppc64 wrt bug 345465
 
   04 Jan 2011; Michael Weber <xmw@gentoo.org> munge-0.5.9.ebuild:
   added ~sparc (bug 345465)






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

* [gentoo-commits] gentoo-x86 commit in sys-auth/munge: munge-0.5.9.ebuild ChangeLog
@ 2011-01-09 18:11 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2011-01-09 18:11 UTC (permalink / raw
  To: gentoo-commits

armin76     11/01/09 18:11:06

  Modified:             munge-0.5.9.ebuild ChangeLog
  Log:
  Add ~alpha/~ia64 wrt #345465
  
  (Portage version: 2.1.9.25/cvs/Linux ia64)

Revision  Changes    Path
1.8                  sys-auth/munge/munge-0.5.9.ebuild

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

Index: munge-0.5.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- munge-0.5.9.ebuild	6 Jan 2011 17:10:43 -0000	1.7
+++ munge-0.5.9.ebuild	9 Jan 2011 18:11:06 -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-auth/munge/munge-0.5.9.ebuild,v 1.7 2011/01/06 17:10:43 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/munge-0.5.9.ebuild,v 1.8 2011/01/09 18:11:06 armin76 Exp $
 
 EAPI=3
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="gcrypt"
 
 DEPEND="app-arch/bzip2



1.8                  sys-auth/munge/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	6 Jan 2011 17:10:43 -0000	1.7
+++ ChangeLog	9 Jan 2011 18:11:06 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/munge
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.7 2011/01/06 17:10:43 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/munge/ChangeLog,v 1.8 2011/01/09 18:11:06 armin76 Exp $
+
+  09 Jan 2011; Raúl Porcel <armin76@gentoo.org> munge-0.5.9.ebuild:
+  Add ~alpha/~ia64 wrt #345465
 
   06 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> munge-0.5.9.ebuild:
   Marked ~ppc64 wrt bug 345465






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

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

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-06 17:10 [gentoo-commits] gentoo-x86 commit in sys-auth/munge: munge-0.5.9.ebuild ChangeLog Kacper Kowalik (xarthisius)
  -- strict thread matches above, loose matches on Subject: below --
2011-01-09 18:11 Raul Porcel (armin76)
2011-01-04  0:37 Michael Weber (xmw)
2010-12-26  6:02 Matt Turner (mattst88)
2010-12-06  3:02 Jeroen Roovers (jer)
2010-12-06  0:42 Jeroen Roovers (jer)
2010-12-04 18:22 Justin Bronder (jsbronder)

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