* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.2.ebuild
@ 2010-03-29 4:58 Mike Frysinger (vapier)
0 siblings, 0 replies; 9+ messages in thread
From: Mike Frysinger (vapier) @ 2010-03-29 4:58 UTC (permalink / raw
To: gentoo-commits
vapier 10/03/29 04:58:51
Modified: ChangeLog
Added: bison-2.4.2.ebuild
Log:
Version bump #311727 by Lars Wendler.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.79 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.78&r2=1.79
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog 24 Jan 2010 21:24:57 -0000 1.78
+++ ChangeLog 29 Mar 2010 04:58:51 -0000 1.79
@@ -1,6 +1,11 @@
# 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.78 2010/01/24 21:24:57 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.79 2010/03/29 04:58:51 vapier Exp $
+
+*bison-2.4.2 (29 Mar 2010)
+
+ 29 Mar 2010; Mike Frysinger <vapier@gentoo.org> +bison-2.4.2.ebuild:
+ Version bump #311727 by Lars Wendler.
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
1.1 sys-devel/bison/bison-2.4.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.1&content-type=text/plain
Index: bison-2.4.2.ebuild
===================================================================
# 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.2.ebuild,v 1.1 2010/03/29 04:58:51 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 ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="nls static"
DEPEND="nls? ( sys-devel/gettext )"
RDEPEND="sys-devel/m4"
src_compile() {
use static && append-ldflags -static
econf $(use_enable nls)
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] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.2.ebuild
@ 2010-04-04 20:01 Javier Villavicencio (the_paya)
0 siblings, 0 replies; 9+ messages in thread
From: Javier Villavicencio (the_paya) @ 2010-04-04 20:01 UTC (permalink / raw
To: gentoo-commits
the_paya 10/04/04 20:01:31
Modified: ChangeLog bison-2.4.2.ebuild
Log:
Fix for bug #312697, bad gnulib's spawn.
(Portage version: 2.2_rc67/cvs/FreeBSD i386)
Revision Changes Path
1.82 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.81&r2=1.82
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog 4 Apr 2010 17:16:16 -0000 1.81
+++ ChangeLog 4 Apr 2010 20:01:31 -0000 1.82
@@ -1,6 +1,10 @@
# 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.81 2010/04/04 17:16:16 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.82 2010/04/04 20:01:31 the_paya Exp $
+
+ 04 Apr 2010; Javier Villavicencio <the_paya@gentoo.org>
+ bison-2.4.2.ebuild, +files/bison-2.4.2-gnulib_spawn.patch:
+ Add patch to fix gnulib's spawn, fixes bug #312697.
04 Apr 2010; Markos Chandras <hwoarang@gentoo.org> bison-2.4.1.ebuild:
Stable on amd64 wrt bug #311867
1.2 sys-devel/bison/bison-2.4.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?r1=1.1&r2=1.2
Index: bison-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bison-2.4.2.ebuild 29 Mar 2010 04:58:51 -0000 1.1
+++ bison-2.4.2.ebuild 4 Apr 2010 20:01:31 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v 1.1 2010/03/29 04:58:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v 1.2 2010/04/04 20:01:31 the_paya Exp $
inherit toolchain-funcs flag-o-matic
@@ -16,6 +16,12 @@
DEPEND="nls? ( sys-devel/gettext )"
RDEPEND="sys-devel/m4"
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}"/${PN}-2.4.2-gnulib_spawn.patch # 312697
+}
+
src_compile() {
use static && append-ldflags -static
econf $(use_enable nls)
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.2.ebuild
@ 2010-04-22 6:07 Ryan Hill (dirtyepic)
0 siblings, 0 replies; 9+ messages in thread
From: Ryan Hill (dirtyepic) @ 2010-04-22 6:07 UTC (permalink / raw
To: gentoo-commits
dirtyepic 10/04/22 06:07:29
Modified: ChangeLog bison-2.4.2.ebuild
Log:
Add patch from upstream to fix testsuite w/ gcc-4.5.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.85 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.84&r2=1.85
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog 16 Apr 2010 13:43:38 -0000 1.84
+++ ChangeLog 22 Apr 2010 06:07:29 -0000 1.85
@@ -1,6 +1,10 @@
# 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.84 2010/04/16 13:43:38 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.85 2010/04/22 06:07:29 dirtyepic Exp $
+
+ 22 Apr 2010; Ryan Hill <dirtyepic@gentoo.org> bison-2.4.2.ebuild,
+ +files/bison-2.4.2-gcc45_testsuite.patch:
+ Add patch from upstream to fix testsuite w/ gcc-4.5.
16 Apr 2010; Brent Baude <ranger@gentoo.org> bison-2.4.1.ebuild:
stable ppc, bug 311867
1.3 sys-devel/bison/bison-2.4.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?r1=1.2&r2=1.3
Index: bison-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bison-2.4.2.ebuild 4 Apr 2010 20:01:31 -0000 1.2
+++ bison-2.4.2.ebuild 22 Apr 2010 06:07:29 -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.2.ebuild,v 1.2 2010/04/04 20:01:31 the_paya Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v 1.3 2010/04/22 06:07:29 dirtyepic Exp $
inherit toolchain-funcs flag-o-matic
@@ -20,6 +20,7 @@
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-2.4.2-gnulib_spawn.patch # 312697
+ epatch "${FILESDIR}"/${PN}-2.4.2-gcc45_testsuite.patch
}
src_compile() {
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.2.ebuild
@ 2010-08-10 12:35 Christian Faulhammer (fauli)
0 siblings, 0 replies; 9+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-08-10 12:35 UTC (permalink / raw
To: gentoo-commits
fauli 10/08/10 12:35:33
Modified: ChangeLog bison-2.4.2.ebuild
Log:
stable x86, bug 331577
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.89 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.88&r2=1.89
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog 7 Aug 2010 22:37:15 -0000 1.88
+++ ChangeLog 10 Aug 2010 12:35:33 -0000 1.89
@@ -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.88 2010/08/07 22:37:15 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.89 2010/08/10 12:35:33 fauli Exp $
+
+ 10 Aug 2010; Christian Faulhammer <fauli@gentoo.org> bison-2.4.2.ebuild:
+ stable x86, bug 331577
*bison-2.4.3 (07 Aug 2010)
1.4 sys-devel/bison/bison-2.4.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?r1=1.3&r2=1.4
Index: bison-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bison-2.4.2.ebuild 22 Apr 2010 06:07:29 -0000 1.3
+++ bison-2.4.2.ebuild 10 Aug 2010 12:35:33 -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.2.ebuild,v 1.3 2010/04/22 06:07:29 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v 1.4 2010/08/10 12:35:33 fauli 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] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.2.ebuild
@ 2010-08-10 16:03 Jeroen Roovers (jer)
0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2010-08-10 16:03 UTC (permalink / raw
To: gentoo-commits
jer 10/08/10 16:03:26
Modified: ChangeLog bison-2.4.2.ebuild
Log:
Stable for HPPA (bug #331577).
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.90 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.89&r2=1.90
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog 10 Aug 2010 12:35:33 -0000 1.89
+++ ChangeLog 10 Aug 2010 16:03:26 -0000 1.90
@@ -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.89 2010/08/10 12:35:33 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.90 2010/08/10 16:03:26 jer Exp $
+
+ 10 Aug 2010; Jeroen Roovers <jer@gentoo.org> bison-2.4.2.ebuild:
+ Stable for HPPA (bug #331577).
10 Aug 2010; Christian Faulhammer <fauli@gentoo.org> bison-2.4.2.ebuild:
stable x86, bug 331577
1.5 sys-devel/bison/bison-2.4.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?r1=1.4&r2=1.5
Index: bison-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bison-2.4.2.ebuild 10 Aug 2010 12:35:33 -0000 1.4
+++ bison-2.4.2.ebuild 10 Aug 2010 16:03: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.2.ebuild,v 1.4 2010/08/10 12:35:33 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v 1.5 2010/08/10 16:03:26 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 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] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.2.ebuild
@ 2010-08-12 12:44 Markos Chandras (hwoarang)
0 siblings, 0 replies; 9+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-08-12 12:44 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/08/12 12:44:18
Modified: ChangeLog bison-2.4.2.ebuild
Log:
Stable on amd64 wrt bug #331577
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.92 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.91&r2=1.92
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog 12 Aug 2010 05:26:18 -0000 1.91
+++ ChangeLog 12 Aug 2010 12:44:18 -0000 1.92
@@ -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.91 2010/08/12 05:26:18 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.92 2010/08/12 12:44:18 hwoarang Exp $
+
+ 12 Aug 2010; Markos Chandras <hwoarang@gentoo.org> bison-2.4.2.ebuild:
+ Stable on amd64 wrt bug #331577
12 Aug 2010; Mike Frysinger <vapier@gentoo.org>
files/bison-2.4.2-gcc45_testsuite.patch:
1.6 sys-devel/bison/bison-2.4.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?r1=1.5&r2=1.6
Index: bison-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bison-2.4.2.ebuild 10 Aug 2010 16:03:26 -0000 1.5
+++ bison-2.4.2.ebuild 12 Aug 2010 12:44:18 -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.2.ebuild,v 1.5 2010/08/10 16:03:26 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v 1.6 2010/08/12 12:44:18 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] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.2.ebuild
@ 2010-08-13 17:17 Joseph Jezak (josejx)
0 siblings, 0 replies; 9+ messages in thread
From: Joseph Jezak (josejx) @ 2010-08-13 17:17 UTC (permalink / raw
To: gentoo-commits
josejx 10/08/13 17:17:40
Modified: ChangeLog bison-2.4.2.ebuild
Log:
Marked ppc/pcp64 stable for bug #331577.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.93 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.93&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.93&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.92&r2=1.93
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog 12 Aug 2010 12:44:18 -0000 1.92
+++ ChangeLog 13 Aug 2010 17:17:40 -0000 1.93
@@ -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.92 2010/08/12 12:44:18 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.93 2010/08/13 17:17:40 josejx Exp $
+
+ 13 Aug 2010; Joseph Jezak <josejx@gentoo.org> bison-2.4.2.ebuild:
+ Marked ppc/ppc64 stable for bug #331577.
12 Aug 2010; Markos Chandras <hwoarang@gentoo.org> bison-2.4.2.ebuild:
Stable on amd64 wrt bug #331577
1.7 sys-devel/bison/bison-2.4.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?r1=1.6&r2=1.7
Index: bison-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bison-2.4.2.ebuild 12 Aug 2010 12:44:18 -0000 1.6
+++ bison-2.4.2.ebuild 13 Aug 2010 17:17:40 -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.2.ebuild,v 1.6 2010/08/12 12:44:18 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v 1.7 2010/08/13 17:17:40 josejx 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] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.2.ebuild
@ 2010-08-23 20:10 Markus Meier (maekke)
0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2010-08-23 20:10 UTC (permalink / raw
To: gentoo-commits
maekke 10/08/23 20:10:02
Modified: ChangeLog bison-2.4.2.ebuild
Log:
arm stable, bug #331577
(Portage version: 2.2_rc68/cvs/Linux i686)
Revision Changes Path
1.94 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.93&r2=1.94
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog 13 Aug 2010 17:17:40 -0000 1.93
+++ ChangeLog 23 Aug 2010 20:10:02 -0000 1.94
@@ -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.93 2010/08/13 17:17:40 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.94 2010/08/23 20:10:02 maekke Exp $
+
+ 23 Aug 2010; Markus Meier <maekke@gentoo.org> bison-2.4.2.ebuild:
+ arm stable, bug #331577
13 Aug 2010; Joseph Jezak <josejx@gentoo.org> bison-2.4.2.ebuild:
Marked ppc/ppc64 stable for bug #331577.
1.8 sys-devel/bison/bison-2.4.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?r1=1.7&r2=1.8
Index: bison-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- bison-2.4.2.ebuild 13 Aug 2010 17:17:40 -0000 1.7
+++ bison-2.4.2.ebuild 23 Aug 2010 20:10:02 -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.2.ebuild,v 1.7 2010/08/13 17:17:40 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v 1.8 2010/08/23 20:10:02 maekke 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] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.2.ebuild
@ 2010-09-12 17:40 Raul Porcel (armin76)
0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2010-09-12 17:40 UTC (permalink / raw
To: gentoo-commits
armin76 10/09/12 17:40:52
Modified: ChangeLog bison-2.4.2.ebuild
Log:
alpha/ia64/m68k/s390/sh/sparc stable wrt #331577
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.95 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.95&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.95&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.94&r2=1.95
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog 23 Aug 2010 20:10:02 -0000 1.94
+++ ChangeLog 12 Sep 2010 17:40:52 -0000 1.95
@@ -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.94 2010/08/23 20:10:02 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.95 2010/09/12 17:40:52 armin76 Exp $
+
+ 12 Sep 2010; Raúl Porcel <armin76@gentoo.org> bison-2.4.2.ebuild:
+ alpha/ia64/m68k/s390/sh/sparc stable wrt #331577
23 Aug 2010; Markus Meier <maekke@gentoo.org> bison-2.4.2.ebuild:
arm stable, bug #331577
1.9 sys-devel/bison/bison-2.4.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild?r1=1.8&r2=1.9
Index: bison-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- bison-2.4.2.ebuild 23 Aug 2010 20:10:02 -0000 1.8
+++ bison-2.4.2.ebuild 12 Sep 2010 17:40:52 -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/bison/bison-2.4.2.ebuild,v 1.8 2010/08/23 20:10:02 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.4.2.ebuild,v 1.9 2010/09/12 17:40:52 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] 9+ messages in thread
end of thread, other threads:[~2010-09-12 17:40 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-23 20:10 [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.4.2.ebuild Markus Meier (maekke)
-- strict thread matches above, loose matches on Subject: below --
2010-09-12 17:40 Raul Porcel (armin76)
2010-08-13 17:17 Joseph Jezak (josejx)
2010-08-12 12:44 Markos Chandras (hwoarang)
2010-08-10 16:03 Jeroen Roovers (jer)
2010-08-10 12:35 Christian Faulhammer (fauli)
2010-04-22 6:07 Ryan Hill (dirtyepic)
2010-04-04 20:01 Javier Villavicencio (the_paya)
2010-03-29 4:58 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