public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.81-r2.ebuild ChangeLog
@ 2010-03-31 22:42 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 8+ messages in thread
From: Robin H. Johnson (robbat2) @ 2010-03-31 22:42 UTC (permalink / raw
  To: gentoo-commits

robbat2     10/03/31 22:42:05

  Modified:             ChangeLog
  Added:                make-3.81-r2.ebuild
  Log:
  Bug #193258 reported some parallel make failures for complex cases. The original patch with that was not however suitable, so take the much simplier patch that Fedora did instead.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.63                 sys-devel/make/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/make/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/make/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/make/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -p -w -b -B -u -u -r1.62 -r1.63
--- ChangeLog	13 Feb 2010 08:48:41 -0000	1.62
+++ ChangeLog	31 Mar 2010 22:42:05 -0000	1.63
@@ -1,6 +1,14 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.62 2010/02/13 08:48:41 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.63 2010/03/31 22:42:05 robbat2 Exp $
+
+*make-3.81-r2 (31 Mar 2010)
+
+  31 Mar 2010; Robin H. Johnson <robbat2@gentoo.org> +make-3.81-r2.ebuild,
+  +files/make-3.81-jobserver.patch:
+  Bug #193258 reported some parallel make failures for complex cases. The
+  original patch with that was not however suitable, so take the much
+  simplier patch that Fedora did instead.
 
   13 Feb 2010; Mike Frysinger <vapier@gentoo.org>
   files/make-3.81-long-cmdline.patch:



1.1                  sys-devel/make/make-3.81-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild?rev=1.1&content-type=text/plain

Index: make-3.81-r2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v 1.1 2010/03/31 22:42:05 robbat2 Exp $

inherit flag-o-matic

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-2"
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_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/${P}-tests-lang.patch
	epatch "${FILESDIR}"/${P}-long-cmdline.patch #301116
	# related to bug #193258, but this is the final patch that Fedora went with.
	epatch "${FILESDIR}"/${P}-jobserver.patch 
}

