* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2010-11-16 20:32 Diego Petteno (flameeyes)
0 siblings, 0 replies; 11+ messages in thread
From: Diego Petteno (flameeyes) @ 2010-11-16 20:32 UTC (permalink / raw
To: gentoo-commits
flameeyes 10/11/16 20:32:45
Modified: ChangeLog
Added: flex-2.5.35_p10.ebuild
Log:
Add a flex version with sanitised autotools that can be cross-compiled without further workarounds; the new version also uses the latest Debian patch (and makes it easier to use it). Closes bug #345785.
(Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
Revision Changes Path
1.84 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.83&r2=1.84
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog 8 Jun 2010 19:00:00 -0000 1.83
+++ ChangeLog 16 Nov 2010 20:32:45 -0000 1.84
@@ -1,6 +1,14 @@
# ChangeLog for sys-devel/flex
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.83 2010/06/08 19:00:00 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.84 2010/11/16 20:32:45 flameeyes Exp $
+
+*flex-2.5.35_p10 (16 Nov 2010)
+
+ 16 Nov 2010; Diego E. Pettenò <flameeyes@gentoo.org>
+ +flex-2.5.35_p10.ebuild, +files/flex-2.5.35-saneautotools.patch:
+ Add a flex version with sanitised autotools that can be cross-compiled
+ without further workarounds; the new version also uses the latest Debian
+ patch (and makes it easier to use it). Closes bug #345785.
08 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> flex-2.5.35.ebuild:
Fix DESCRIPTION wrt #323237 by Jaak Ristioja.
1.1 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.1&content-type=text/plain
Index: flex-2.5.35_p10.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.1 2010/11/16 20:32:45 flameeyes Exp $
EAPI=2
inherit eutils flag-o-matic autotools
if [[ ${PV} == *_p* ]]; then
DEB_DIFF=${PN}_${PV/_p/-}
fi
MY_P=${P%_p*}
DESCRIPTION="The Fast Lexical Analyzer"
HOMEPAGE="http://flex.sourceforge.net/"
SRC_URI="mirror://sourceforge/flex/${MY_P}.tar.bz2
${DEB_DIFF:+mirror://debian/pool/main/f/flex/${DEB_DIFF}.diff.gz}"
LICENSE="FLEX"
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=""
S=${WORKDIR}/${MY_P}
src_prepare() {
[[ -n ${DEB_DIFF} ]] && epatch "${WORKDIR}"/${DEB_DIFF}.diff
epatch "${FILESDIR}"/${PN}-2.5.35-gcc44.patch
epatch "${FILESDIR}"/${PN}-2.5.35-saneautotools.patch
eautoreconf
}
src_configure() {
use static && append-ldflags -static
econf $(use_enable nls)
}
src_install() {
emake install DESTDIR="${D}" || die "make install failed"
dodoc AUTHORS ChangeLog NEWS ONEWS README* THANKS TODO || die
dosym flex /usr/bin/lex
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2011-09-23 17:33 Mike Frysinger (vapier)
0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2011-09-23 17:33 UTC (permalink / raw
To: gentoo-commits
vapier 11/09/23 17:33:03
Modified: ChangeLog flex-2.5.35_p10.ebuild
Log:
Upgrade to EAPI 3 for prefix users #353066 by Jeremy Olexa.
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
Revision Changes Path
1.88 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.87&r2=1.88
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog 6 Sep 2011 18:59:44 -0000 1.87
+++ ChangeLog 23 Sep 2011 17:33:03 -0000 1.88
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/flex
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.87 2011/09/06 18:59:44 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.88 2011/09/23 17:33:03 vapier Exp $
+
+ 23 Sep 2011; Mike Frysinger <vapier@gentoo.org> flex-2.5.35_p10.ebuild:
+ Upgrade to EAPI 3 for prefix users #353066 by Jeremy Olexa.
06 Sep 2011; Matt Turner <mattst88@gentoo.org> flex-2.5.35.ebuild,
flex-2.5.35_p10.ebuild:
1.5 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?r1=1.4&r2=1.5
Index: flex-2.5.35_p10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- flex-2.5.35_p10.ebuild 6 Sep 2011 18:59:45 -0000 1.4
+++ flex-2.5.35_p10.ebuild 23 Sep 2011 17:33:03 -0000 1.5
@@ -1,8 +1,8 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.4 2011/09/06 18:59:45 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.5 2011/09/23 17:33:03 vapier Exp $
-EAPI=2
+EAPI="3"
inherit eutils flag-o-matic autotools
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2011-09-24 21:09 Tony Vroon (chainsaw)
0 siblings, 0 replies; 11+ messages in thread
From: Tony Vroon (chainsaw) @ 2011-09-24 21:09 UTC (permalink / raw
To: gentoo-commits
chainsaw 11/09/24 21:09:51
Modified: ChangeLog flex-2.5.35_p10.ebuild
Log:
Marked stable on AMD64 based on arch testing by Blain "doc235" Anderson & Agostino "ago" Sarubbo in bug #384221.
(Portage version: 2.1.10.18/cvs/Linux x86_64)
Revision Changes Path
1.89 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.88&r2=1.89
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog 23 Sep 2011 17:33:03 -0000 1.88
+++ ChangeLog 24 Sep 2011 21:09:50 -0000 1.89
@@ -1,6 +1,10 @@
# ChangeLog for sys-devel/flex
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.88 2011/09/23 17:33:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.89 2011/09/24 21:09:50 chainsaw Exp $
+
+ 24 Sep 2011; Tony Vroon <chainsaw@gentoo.org> flex-2.5.35_p10.ebuild:
+ Marked stable on AMD64 based on arch testing by Blain "doc235" Anderson &
+ Agostino "ago" Sarubbo in bug #384221.
23 Sep 2011; Mike Frysinger <vapier@gentoo.org> flex-2.5.35_p10.ebuild:
Upgrade to EAPI 3 for prefix users #353066 by Jeremy Olexa.
1.6 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?r1=1.5&r2=1.6
Index: flex-2.5.35_p10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- flex-2.5.35_p10.ebuild 23 Sep 2011 17:33:03 -0000 1.5
+++ flex-2.5.35_p10.ebuild 24 Sep 2011 21:09:50 -0000 1.6
@@ -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/flex/flex-2.5.35_p10.ebuild,v 1.5 2011/09/23 17:33:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.6 2011/09/24 21:09:50 chainsaw Exp $
EAPI="3"
@@ -19,7 +19,7 @@
LICENSE="FLEX"
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 test"
RDEPEND="sys-devel/m4"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2011-10-01 3:28 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 11+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-10-01 3:28 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 11/10/01 03:28:52
Modified: ChangeLog flex-2.5.35_p10.ebuild
Log:
x86 stable wrt bug #384221
(Portage version: 2.1.10.11/cvs/Linux i686)
Revision Changes Path
1.90 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.89&r2=1.90
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog 24 Sep 2011 21:09:50 -0000 1.89
+++ ChangeLog 1 Oct 2011 03:28:52 -0000 1.90
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/flex
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.89 2011/09/24 21:09:50 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.90 2011/10/01 03:28:52 phajdan.jr Exp $
+
+ 01 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> flex-2.5.35_p10.ebuild:
+ x86 stable wrt bug #384221
24 Sep 2011; Tony Vroon <chainsaw@gentoo.org> flex-2.5.35_p10.ebuild:
Marked stable on AMD64 based on arch testing by Blain "doc235" Anderson &
1.7 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?r1=1.6&r2=1.7
Index: flex-2.5.35_p10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- flex-2.5.35_p10.ebuild 24 Sep 2011 21:09:50 -0000 1.6
+++ flex-2.5.35_p10.ebuild 1 Oct 2011 03:28:52 -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/flex/flex-2.5.35_p10.ebuild,v 1.6 2011/09/24 21:09:50 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.7 2011/10/01 03:28:52 phajdan.jr Exp $
EAPI="3"
@@ -19,7 +19,7 @@
LICENSE="FLEX"
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 test"
RDEPEND="sys-devel/m4"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2011-10-08 11:02 Markus Meier (maekke)
0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2011-10-08 11:02 UTC (permalink / raw
To: gentoo-commits
maekke 11/10/08 11:02:40
Modified: ChangeLog flex-2.5.35_p10.ebuild
Log:
arm stable, bug #384221
(Portage version: 2.1.10.20/cvs/Linux i686)
Revision Changes Path
1.91 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.90&r2=1.91
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog 1 Oct 2011 03:28:52 -0000 1.90
+++ ChangeLog 8 Oct 2011 11:02:40 -0000 1.91
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/flex
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.90 2011/10/01 03:28:52 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.91 2011/10/08 11:02:40 maekke Exp $
+
+ 08 Oct 2011; Markus Meier <maekke@gentoo.org> flex-2.5.35_p10.ebuild:
+ arm stable, bug #384221
01 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> flex-2.5.35_p10.ebuild:
x86 stable wrt bug #384221
1.8 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?r1=1.7&r2=1.8
Index: flex-2.5.35_p10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- flex-2.5.35_p10.ebuild 1 Oct 2011 03:28:52 -0000 1.7
+++ flex-2.5.35_p10.ebuild 8 Oct 2011 11:02:40 -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/flex/flex-2.5.35_p10.ebuild,v 1.7 2011/10/01 03:28:52 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.8 2011/10/08 11:02:40 maekke Exp $
EAPI="3"
@@ -19,7 +19,7 @@
LICENSE="FLEX"
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 test"
RDEPEND="sys-devel/m4"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2011-10-09 16:58 Jeroen Roovers (jer)
0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-09 16:58 UTC (permalink / raw
To: gentoo-commits
jer 11/10/09 16:58:43
Modified: ChangeLog flex-2.5.35_p10.ebuild
Log:
Stable for HPPA (bug #384221).
(Portage version: 2.2.0_alpha64/cvs/Linux x86_64)
Revision Changes Path
1.92 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.91&r2=1.92
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog 8 Oct 2011 11:02:40 -0000 1.91
+++ ChangeLog 9 Oct 2011 16:58:43 -0000 1.92
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/flex
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.91 2011/10/08 11:02:40 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.92 2011/10/09 16:58:43 jer Exp $
+
+ 09 Oct 2011; Jeroen Roovers <jer@gentoo.org> flex-2.5.35_p10.ebuild:
+ Stable for HPPA (bug #384221).
08 Oct 2011; Markus Meier <maekke@gentoo.org> flex-2.5.35_p10.ebuild:
arm stable, bug #384221
1.9 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?r1=1.8&r2=1.9
Index: flex-2.5.35_p10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- flex-2.5.35_p10.ebuild 8 Oct 2011 11:02:40 -0000 1.8
+++ flex-2.5.35_p10.ebuild 9 Oct 2011 16:58:43 -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/flex/flex-2.5.35_p10.ebuild,v 1.8 2011/10/08 11:02:40 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.9 2011/10/09 16:58:43 jer Exp $
EAPI="3"
@@ -19,7 +19,7 @@
LICENSE="FLEX"
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 test"
RDEPEND="sys-devel/m4"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2011-10-12 10:43 Raul Porcel (armin76)
0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2011-10-12 10:43 UTC (permalink / raw
To: gentoo-commits
armin76 11/10/12 10:43:10
Modified: ChangeLog flex-2.5.35_p10.ebuild
Log:
alpha/ia64/m68k/s390/sh/sparc stable wrt #384221
(Portage version: 2.1.10.11/cvs/Linux ia64)
Revision Changes Path
1.93 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.93&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.93&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.92&r2=1.93
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog 9 Oct 2011 16:58:43 -0000 1.92
+++ ChangeLog 12 Oct 2011 10:43:10 -0000 1.93
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/flex
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.92 2011/10/09 16:58:43 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.93 2011/10/12 10:43:10 armin76 Exp $
+
+ 12 Oct 2011; Raúl Porcel <armin76@gentoo.org> flex-2.5.35_p10.ebuild:
+ alpha/ia64/m68k/s390/sh/sparc stable wrt #384221
09 Oct 2011; Jeroen Roovers <jer@gentoo.org> flex-2.5.35_p10.ebuild:
Stable for HPPA (bug #384221).
1.10 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?r1=1.9&r2=1.10
Index: flex-2.5.35_p10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- flex-2.5.35_p10.ebuild 9 Oct 2011 16:58:43 -0000 1.9
+++ flex-2.5.35_p10.ebuild 12 Oct 2011 10:43:10 -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/flex/flex-2.5.35_p10.ebuild,v 1.9 2011/10/09 16:58:43 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.10 2011/10/12 10:43:10 armin76 Exp $
EAPI="3"
@@ -19,7 +19,7 @@
LICENSE="FLEX"
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 test"
RDEPEND="sys-devel/m4"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2011-10-20 18:25 Brent Baude (ranger)
0 siblings, 0 replies; 11+ messages in thread
From: Brent Baude (ranger) @ 2011-10-20 18:25 UTC (permalink / raw
To: gentoo-commits
ranger 11/10/20 18:25:48
Modified: ChangeLog flex-2.5.35_p10.ebuild
Log:
Marking flex-2.5.35_p10 ppc for bug 384221
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.94 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.93&r2=1.94
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog 12 Oct 2011 10:43:10 -0000 1.93
+++ ChangeLog 20 Oct 2011 18:25:48 -0000 1.94
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/flex
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.93 2011/10/12 10:43:10 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.94 2011/10/20 18:25:48 ranger Exp $
+
+ 20 Oct 2011; Brent Baude <ranger@gentoo.org> flex-2.5.35_p10.ebuild:
+ Marking flex-2.5.35_p10 ppc for bug 384221
12 Oct 2011; Raúl Porcel <armin76@gentoo.org> flex-2.5.35_p10.ebuild:
alpha/ia64/m68k/s390/sh/sparc stable wrt #384221
1.11 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?r1=1.10&r2=1.11
Index: flex-2.5.35_p10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- flex-2.5.35_p10.ebuild 12 Oct 2011 10:43:10 -0000 1.10
+++ flex-2.5.35_p10.ebuild 20 Oct 2011 18:25:48 -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/flex/flex-2.5.35_p10.ebuild,v 1.10 2011/10/12 10:43:10 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.11 2011/10/20 18:25:48 ranger Exp $
EAPI="3"
@@ -19,7 +19,7 @@
LICENSE="FLEX"
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 test"
RDEPEND="sys-devel/m4"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2011-11-27 18:07 Mike Frysinger (vapier)
0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2011-11-27 18:07 UTC (permalink / raw
To: gentoo-commits
vapier 11/11/27 18:07:54
Modified: ChangeLog flex-2.5.35_p10.ebuild
Log:
Add comment about needing bison and not general yacc.
(Portage version: 2.2.0_alpha75/cvs/Linux x86_64)
Revision Changes Path
1.95 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.95&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.95&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.94&r2=1.95
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog 20 Oct 2011 18:25:48 -0000 1.94
+++ ChangeLog 27 Nov 2011 18:07:54 -0000 1.95
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/flex
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.94 2011/10/20 18:25:48 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.95 2011/11/27 18:07:54 vapier Exp $
+
+ 27 Nov 2011; Mike Frysinger <vapier@gentoo.org> flex-2.5.35_p10.ebuild:
+ Add comment about needing bison and not general yacc.
20 Oct 2011; Brent Baude <ranger@gentoo.org> flex-2.5.35_p10.ebuild:
Marking flex-2.5.35_p10 ppc for bug 384221
1.12 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?r1=1.11&r2=1.12
Index: flex-2.5.35_p10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- flex-2.5.35_p10.ebuild 20 Oct 2011 18:25:48 -0000 1.11
+++ flex-2.5.35_p10.ebuild 27 Nov 2011 18:07:54 -0000 1.12
@@ -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/flex/flex-2.5.35_p10.ebuild,v 1.11 2011/10/20 18:25:48 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.12 2011/11/27 18:07:54 vapier Exp $
EAPI="3"
@@ -22,6 +22,7 @@
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="nls static test"
+# We want bison explicitly and not yacc in general #381273
RDEPEND="sys-devel/m4"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2012-01-31 16:05 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 11+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-01-31 16:05 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/01/31 16:05:08
Modified: ChangeLog flex-2.5.35_p10.ebuild
Log:
ppc64 stable wrt #384221
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Revision Changes Path
1.96 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.96&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.96&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.95&r2=1.96
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog 27 Nov 2011 18:07:54 -0000 1.95
+++ ChangeLog 31 Jan 2012 16:05:08 -0000 1.96
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/flex
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.95 2011/11/27 18:07:54 vapier Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.96 2012/01/31 16:05:08 ssuominen Exp $
+
+ 31 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> flex-2.5.35_p10.ebuild:
+ ppc64 stable wrt #384221
27 Nov 2011; Mike Frysinger <vapier@gentoo.org> flex-2.5.35_p10.ebuild:
Add comment about needing bison and not general yacc.
1.13 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?r1=1.12&r2=1.13
Index: flex-2.5.35_p10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- flex-2.5.35_p10.ebuild 27 Nov 2011 18:07:54 -0000 1.12
+++ flex-2.5.35_p10.ebuild 31 Jan 2012 16:05:08 -0000 1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.12 2011/11/27 18:07:54 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.13 2012/01/31 16:05:08 ssuominen Exp $
EAPI="3"
@@ -19,7 +19,7 @@
LICENSE="FLEX"
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 test"
# We want bison explicitly and not yacc in general #381273
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild
@ 2012-04-26 13:12 Alexis Ballier (aballier)
0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-26 13:12 UTC (permalink / raw
To: gentoo-commits
aballier 12/04/26 13:12:45
Modified: ChangeLog flex-2.5.35_p10.ebuild
Log:
keyword ~amd64-fbsd
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Revision Changes Path
1.97 sys-devel/flex/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/ChangeLog?r1=1.96&r2=1.97
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog 31 Jan 2012 16:05:08 -0000 1.96
+++ ChangeLog 26 Apr 2012 13:12:45 -0000 1.97
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/flex
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.96 2012/01/31 16:05:08 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/ChangeLog,v 1.97 2012/04/26 13:12:45 aballier Exp $
+
+ 26 Apr 2012; Alexis Ballier <aballier@gentoo.org> flex-2.5.35_p10.ebuild:
+ keyword ~amd64-fbsd
31 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> flex-2.5.35_p10.ebuild:
ppc64 stable wrt #384221
1.14 sys-devel/flex/flex-2.5.35_p10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild?r1=1.13&r2=1.14
Index: flex-2.5.35_p10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- flex-2.5.35_p10.ebuild 31 Jan 2012 16:05:08 -0000 1.13
+++ flex-2.5.35_p10.ebuild 26 Apr 2012 13:12:45 -0000 1.14
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.13 2012/01/31 16:05:08 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/flex/flex-2.5.35_p10.ebuild,v 1.14 2012/04/26 13:12:45 aballier Exp $
EAPI="3"
@@ -19,7 +19,7 @@
LICENSE="FLEX"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="nls static test"
# We want bison explicitly and not yacc in general #381273
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2012-04-26 13:13 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-27 18:07 [gentoo-commits] gentoo-x86 commit in sys-devel/flex: ChangeLog flex-2.5.35_p10.ebuild Mike Frysinger (vapier)
-- strict thread matches above, loose matches on Subject: below --
2012-04-26 13:12 Alexis Ballier (aballier)
2012-01-31 16:05 Samuli Suominen (ssuominen)
2011-10-20 18:25 Brent Baude (ranger)
2011-10-12 10:43 Raul Porcel (armin76)
2011-10-09 16:58 Jeroen Roovers (jer)
2011-10-08 11:02 Markus Meier (maekke)
2011-10-01 3:28 PaweA Hajdan (phajdan.jr)
2011-09-24 21:09 Tony Vroon (chainsaw)
2011-09-23 17:33 Mike Frysinger (vapier)
2010-11-16 20:32 Diego Petteno (flameeyes)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox