public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.1.ebuild
@ 2008-12-22  5:48 Mike Frysinger (vapier)
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Frysinger (vapier) @ 2008-12-22  5:48 UTC (permalink / raw
  To: gentoo-commits

vapier      08/12/22 05:48:26

  Modified:             ChangeLog
  Added:                bison-2.4.1.ebuild
  Log:
  Version bump #250848 by Arfrever Frehtes Taifersar Arahesis.
  (Portage version: 2.2_rc17/cvs/Linux 2.6.27.8 x86_64)

Revision  Changes    Path
1.77                 sys-devel/bison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	14 Nov 2008 08:50:29 -0000	1.76
+++ ChangeLog	22 Dec 2008 05:48:26 -0000	1.77
@@ -1,6 +1,11 @@
 # ChangeLog for sys-devel/bison
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.76 2008/11/14 08:50:29 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.77 2008/12/22 05:48:26 vapier Exp $
+
+*bison-2.4.1 (22 Dec 2008)
+
+  22 Dec 2008; Mike Frysinger <vapier@gentoo.org> +bison-2.4.1.ebuild:
+  Version bump #250848 by Arfrever Frehtes Taifersar Arahesis.
 
   14 Nov 2008; Mike Frysinger <vapier@gentoo.org>
   files/bison-2.4-compat.patch, bison-2.4-r1.ebuild:



1.1                  sys-devel/bison/bison-2.4.1.ebuild

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

Index: bison-2.4.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.1 2008/12/22 05:48:26 vapier Exp $

inherit toolchain-funcs flag-o-matic

DESCRIPTION="A yacc-compatible parser generator"
HOMEPAGE="http://www.gnu.org/software/bison/bison.html"
SRC_URI="mirror://gnu/bison/${P}.tar.bz2"

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

# need flex since we patch scan-code.l in ${P}-compat.patch
DEPEND="nls? ( sys-devel/gettext )
	sys-devel/flex"
RDEPEND="sys-devel/m4"

src_unpack() {
	unpack ${A}
	cd "${S}"
	# since we patch sources, update mtimes on docs so we dont regen
	touch doc/bison.1 doc/bison.info doc/cross-options.texi
}

src_compile() {
	use static && append-ldflags -static
	econf $(use_enable nls) || die
	emake || die
}

src_install() {
	emake DESTDIR="${D}" install || die

	# This one is installed by dev-util/yacc
	mv "${D}"/usr/bin/yacc{,.bison} || die
	mv "${D}"/usr/share/man/man1/yacc{,.bison}.1 || die

	# We do not need this.
	rm -r "${D}"/usr/lib* || die

	dodoc AUTHORS NEWS ChangeLog README OChangeLog THANKS TODO
}

pkg_postinst() {
	if [[ ! -e ${ROOT}/usr/bin/yacc ]] ; then
		ln -s yacc.bison "${ROOT}"/usr/bin/yacc
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.1.ebuild
@ 2010-01-24 21:24 Jonathan Callen (abcd)
  0 siblings, 0 replies; 8+ messages in thread
From: Jonathan Callen (abcd) @ 2010-01-24 21:24 UTC (permalink / raw
  To: gentoo-commits

abcd        10/01/24 21:24:58

  Modified:             ChangeLog bison-2.4.1.ebuild
  Log:
  Remove old, unused build-dep on flex; cleanup (no patches => no need to clean up after them)
  (Portage version: -svn/cvs/Linux i686)

Revision  Changes    Path
1.78                 sys-devel/bison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	22 Dec 2008 05:48:26 -0000	1.77
+++ ChangeLog	24 Jan 2010 21:24:57 -0000	1.78
@@ -1,6 +1,10 @@
 # ChangeLog for sys-devel/bison
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.77 2008/12/22 05:48:26 vapier Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.78 2010/01/24 21:24:57 abcd Exp $
+
+  24 Jan 2010; Jonathan Callen <abcd@gentoo.org> bison-2.4.1.ebuild:
+  Remove old, unused build-dep on flex; cleanup (no patches => no need to
+  clean up after them)
 
 *bison-2.4.1 (22 Dec 2008)
 



1.2                  sys-devel/bison/bison-2.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?r1=1.1&r2=1.2

Index: bison-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bison-2.4.1.ebuild	22 Dec 2008 05:48:26 -0000	1.1
+++ bison-2.4.1.ebuild	24 Jan 2010 21:24:57 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.1 2008/12/22 05:48:26 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.2 2010/01/24 21:24:57 abcd Exp $
 
 inherit toolchain-funcs flag-o-matic
 
@@ -13,21 +13,12 @@
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
 IUSE="nls static"
 
-# need flex since we patch scan-code.l in ${P}-compat.patch
-DEPEND="nls? ( sys-devel/gettext )
-	sys-devel/flex"
+DEPEND="nls? ( sys-devel/gettext )"
 RDEPEND="sys-devel/m4"
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	# since we patch sources, update mtimes on docs so we dont regen
-	touch doc/bison.1 doc/bison.info doc/cross-options.texi
-}
-
 src_compile() {
 	use static && append-ldflags -static
-	econf $(use_enable nls) || die
+	econf $(use_enable nls)
 	emake || die
 }
 






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.1.ebuild
@ 2010-03-29 19:21 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2010-03-29 19:21 UTC (permalink / raw
  To: gentoo-commits

jer         10/03/29 19:21:31

  Modified:             ChangeLog bison-2.4.1.ebuild
  Log:
  Stable for HPPA (bug #311867).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.80                 sys-devel/bison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	29 Mar 2010 04:58:51 -0000	1.79
+++ ChangeLog	29 Mar 2010 19:21:31 -0000	1.80
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/bison
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.79 2010/03/29 04:58:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.80 2010/03/29 19:21:31 jer Exp $
+
+  29 Mar 2010; Jeroen Roovers <jer@gentoo.org> bison-2.4.1.ebuild:
+  Stable for HPPA (bug #311867).
 
 *bison-2.4.2 (29 Mar 2010)
 



1.3                  sys-devel/bison/bison-2.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?r1=1.2&r2=1.3

Index: bison-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bison-2.4.1.ebuild	24 Jan 2010 21:24:57 -0000	1.2
+++ bison-2.4.1.ebuild	29 Mar 2010 19:21:31 -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/bison/bison-2.4.1.ebuild,v 1.2 2010/01/24 21:24:57 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.3 2010/03/29 19:21:31 jer Exp $
 
 inherit toolchain-funcs 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 ~sparc-fbsd ~x86 ~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] 8+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.1.ebuild
@ 2010-04-04 17:16 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-04-04 17:16 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/04/04 17:16:16

  Modified:             ChangeLog bison-2.4.1.ebuild
  Log:
  Stable on amd64 wrt bug #311867
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.81                 sys-devel/bison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	29 Mar 2010 19:21:31 -0000	1.80
+++ ChangeLog	4 Apr 2010 17:16:16 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/bison
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.80 2010/03/29 19:21:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.81 2010/04/04 17:16:16 hwoarang Exp $
+
+  04 Apr 2010; Markos Chandras <hwoarang@gentoo.org> bison-2.4.1.ebuild:
+  Stable on amd64 wrt bug #311867
 
   29 Mar 2010; Jeroen Roovers <jer@gentoo.org> bison-2.4.1.ebuild:
   Stable for HPPA (bug #311867).



1.4                  sys-devel/bison/bison-2.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?r1=1.3&r2=1.4

Index: bison-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bison-2.4.1.ebuild	29 Mar 2010 19:21:31 -0000	1.3
+++ bison-2.4.1.ebuild	4 Apr 2010 17:16:16 -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/bison/bison-2.4.1.ebuild,v 1.3 2010/03/29 19:21:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.4 2010/04/04 17:16:16 hwoarang Exp $
 
 inherit toolchain-funcs 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 )"






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.1.ebuild
@ 2010-04-12 13:32 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 8+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-04-12 13:32 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/04/12 13:32:26

  Modified:             ChangeLog bison-2.4.1.ebuild
  Log:
  x86 stable wrt bug #311867
  (Portage version: 2.1.7.17/cvs/Linux i686)

Revision  Changes    Path
1.83                 sys-devel/bison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	4 Apr 2010 20:01:31 -0000	1.82
+++ ChangeLog	12 Apr 2010 13:32:26 -0000	1.83
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/bison
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.82 2010/04/04 20:01:31 the_paya Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.83 2010/04/12 13:32:26 phajdan.jr Exp $
+
+  12 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> bison-2.4.1.ebuild:
+  x86 stable wrt bug #311867
 
   04 Apr 2010; Javier Villavicencio <the_paya@gentoo.org>
   bison-2.4.2.ebuild, +files/bison-2.4.2-gnulib_spawn.patch:



1.5                  sys-devel/bison/bison-2.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?r1=1.4&r2=1.5

Index: bison-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bison-2.4.1.ebuild	4 Apr 2010 17:16:16 -0000	1.4
+++ bison-2.4.1.ebuild	12 Apr 2010 13:32:26 -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/bison/bison-2.4.1.ebuild,v 1.4 2010/04/04 17:16:16 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.5 2010/04/12 13:32:26 phajdan.jr Exp $
 
 inherit toolchain-funcs 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 )"






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.1.ebuild
@ 2010-04-16 13:43 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2010-04-16 13:43 UTC (permalink / raw
  To: gentoo-commits

ranger      10/04/16 13:43:39

  Modified:             ChangeLog bison-2.4.1.ebuild
  Log:
  stable ppc, bug 311867
  (Portage version: 2.1.7.17/cvs/Linux ppc64)

Revision  Changes    Path
1.84                 sys-devel/bison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	12 Apr 2010 13:32:26 -0000	1.83
+++ ChangeLog	16 Apr 2010 13:43:38 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/bison
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.83 2010/04/12 13:32:26 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.84 2010/04/16 13:43:38 ranger Exp $
+
+  16 Apr 2010; Brent Baude <ranger@gentoo.org> bison-2.4.1.ebuild:
+  stable ppc, bug 311867
 
   12 Apr 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> bison-2.4.1.ebuild:
   x86 stable wrt bug #311867



1.6                  sys-devel/bison/bison-2.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild?r1=1.5&r2=1.6

Index: bison-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bison-2.4.1.ebuild	12 Apr 2010 13:32:26 -0000	1.5
+++ bison-2.4.1.ebuild	16 Apr 2010 13:43:38 -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/bison/bison-2.4.1.ebuild,v 1.5 2010/04/12 13:32:26 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.6 2010/04/16 13:43:38 ranger Exp $
 
 inherit toolchain-funcs 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 )"






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.1.ebuild
@ 2010-05-11 13:32 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2010-05-11 13:32 UTC (permalink / raw
  To: gentoo-commits

ranger      10/05/11 13:32:32

  Modified:             ChangeLog bison-2.4.1.ebuild
  Log:
  Marking bison-2.4.1 ppc64 for bug 311867
  (Portage version: 2.1.7.17/cvs/Linux ppc64)

Revision  Changes    Path
1.86                 sys-devel/bison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	22 Apr 2010 06:07:29 -0000	1.85
+++ ChangeLog	11 May 2010 13:32:32 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/bison
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.85 2010/04/22 06:07:29 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.86 2010/05/11 13:32:32 ranger Exp $
+
+  11 May 2010; Brent Baude <ranger@gentoo.org> bison-2.4.1.ebuild:
+  Marking bison-2.4.1 ppc64 for bug 311867
 
   22 Apr 2010; Ryan Hill <dirtyepic@gentoo.org> bison-2.4.2.ebuild,
   +files/bison-2.4.2-gcc45_testsuite.patch:



1.7                  sys-devel/bison/bison-2.4.1.ebuild

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

Index: bison-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bison-2.4.1.ebuild	16 Apr 2010 13:43:38 -0000	1.6
+++ bison-2.4.1.ebuild	11 May 2010 13:32:32 -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/bison/bison-2.4.1.ebuild,v 1.6 2010/04/16 13:43:38 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.7 2010/05/11 13:32:32 ranger Exp $
 
 inherit toolchain-funcs 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 )"






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.1.ebuild
@ 2010-05-24 13:53 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2010-05-24 13:53 UTC (permalink / raw
  To: gentoo-commits

armin76     10/05/24 13:53:00

  Modified:             ChangeLog bison-2.4.1.ebuild
  Log:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #311867
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.87                 sys-devel/bison/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	11 May 2010 13:32:32 -0000	1.86
+++ ChangeLog	24 May 2010 13:53:00 -0000	1.87
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/bison
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.86 2010/05/11 13:32:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.87 2010/05/24 13:53:00 armin76 Exp $
+
+  24 May 2010; Raúl Porcel <armin76@gentoo.org> bison-2.4.1.ebuild:
+  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #311867
 
   11 May 2010; Brent Baude <ranger@gentoo.org> bison-2.4.1.ebuild:
   Marking bison-2.4.1 ppc64 for bug 311867



1.8                  sys-devel/bison/bison-2.4.1.ebuild

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

Index: bison-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- bison-2.4.1.ebuild	11 May 2010 13:32:32 -0000	1.7
+++ bison-2.4.1.ebuild	24 May 2010 13:53:00 -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/bison/bison-2.4.1.ebuild,v 1.7 2010/05/11 13:32:32 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.1.ebuild,v 1.8 2010/05/24 13:53:00 armin76 Exp $
 
 inherit toolchain-funcs 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 )"






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

end of thread, other threads:[~2010-05-24 13:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-12 13:32 [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.1.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2010-05-24 13:53 Raul Porcel (armin76)
2010-05-11 13:32 Brent Baude (ranger)
2010-04-16 13:43 Brent Baude (ranger)
2010-04-04 17:16 Markos Chandras (hwoarang)
2010-03-29 19:21 Jeroen Roovers (jer)
2010-01-24 21:24 Jonathan Callen (abcd)
2008-12-22  5:48 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