src_compile() {
	use static && append-ldflags -static
	econf \
		$(use_enable nls) \
		--program-prefix=g \
		|| die
	emake || die
}

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.81-r2.ebuild ChangeLog
@ 2010-07-25 14:36 Mike Frysinger (vapier)
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Frysinger (vapier) @ 2010-07-25 14:36 UTC (permalink / raw
  To: gentoo-commits

vapier      10/07/25 14:36:05

  Modified:             make-3.81-r2.ebuild ChangeLog
  Log:
  Add change from upstream for recursion test #329153 by Kent Fredric.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  sys-devel/make/make-3.81-r2.ebuild

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

Index: make-3.81-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- make-3.81-r2.ebuild	1 Apr 2010 01:28:31 -0000	1.2
+++ make-3.81-r2.ebuild	25 Jul 2010 14:36:05 -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-devel/make/make-3.81-r2.ebuild,v 1.2 2010/04/01 01:28:31 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v 1.3 2010/07/25 14:36:05 vapier Exp $
 
 inherit flag-o-matic
 
@@ -21,8 +21,8 @@
 	cd "${S}"
 	epatch "${FILESDIR}"/${P}-tests-lang.patch
 	epatch "${FILESDIR}"/${P}-long-cmdline.patch #301116
-	# related to bug #193258, but this is the final patch that Fedora went with.
-	epatch "${FILESDIR}"/${P}-jobserver.patch
+	epatch "${FILESDIR}"/${P}-tests-recursion.patch #329153
+	epatch "${FILESDIR}"/${P}-jobserver.patch #193258
 }
 
 src_compile() {



1.64                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	31 Mar 2010 22:42:05 -0000	1.63
+++ ChangeLog	25 Jul 2010 14:36:05 -0000	1.64
@@ -1,6 +1,10 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.63 2010/03/31 22:42:05 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.64 2010/07/25 14:36:05 vapier Exp $
+
+  25 Jul 2010; Mike Frysinger <vapier@gentoo.org> make-3.81-r2.ebuild,
+  +files/make-3.81-tests-recursion.patch:
+  Add change from upstream for recursion test #329153 by Kent Fredric.
 
 *make-3.81-r2 (31 Mar 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.81-r2.ebuild ChangeLog
@ 2010-08-10 12:31 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 8+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-08-10 12:31 UTC (permalink / raw
  To: gentoo-commits

fauli       10/08/10 12:31:49

  Modified:             make-3.81-r2.ebuild ChangeLog
  Log:
  stable x86, bug 331717
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.4                  sys-devel/make/make-3.81-r2.ebuild

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

Index: make-3.81-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- make-3.81-r2.ebuild	25 Jul 2010 14:36:05 -0000	1.3
+++ make-3.81-r2.ebuild	10 Aug 2010 12:31:49 -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-devel/make/make-3.81-r2.ebuild,v 1.3 2010/07/25 14:36:05 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v 1.4 2010/08/10 12:31:49 fauli Exp $
 
 inherit flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 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 ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.67                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	10 Aug 2010 08:32:49 -0000	1.66
+++ ChangeLog	10 Aug 2010 12:31:49 -0000	1.67
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.66 2010/08/10 08:32:49 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.67 2010/08/10 12:31:49 fauli Exp $
+
+  10 Aug 2010; Christian Faulhammer <fauli@gentoo.org> make-3.81-r2.ebuild:
+  stable x86, bug 331717
 
   10 Aug 2010; Mike Frysinger <vapier@gentoo.org> make-3.82.ebuild,
   +files/make-3.82-MAKEFLAGS-reexec.patch:






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.81-r2.ebuild ChangeLog
@ 2010-08-10 21:26 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-08-10 21:26 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/08/10 21:26:05

  Modified:             make-3.81-r2.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #331717
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  sys-devel/make/make-3.81-r2.ebuild

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

Index: make-3.81-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- make-3.81-r2.ebuild	10 Aug 2010 12:31:49 -0000	1.4
+++ make-3.81-r2.ebuild	10 Aug 2010 21:26:05 -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-devel/make/make-3.81-r2.ebuild,v 1.4 2010/08/10 12:31:49 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v 1.5 2010/08/10 21:26:05 hwoarang Exp $
 
 inherit flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 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 ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.68                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	10 Aug 2010 12:31:49 -0000	1.67
+++ ChangeLog	10 Aug 2010 21:26:05 -0000	1.68
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.67 2010/08/10 12:31:49 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.68 2010/08/10 21:26:05 hwoarang Exp $
+
+  10 Aug 2010; Markos Chandras <hwoarang@gentoo.org> make-3.81-r2.ebuild:
+  Stable on amd64 wrt bug #331717
 
   10 Aug 2010; Christian Faulhammer <fauli@gentoo.org> make-3.81-r2.ebuild:
   stable x86, bug 331717






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.81-r2.ebuild ChangeLog
@ 2010-08-11 15:44 Joseph Jezak (josejx)
  0 siblings, 0 replies; 8+ messages in thread
From: Joseph Jezak (josejx) @ 2010-08-11 15:44 UTC (permalink / raw
  To: gentoo-commits

josejx      10/08/11 15:44:27

  Modified:             make-3.81-r2.ebuild ChangeLog
  Log:
  Marked ppc/ppc64 stable for bug #331717.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  sys-devel/make/make-3.81-r2.ebuild

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

Index: make-3.81-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- make-3.81-r2.ebuild	10 Aug 2010 21:26:05 -0000	1.5
+++ make-3.81-r2.ebuild	11 Aug 2010 15:44:27 -0000	1.6
@@ -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-devel/make/make-3.81-r2.ebuild,v 1.5 2010/08/10 21:26:05 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v 1.6 2010/08/11 15:44:27 josejx Exp $
 
 inherit flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 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 ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.69                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	10 Aug 2010 21:26:05 -0000	1.68
+++ ChangeLog	11 Aug 2010 15:44:27 -0000	1.69
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.68 2010/08/10 21:26:05 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.69 2010/08/11 15:44:27 josejx Exp $
+
+  11 Aug 2010; Joseph Jezak <josejx@gentoo.org> make-3.81-r2.ebuild:
+  Marked ppc/ppc64 stable for bug #331717.
 
   10 Aug 2010; Markos Chandras <hwoarang@gentoo.org> make-3.81-r2.ebuild:
   Stable on amd64 wrt bug #331717






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.81-r2.ebuild ChangeLog
@ 2010-08-11 16:24 Mike Frysinger (vapier)
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Frysinger (vapier) @ 2010-08-11 16:24 UTC (permalink / raw
  To: gentoo-commits

vapier      10/08/11 16:24:15

  Modified:             make-3.81-r2.ebuild ChangeLog
  Log:
  Stabilize for alpha/arm/ia64/s390/sh #331717.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  sys-devel/make/make-3.81-r2.ebuild

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

Index: make-3.81-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- make-3.81-r2.ebuild	11 Aug 2010 15:44:27 -0000	1.6
+++ make-3.81-r2.ebuild	11 Aug 2010 16:24:15 -0000	1.7
@@ -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-devel/make/make-3.81-r2.ebuild,v 1.6 2010/08/11 15:44:27 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v 1.7 2010/08/11 16:24:15 vapier Exp $
 
 inherit flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 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 ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.70                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	11 Aug 2010 15:44:27 -0000	1.69
+++ ChangeLog	11 Aug 2010 16:24:15 -0000	1.70
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.69 2010/08/11 15:44:27 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.70 2010/08/11 16:24:15 vapier Exp $
+
+  11 Aug 2010; Mike Frysinger <vapier@gentoo.org> make-3.81-r2.ebuild:
+  Stabilize for alpha/arm/ia64/s390/sh #331717.
 
   11 Aug 2010; Joseph Jezak <josejx@gentoo.org> make-3.81-r2.ebuild:
   Marked ppc/ppc64 stable for bug #331717.






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.81-r2.ebuild ChangeLog
@ 2010-08-18  4:22 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2010-08-18  4:22 UTC (permalink / raw
  To: gentoo-commits

jer         10/08/18 04:22:42

  Modified:             make-3.81-r2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #331717).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.8                  sys-devel/make/make-3.81-r2.ebuild

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

Index: make-3.81-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- make-3.81-r2.ebuild	11 Aug 2010 16:24:15 -0000	1.7
+++ make-3.81-r2.ebuild	18 Aug 2010 04:22:42 -0000	1.8
@@ -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-devel/make/make-3.81-r2.ebuild,v 1.7 2010/08/11 16:24:15 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v 1.8 2010/08/18 04:22:42 jer Exp $
 
 inherit flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 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 ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.71                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	11 Aug 2010 16:24:15 -0000	1.70
+++ ChangeLog	18 Aug 2010 04:22:42 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.70 2010/08/11 16:24:15 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.71 2010/08/18 04:22:42 jer Exp $
+
+  18 Aug 2010; Jeroen Roovers <jer@gentoo.org> make-3.81-r2.ebuild:
+  Stable for HPPA (bug #331717).
 
   11 Aug 2010; Mike Frysinger <vapier@gentoo.org> make-3.81-r2.ebuild:
   Stabilize for alpha/arm/ia64/s390/sh #331717.






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.81-r2.ebuild ChangeLog
@ 2010-09-18 17:59 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2010-09-18 17:59 UTC (permalink / raw
  To: gentoo-commits

armin76     10/09/18 17:59:32

  Modified:             make-3.81-r2.ebuild ChangeLog
  Log:
  sparc stable wrt #331717
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.9                  sys-devel/make/make-3.81-r2.ebuild

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

Index: make-3.81-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- make-3.81-r2.ebuild	18 Aug 2010 04:22:42 -0000	1.8
+++ make-3.81-r2.ebuild	18 Sep 2010 17:59:32 -0000	1.9
@@ -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-devel/make/make-3.81-r2.ebuild,v 1.8 2010/08/18 04:22:42 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.81-r2.ebuild,v 1.9 2010/09/18 17:59:32 armin76 Exp $
 
 inherit flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 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 ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"



1.73                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog	29 Aug 2010 00:02:30 -0000	1.72
+++ ChangeLog	18 Sep 2010 17:59:32 -0000	1.73
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.72 2010/08/29 00:02:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.73 2010/09/18 17:59:32 armin76 Exp $
+
+  18 Sep 2010; Raúl Porcel <armin76@gentoo.org> make-3.81-r2.ebuild:
+  sparc stable wrt #331717
 
   29 Aug 2010; Mike Frysinger <vapier@gentoo.org> make-3.82.ebuild,
   +files/make-3.82-archives-many-objs.patch:






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

end of thread, other threads:[~2010-09-18 17:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-11 16:24 [gentoo-commits] gentoo-x86 commit in sys-devel/make: make-3.81-r2.ebuild ChangeLog Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-18 17:59 Raul Porcel (armin76)
2010-08-18  4:22 Jeroen Roovers (jer)
2010-08-11 15:44 Joseph Jezak (josejx)
2010-08-10 21:26 Markos Chandras (hwoarang)
2010-08-10 12:31 Christian Faulhammer (fauli)
2010-07-25 14:36 Mike Frysinger (vapier)
2010-03-31 22:42 Robin H. Johnson (robbat2)

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