public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.82-r3.ebuild ChangeLog
@ 2011-09-17 23:29 Mike Frysinger (vapier)
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Frysinger (vapier) @ 2011-09-17 23:29 UTC (permalink / raw
  To: gentoo-commits

vapier      11/09/17 23:29:34

  Modified:             ChangeLog
  Added:                make-3.82-r3.ebuild
  Log:
  Add more complete glob optimization patch from upstream #382845 by Tomáš Chvátal.
  
  (Portage version: 2.2.0_alpha58/cvs/Linux x86_64)

Revision  Changes    Path
1.88                 sys-devel/make/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?r1=1.87&r2=1.88

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	17 Sep 2011 07:25:05 -0000	1.87
+++ ChangeLog	17 Sep 2011 23:29:34 -0000	1.88
@@ -1,6 +1,13 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.87 2011/09/17 07:25:05 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.88 2011/09/17 23:29:34 vapier Exp $
+
+*make-3.82-r3 (17 Sep 2011)
+
+  17 Sep 2011; Mike Frysinger <vapier@gentoo.org> +make-3.82-r3.ebuild,
+  +files/make-3.82-glob-speedup.patch:
+  Add more complete glob optimization patch from upstream #382845 by Tomáš
+  Chvátal.
 
   17 Sep 2011; Mike Frysinger <vapier@gentoo.org> -make-3.82-r2.ebuild,
   -files/make-3.82-glob-speedup.patch:



1.1                  sys-devel/make/make-3.82-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild?rev=1.1&content-type=text/plain

Index: make-3.82-r3.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.1 2011/09/17 23:29:34 vapier Exp $

EAPI="2"

inherit flag-o-matic eutils

DESCRIPTION="Standard tool to compile source trees"
HOMEPAGE="http://www.gnu.org/software/make/make.html"
SRC_URI="mirror://gnu//make/${P}.tar.bz2"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="nls static"

DEPEND="nls? ( sys-devel/gettext )"
RDEPEND="nls? ( virtual/libintl )"

src_prepare() {
	epatch "${FILESDIR}"/${P}-archives-many-objs.patch #334889
	epatch "${FILESDIR}"/${P}-MAKEFLAGS-reexec.patch #31975
	epatch "${FILESDIR}"/${P}-memory-corruption.patch #355907
	epatch "${FILESDIR}"/${P}-glob-speedup.patch #382845
}

src_configure() {
	use static && append-ldflags -static
	econf \
		--program-prefix=g \
		$(use_enable nls)
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS ChangeLog NEWS README*
	if [[ ${USERLAND} == "GNU" ]] ; then
		# we install everywhere as 'gmake' but on GNU systems,
		# symlink 'make' to 'gmake'
		dosym gmake /usr/bin/make
		dosym gmake.1 /usr/share/man/man1/make.1
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.82-r3.ebuild ChangeLog
@ 2012-04-26 13:46 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-26 13:46 UTC (permalink / raw
  To: gentoo-commits

aballier    12/04/26 13:46:07

  Modified:             make-3.82-r3.ebuild ChangeLog
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sys-devel/make/make-3.82-r3.ebuild

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

Index: make-3.82-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- make-3.82-r3.ebuild	17 Sep 2011 23:29:34 -0000	1.1
+++ make-3.82-r3.ebuild	26 Apr 2012 13:46:07 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.1 2011/09/17 23:29:34 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.2 2012/04/26 13:46:07 aballier Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.94                 sys-devel/make/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?r1=1.93&r2=1.94

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog	30 Dec 2011 15:46:43 -0000	1.93
+++ ChangeLog	26 Apr 2012 13:46:07 -0000	1.94
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.93 2011/12/30 15:46:43 halcy0n Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.94 2012/04/26 13:46:07 aballier Exp $
+
+  26 Apr 2012; Alexis Ballier <aballier@gentoo.org> make-3.82-r3.ebuild:
+  keyword ~amd64-fbsd
 
   30 Dec 2011; Mark Loeser <halcy0n@gentoo.org> make-3.82-r1.ebuild:
   Stable for ppc64; bug #381199






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.82-r3.ebuild ChangeLog
@ 2012-08-06 12:12 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 8+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-08-06 12:12 UTC (permalink / raw
  To: gentoo-commits

blueness    12/08/06 12:12:26

  Modified:             make-3.82-r3.ebuild ChangeLog
  Log:
  Stable ppc ppc64, bug #419941
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  sys-devel/make/make-3.82-r3.ebuild

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

Index: make-3.82-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- make-3.82-r3.ebuild	26 Apr 2012 13:46:07 -0000	1.2
+++ make-3.82-r3.ebuild	6 Aug 2012 12:12:26 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.2 2012/04/26 13:46:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.3 2012/08/06 12:12:26 blueness Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.96                 sys-devel/make/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.96&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.96&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?r1=1.95&r2=1.96

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog	24 May 2012 02:38:35 -0000	1.95
+++ ChangeLog	6 Aug 2012 12:12:26 -0000	1.96
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.95 2012/05/24 02:38:35 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.96 2012/08/06 12:12:26 blueness Exp $
+
+  06 Aug 2012; Anthony G. Basile <blueness@gentoo.org> make-3.82-r3.ebuild:
+  Stable ppc ppc64, bug #419941
 
   24 May 2012; Mike Frysinger <vapier@gentoo.org> make-3.81-r1.ebuild,
   make-3.81-r2.ebuild, make-3.81.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.82-r3.ebuild ChangeLog
@ 2012-08-06 12:41 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 8+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-08-06 12:41 UTC (permalink / raw
  To: gentoo-commits

blueness    12/08/06 12:41:19

  Modified:             make-3.82-r3.ebuild ChangeLog
  Log:
  Stable arm, bug #419941
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  sys-devel/make/make-3.82-r3.ebuild

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

Index: make-3.82-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- make-3.82-r3.ebuild	6 Aug 2012 12:12:26 -0000	1.3
+++ make-3.82-r3.ebuild	6 Aug 2012 12:41:19 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.3 2012/08/06 12:12:26 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.4 2012/08/06 12:41:19 blueness Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.97                 sys-devel/make/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?r1=1.96&r2=1.97

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog	6 Aug 2012 12:12:26 -0000	1.96
+++ ChangeLog	6 Aug 2012 12:41:19 -0000	1.97
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.96 2012/08/06 12:12:26 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.97 2012/08/06 12:41:19 blueness Exp $
+
+  06 Aug 2012; Anthony G. Basile <blueness@gentoo.org> make-3.82-r3.ebuild:
+  Stable arm, bug #419941
 
   06 Aug 2012; Anthony G. Basile <blueness@gentoo.org> make-3.82-r3.ebuild:
   Stable ppc ppc64, bug #419941





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.82-r3.ebuild ChangeLog
@ 2012-08-07 17:58 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-08-07 17:58 UTC (permalink / raw
  To: gentoo-commits

ago         12/08/07 17:58:55

  Modified:             make-3.82-r3.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #419941
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  sys-devel/make/make-3.82-r3.ebuild

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

Index: make-3.82-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- make-3.82-r3.ebuild	6 Aug 2012 12:41:19 -0000	1.4
+++ make-3.82-r3.ebuild	7 Aug 2012 17:58:55 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.4 2012/08/06 12:41:19 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.5 2012/08/07 17:58:55 ago Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.98                 sys-devel/make/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?r1=1.97&r2=1.98

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog	6 Aug 2012 12:41:19 -0000	1.97
+++ ChangeLog	7 Aug 2012 17:58:55 -0000	1.98
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.97 2012/08/06 12:41:19 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.98 2012/08/07 17:58:55 ago Exp $
+
+  07 Aug 2012; Agostino Sarubbo <ago@gentoo.org> make-3.82-r3.ebuild:
+  Stable for amd64, wrt bug #419941
 
   06 Aug 2012; Anthony G. Basile <blueness@gentoo.org> make-3.82-r3.ebuild:
   Stable arm, bug #419941





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.82-r3.ebuild ChangeLog
@ 2012-08-09 12:57 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2012-08-09 12:57 UTC (permalink / raw
  To: gentoo-commits

jer         12/08/09 12:57:14

  Modified:             make-3.82-r3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #419941).
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  sys-devel/make/make-3.82-r3.ebuild

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

Index: make-3.82-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- make-3.82-r3.ebuild	7 Aug 2012 17:58:55 -0000	1.5
+++ make-3.82-r3.ebuild	9 Aug 2012 12:57:14 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.5 2012/08/07 17:58:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.6 2012/08/09 12:57:14 jer Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.99                 sys-devel/make/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?r1=1.98&r2=1.99

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	7 Aug 2012 17:58:55 -0000	1.98
+++ ChangeLog	9 Aug 2012 12:57:14 -0000	1.99
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.98 2012/08/07 17:58:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.99 2012/08/09 12:57:14 jer Exp $
+
+  09 Aug 2012; Jeroen Roovers <jer@gentoo.org> make-3.82-r3.ebuild:
+  Stable for HPPA (bug #419941).
 
   07 Aug 2012; Agostino Sarubbo <ago@gentoo.org> make-3.82-r3.ebuild:
   Stable for amd64, wrt bug #419941





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.82-r3.ebuild ChangeLog
@ 2012-08-11 15:05 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2012-08-11 15:05 UTC (permalink / raw
  To: gentoo-commits

maekke      12/08/11 15:05:18

  Modified:             make-3.82-r3.ebuild ChangeLog
  Log:
  x86 stable, bug #419941
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  sys-devel/make/make-3.82-r3.ebuild

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

Index: make-3.82-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- make-3.82-r3.ebuild	9 Aug 2012 12:57:14 -0000	1.6
+++ make-3.82-r3.ebuild	11 Aug 2012 15:05:17 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.6 2012/08/09 12:57:14 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.7 2012/08/11 15:05:17 maekke Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.100                sys-devel/make/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	9 Aug 2012 12:57:14 -0000	1.99
+++ ChangeLog	11 Aug 2012 15:05:17 -0000	1.100
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.99 2012/08/09 12:57:14 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.100 2012/08/11 15:05:17 maekke Exp $
+
+  11 Aug 2012; Markus Meier <maekke@gentoo.org> make-3.82-r3.ebuild:
+  x86 stable, bug #419941
 
   09 Aug 2012; Jeroen Roovers <jer@gentoo.org> make-3.82-r3.ebuild:
   Stable for HPPA (bug #419941).





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.82-r3.ebuild ChangeLog
@ 2012-09-02 18:52 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2012-09-02 18:52 UTC (permalink / raw
  To: gentoo-commits

armin76     12/09/02 18:52:35

  Modified:             make-3.82-r3.ebuild ChangeLog
  Log:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #419941
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  sys-devel/make/make-3.82-r3.ebuild

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

Index: make-3.82-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- make-3.82-r3.ebuild	11 Aug 2012 15:05:17 -0000	1.7
+++ make-3.82-r3.ebuild	2 Sep 2012 18:52:35 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.7 2012/08/11 15:05:17 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82-r3.ebuild,v 1.8 2012/09/02 18:52:35 armin76 Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.101                sys-devel/make/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	11 Aug 2012 15:05:17 -0000	1.100
+++ ChangeLog	2 Sep 2012 18:52:35 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.100 2012/08/11 15:05:17 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.101 2012/09/02 18:52:35 armin76 Exp $
+
+  02 Sep 2012; Raúl Porcel <armin76@gentoo.org> make-3.82-r3.ebuild:
+  alpha/ia64/m68k/s390/sh/sparc stable wrt #419941
 
   11 Aug 2012; Markus Meier <maekke@gentoo.org> make-3.82-r3.ebuild:
   x86 stable, bug #419941





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

end of thread, other threads:[~2012-09-02 18:52 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-07 17:58 [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.82-r3.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-09-02 18:52 Raul Porcel (armin76)
2012-08-11 15:05 Markus Meier (maekke)
2012-08-09 12:57 Jeroen Roovers (jer)
2012-08-06 12:41 Anthony G. Basile (blueness)
2012-08-06 12:12 Anthony G. Basile (blueness)
2012-04-26 13:46 Alexis Ballier (aballier)
2011-09-17 23:29 Mike Frysinger (vapier)

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