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

vapier      10/08/09 07:06:14

  Modified:             ChangeLog
  Added:                make-3.82.ebuild
  Log:
  Version bump #331593.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.65                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	25 Jul 2010 14:36:05 -0000	1.64
+++ ChangeLog	9 Aug 2010 07:06:14 -0000	1.65
@@ -1,6 +1,11 @@
 # 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.64 2010/07/25 14:36:05 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.65 2010/08/09 07:06:14 vapier Exp $
+
+*make-3.82 (09 Aug 2010)
+
+  09 Aug 2010; Mike Frysinger <vapier@gentoo.org> +make-3.82.ebuild:
+  Version bump #331593.
 
   25 Jul 2010; Mike Frysinger <vapier@gentoo.org> make-3.81-r2.ebuild,
   +files/make-3.81-tests-recursion.patch:



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

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

Index: make-3.82.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.82.ebuild,v 1.1 2010/08/09 07:06:14 vapier 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_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] 10+ messages in thread

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

vapier      10/08/10 08:32:49

  Modified:             ChangeLog make-3.82.ebuild
  Log:
  Add fix from upstream for MAKEFLAGS expansion when re-execing #331975.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.66                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	9 Aug 2010 07:06:14 -0000	1.65
+++ ChangeLog	10 Aug 2010 08:32:49 -0000	1.66
@@ -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.65 2010/08/09 07:06:14 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.66 2010/08/10 08:32:49 vapier Exp $
+
+  10 Aug 2010; Mike Frysinger <vapier@gentoo.org> make-3.82.ebuild,
+  +files/make-3.82-MAKEFLAGS-reexec.patch:
+  Add fix from upstream for MAKEFLAGS expansion when re-execing #331975.
 
 *make-3.82 (09 Aug 2010)
 



1.2                  sys-devel/make/make-3.82.ebuild

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

Index: make-3.82.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- make-3.82.ebuild	9 Aug 2010 07:06:14 -0000	1.1
+++ make-3.82.ebuild	10 Aug 2010 08:32:49 -0000	1.2
@@ -1,8 +1,10 @@
 # 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.82.ebuild,v 1.1 2010/08/09 07:06:14 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v 1.2 2010/08/10 08:32:49 vapier Exp $
 
-inherit flag-o-matic
+EAPI="2"
+
+inherit flag-o-matic eutils
 
 DESCRIPTION="Standard tool to compile source trees"
 HOMEPAGE="http://www.gnu.org/software/make/make.html"
@@ -16,13 +18,15 @@
 DEPEND="nls? ( sys-devel/gettext )"
 RDEPEND="nls? ( virtual/libintl )"
 
-src_compile() {
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-MAKEFLAGS-reexec.patch #31975
+}
+
+src_configure() {
 	use static && append-ldflags -static
 	econf \
-		$(use_enable nls) \
 		--program-prefix=g \
-		|| die
-	emake || die
+		$(use_enable nls)
 }
 
 src_install() {






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: ChangeLog make-3.82.ebuild
@ 2010-08-29  0:02 Mike Frysinger (vapier)
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger (vapier) @ 2010-08-29  0:02 UTC (permalink / raw
  To: gentoo-commits

vapier      10/08/29 00:02:30

  Modified:             ChangeLog make-3.82.ebuild
  Log:
  Add fix from upstream for archive targets with multiple objects #334889 by Diego E. Pettenò.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.72                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	18 Aug 2010 04:22:42 -0000	1.71
+++ ChangeLog	29 Aug 2010 00:02:30 -0000	1.72
@@ -1,6 +1,11 @@
 # 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.71 2010/08/18 04:22:42 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.72 2010/08/29 00:02:30 vapier Exp $
+
+  29 Aug 2010; Mike Frysinger <vapier@gentoo.org> make-3.82.ebuild,
+  +files/make-3.82-archives-many-objs.patch:
+  Add fix from upstream for archive targets with multiple objects #334889 by
+  Diego E. Pettenò.
 
   18 Aug 2010; Jeroen Roovers <jer@gentoo.org> make-3.81-r2.ebuild:
   Stable for HPPA (bug #331717).



1.4                  sys-devel/make/make-3.82.ebuild

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

Index: make-3.82.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- make-3.82.ebuild	14 Aug 2010 04:52:06 -0000	1.3
+++ make-3.82.ebuild	29 Aug 2010 00:02:30 -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.82.ebuild,v 1.3 2010/08/14 04:52:06 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v 1.4 2010/08/29 00:02:30 vapier Exp $
 
 EAPI="2"
 
@@ -19,6 +19,7 @@
 RDEPEND="nls? ( virtual/libintl )"
 
 src_prepare() {
+	epatch "${FILESDIR}"/${P}-archives-many-objs.patch #334889
 	epatch "${FILESDIR}"/${P}-MAKEFLAGS-reexec.patch #31975
 }
 






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: ChangeLog make-3.82.ebuild
@ 2010-10-18  0:59 Mike Frysinger (vapier)
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Frysinger (vapier) @ 2010-10-18  0:59 UTC (permalink / raw
  To: gentoo-commits

vapier      10/10/18 00:59:13

  Modified:             ChangeLog make-3.82.ebuild
  Log:
  Move into unstable.
  
  (Portage version: 2.2_rc96/cvs/Linux x86_64)

Revision  Changes    Path
1.74                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	18 Sep 2010 17:59:32 -0000	1.73
+++ ChangeLog	18 Oct 2010 00:59:13 -0000	1.74
@@ -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.73 2010/09/18 17:59:32 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.74 2010/10/18 00:59:13 vapier Exp $
+
+  18 Oct 2010; Mike Frysinger <vapier@gentoo.org> make-3.82.ebuild:
+  Move into unstable.
 
   18 Sep 2010; Raúl Porcel <armin76@gentoo.org> make-3.81-r2.ebuild:
   sparc stable wrt #331717



1.5                  sys-devel/make/make-3.82.ebuild

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

Index: make-3.82.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- make-3.82.ebuild	29 Aug 2010 00:02:30 -0000	1.4
+++ make-3.82.ebuild	18 Oct 2010 00:59:13 -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.82.ebuild,v 1.4 2010/08/29 00:02:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v 1.5 2010/10/18 00:59:13 vapier 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 ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: ChangeLog make-3.82.ebuild
@ 2011-05-29 21:54 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 10+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-05-29 21:54 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/05/29 21:54:05

  Modified:             ChangeLog make-3.82.ebuild
  Log:
  Stable on amd64 wrt bug #367265
  
  (Portage version: 2.1.9.49/cvs/Linux x86_64)

Revision  Changes    Path
1.76                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	6 Feb 2011 11:37:17 -0000	1.75
+++ ChangeLog	29 May 2011 21:54:05 -0000	1.76
@@ -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.75 2011/02/06 11:37:17 leio Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.76 2011/05/29 21:54:05 hwoarang Exp $
+
+  29 May 2011; Markos Chandras <hwoarang@gentoo.org> make-3.82.ebuild:
+  Stable on amd64 wrt bug #367265
 
   06 Feb 2011; Mart Raudsepp <leio@gentoo.org> make-3.80-r4.ebuild,
   make-3.81.ebuild:



1.6                  sys-devel/make/make-3.82.ebuild

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

Index: make-3.82.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- make-3.82.ebuild	18 Oct 2010 00:59:13 -0000	1.5
+++ make-3.82.ebuild	29 May 2011 21:54:05 -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-devel/make/make-3.82.ebuild,v 1.5 2010/10/18 00:59:13 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v 1.6 2011/05/29 21:54:05 hwoarang 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 ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: ChangeLog make-3.82.ebuild
@ 2011-05-31 20:31 Markus Meier (maekke)
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2011-05-31 20:31 UTC (permalink / raw
  To: gentoo-commits

maekke      11/05/31 20:31:09

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

Revision  Changes    Path
1.77                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	29 May 2011 21:54:05 -0000	1.76
+++ ChangeLog	31 May 2011 20:31:09 -0000	1.77
@@ -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.76 2011/05/29 21:54:05 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.77 2011/05/31 20:31:09 maekke Exp $
+
+  31 May 2011; Markus Meier <maekke@gentoo.org> make-3.82.ebuild:
+  x86 stable, bug #367265
 
   29 May 2011; Markos Chandras <hwoarang@gentoo.org> make-3.82.ebuild:
   Stable on amd64 wrt bug #367265



1.7                  sys-devel/make/make-3.82.ebuild

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

Index: make-3.82.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- make-3.82.ebuild	29 May 2011 21:54:05 -0000	1.6
+++ make-3.82.ebuild	31 May 2011 20:31:09 -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-devel/make/make-3.82.ebuild,v 1.6 2011/05/29 21:54:05 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v 1.7 2011/05/31 20:31:09 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 ~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 )"






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: ChangeLog make-3.82.ebuild
@ 2011-06-02 12:22 Markus Meier (maekke)
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2011-06-02 12:22 UTC (permalink / raw
  To: gentoo-commits

maekke      11/06/02 12:22:17

  Modified:             ChangeLog make-3.82.ebuild
  Log:
  arm stable, bug #367265
  
  (Portage version: 2.1.9.50/cvs/Linux x86_64)

Revision  Changes    Path
1.78                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	31 May 2011 20:31:09 -0000	1.77
+++ ChangeLog	2 Jun 2011 12:22:17 -0000	1.78
@@ -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.77 2011/05/31 20:31:09 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.78 2011/06/02 12:22:17 maekke Exp $
+
+  02 Jun 2011; Markus Meier <maekke@gentoo.org> make-3.82.ebuild:
+  arm stable, bug #367265
 
   31 May 2011; Markus Meier <maekke@gentoo.org> make-3.82.ebuild:
   x86 stable, bug #367265



1.8                  sys-devel/make/make-3.82.ebuild

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

Index: make-3.82.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- make-3.82.ebuild	31 May 2011 20:31:09 -0000	1.7
+++ make-3.82.ebuild	2 Jun 2011 12:22:17 -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-devel/make/make-3.82.ebuild,v 1.7 2011/05/31 20:31:09 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v 1.8 2011/06/02 12:22: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 ~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 )"






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: ChangeLog make-3.82.ebuild
@ 2011-06-05 14:25 Raul Porcel (armin76)
  0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2011-06-05 14:25 UTC (permalink / raw
  To: gentoo-commits

armin76     11/06/05 14:25:18

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

Revision  Changes    Path
1.79                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	2 Jun 2011 12:22:17 -0000	1.78
+++ ChangeLog	5 Jun 2011 14:25:18 -0000	1.79
@@ -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.78 2011/06/02 12:22:17 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.79 2011/06/05 14:25:18 armin76 Exp $
+
+  05 Jun 2011; Raúl Porcel <armin76@gentoo.org> make-3.82.ebuild:
+  alpha/ia64/m68k/s390/sh/sparc stable wrt #367265
 
   02 Jun 2011; Markus Meier <maekke@gentoo.org> make-3.82.ebuild:
   arm stable, bug #367265



1.9                  sys-devel/make/make-3.82.ebuild

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

Index: make-3.82.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- make-3.82.ebuild	2 Jun 2011 12:22:17 -0000	1.8
+++ make-3.82.ebuild	5 Jun 2011 14:25:18 -0000	1.9
@@ -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-devel/make/make-3.82.ebuild,v 1.8 2011/06/02 12:22:17 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v 1.9 2011/06/05 14:25:18 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 ~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 )"






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: ChangeLog make-3.82.ebuild
@ 2011-06-05 17:33 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2011-06-05 17:33 UTC (permalink / raw
  To: gentoo-commits

jer         11/06/05 17:33:54

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

Revision  Changes    Path
1.80                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	5 Jun 2011 14:25:18 -0000	1.79
+++ ChangeLog	5 Jun 2011 17:33:54 -0000	1.80
@@ -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.79 2011/06/05 14:25:18 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.80 2011/06/05 17:33:54 jer Exp $
+
+  05 Jun 2011; Jeroen Roovers <jer@gentoo.org> make-3.82.ebuild:
+  Stable for HPPA (bug #367265).
 
   05 Jun 2011; Raúl Porcel <armin76@gentoo.org> make-3.82.ebuild:
   alpha/ia64/m68k/s390/sh/sparc stable wrt #367265



1.10                 sys-devel/make/make-3.82.ebuild

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

Index: make-3.82.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- make-3.82.ebuild	5 Jun 2011 14:25:18 -0000	1.9
+++ make-3.82.ebuild	5 Jun 2011 17:33:54 -0000	1.10
@@ -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-devel/make/make-3.82.ebuild,v 1.9 2011/06/05 14:25:18 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v 1.10 2011/06/05 17:33:54 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 ~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 )"






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/make: ChangeLog make-3.82.ebuild
@ 2011-07-09  9:17 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 10+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-07-09  9:17 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/07/09 09:17:29

  Modified:             ChangeLog make-3.82.ebuild
  Log:
  ppc/ppc64 stable wrt #367265
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.82                 sys-devel/make/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	7 Jun 2011 13:18:10 -0000	1.81
+++ ChangeLog	9 Jul 2011 09:17:29 -0000	1.82
@@ -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.81 2011/06/07 13:18:10 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.82 2011/07/09 09:17:29 xarthisius Exp $
+
+  09 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> make-3.82.ebuild:
+  ppc/ppc64 stable wrt #367265
 
 *make-3.82-r1 (07 Jun 2011)
 



1.11                 sys-devel/make/make-3.82.ebuild

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

Index: make-3.82.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- make-3.82.ebuild	5 Jun 2011 17:33:54 -0000	1.10
+++ make-3.82.ebuild	9 Jul 2011 09:17:29 -0000	1.11
@@ -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-devel/make/make-3.82.ebuild,v 1.10 2011/06/05 17:33:54 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-3.82.ebuild,v 1.11 2011/07/09 09:17:29 xarthisius 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 ~sparc-fbsd ~x86-fbsd"
 IUSE="nls static"
 
 DEPEND="nls? ( sys-devel/gettext )"






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

end of thread, other threads:[~2011-07-09  9:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-05 17:33 [gentoo-commits] gentoo-x86 commit in sys-devel/make: ChangeLog make-3.82.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2011-07-09  9:17 Kacper Kowalik (xarthisius)
2011-06-05 14:25 Raul Porcel (armin76)
2011-06-02 12:22 Markus Meier (maekke)
2011-05-31 20:31 Markus Meier (maekke)
2011-05-29 21:54 Markos Chandras (hwoarang)
2010-10-18  0:59 Mike Frysinger (vapier)
2010-08-29  0:02 Mike Frysinger (vapier)
2010-08-10  8:32 Mike Frysinger (vapier)
2010-08-09  7:06 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