* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.5.ebuild
@ 2011-05-16 19:37 Mike Frysinger (vapier)
0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2011-05-16 19:37 UTC (permalink / raw
To: gentoo-commits
vapier 11/05/16 19:37:21
Modified: ChangeLog
Added: bison-2.5.ebuild
Log:
Version bump #367459 by taaroa.
(Portage version: 2.2.0_alpha32/cvs/Linux x86_64)
Revision Changes Path
1.98 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.97&r2=1.98
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog 6 Feb 2011 11:31:15 -0000 1.97
+++ ChangeLog 16 May 2011 19:37:21 -0000 1.98
@@ -1,6 +1,11 @@
# ChangeLog for sys-devel/bison
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.97 2011/02/06 11:31:15 leio Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.98 2011/05/16 19:37:21 vapier Exp $
+
+*bison-2.5 (16 May 2011)
+
+ 16 May 2011; Mike Frysinger <vapier@gentoo.org> +bison-2.5.ebuild:
+ Version bump #367459 by taaroa.
06 Feb 2011; Mart Raudsepp <leio@gentoo.org> bison-1.875d.ebuild,
bison-2.3.ebuild:
1.1 sys-devel/bison/bison-2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?rev=1.1&content-type=text/plain
Index: bison-2.5.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.5.ebuild,v 1.1 2011/05/16 19:37:21 vapier Exp $
EAPI="2"
inherit eutils
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_configure() {
use static && append-ldflags -static
econf $(use_enable nls)
}
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] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.5.ebuild
@ 2011-07-31 17:26 Matt Turner (mattst88)
0 siblings, 0 replies; 4+ messages in thread
From: Matt Turner (mattst88) @ 2011-07-31 17:26 UTC (permalink / raw
To: gentoo-commits
mattst88 11/07/31 17:26:47
Modified: ChangeLog bison-2.5.ebuild
Log:
Bump m4 requirement to 1.4.16, bug 375637. Also move it from RDEPEND back to DEPEND. It was originally moved in 2006 as a hack.
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Revision Changes Path
1.106 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.105&r2=1.106
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog 8 Jun 2011 13:15:01 -0000 1.105
+++ ChangeLog 31 Jul 2011 17:26:47 -0000 1.106
@@ -1,6 +1,10 @@
# ChangeLog for sys-devel/bison
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.105 2011/06/08 13:15:01 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.106 2011/07/31 17:26:47 mattst88 Exp $
+
+ 31 Jul 2011; Matt Turner <mattst88@gentoo.org> bison-2.5.ebuild:
+ Bump m4 requirement to 1.4.16, bug 375637. Also move it from RDEPEND back to
+ DEPEND. It was originally moved in 2006 as a hack.
08 Jun 2011; Kacper Kowalik <xarthisius@gentoo.org> bison-2.4.3.ebuild:
ppc64 stable wrt #367575
1.2 sys-devel/bison/bison-2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?r1=1.1&r2=1.2
Index: bison-2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bison-2.5.ebuild 16 May 2011 19:37:21 -0000 1.1
+++ bison-2.5.ebuild 31 Jul 2011 17:26:47 -0000 1.2
@@ -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/bison/bison-2.5.ebuild,v 1.1 2011/05/16 19:37:21 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.5.ebuild,v 1.2 2011/07/31 17:26:47 mattst88 Exp $
EAPI="2"
@@ -15,8 +15,9 @@
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"
+RDEPEND=""
+DEPEND="nls? ( sys-devel/gettext )
+ >=sys-devel/m4-1.4.16"
src_configure() {
use static && append-ldflags -static
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.5.ebuild
@ 2011-08-07 23:08 Mike Frysinger (vapier)
0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2011-08-07 23:08 UTC (permalink / raw
To: gentoo-commits
vapier 11/08/07 23:08:38
Modified: ChangeLog bison-2.5.ebuild
Log:
Clean up dead yacc symlink on unmerge #377469 by Michael.
(Portage version: 2.2.0_alpha46/cvs/Linux x86_64)
Revision Changes Path
1.107 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.106&r2=1.107
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog 31 Jul 2011 17:26:47 -0000 1.106
+++ ChangeLog 7 Aug 2011 23:08:38 -0000 1.107
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/bison
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.106 2011/07/31 17:26:47 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.107 2011/08/07 23:08:38 vapier Exp $
+
+ 07 Aug 2011; Mike Frysinger <vapier@gentoo.org> bison-2.5.ebuild:
+ Clean up dead yacc symlink on unmerge #377469 by Michael.
31 Jul 2011; Matt Turner <mattst88@gentoo.org> bison-2.5.ebuild:
Bump m4 requirement to 1.4.16, bug 375637. Also move it from RDEPEND back to
1.3 sys-devel/bison/bison-2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?r1=1.2&r2=1.3
Index: bison-2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bison-2.5.ebuild 31 Jul 2011 17:26:47 -0000 1.2
+++ bison-2.5.ebuild 7 Aug 2011 23:08:38 -0000 1.3
@@ -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/bison/bison-2.5.ebuild,v 1.2 2011/07/31 17:26:47 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.5.ebuild,v 1.3 2011/08/07 23:08:38 vapier Exp $
EAPI="2"
@@ -38,7 +38,16 @@
}
pkg_postinst() {
- if [[ ! -e ${ROOT}/usr/bin/yacc ]] ; then
- ln -s yacc.bison "${ROOT}"/usr/bin/yacc
+ local f="${ROOT}/usr/bin/yacc"
+ if [[ ! -e ${f} ]] ; then
+ ln -s yacc.bison "${f}"
+ fi
+}
+
+pkg_postrm() {
+ # clean up the dead symlink when we get unmerged #377469
+ local f="${ROOT}/usr/bin/yacc"
+ if [[ -L ${f} && ! -e ${f} ]] ; then
+ rm -f "${f}"
fi
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.5.ebuild
@ 2012-04-26 12:58 Alexis Ballier (aballier)
0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-26 12:58 UTC (permalink / raw
To: gentoo-commits
aballier 12/04/26 12:58:13
Modified: ChangeLog bison-2.5.ebuild
Log:
keyword ~amd64-fbsd
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Revision Changes Path
1.109 sys-devel/bison/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.109&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?rev=1.109&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/ChangeLog?r1=1.108&r2=1.109
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog 17 Aug 2011 03:43:40 -0000 1.108
+++ ChangeLog 26 Apr 2012 12:58:13 -0000 1.109
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/bison
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.108 2011/08/17 03:43:40 mattst88 Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.109 2012/04/26 12:58:13 aballier Exp $
+
+ 26 Apr 2012; Alexis Ballier <aballier@gentoo.org> bison-2.5.ebuild:
+ keyword ~amd64-fbsd
17 Aug 2011; Matt Turner <mattst88@gentoo.org> bison-2.4.2.ebuild,
bison-2.4.3.ebuild, bison-2.5.ebuild:
1.5 sys-devel/bison/bison-2.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.ebuild?r1=1.4&r2=1.5
Index: bison-2.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bison-2.5.ebuild 17 Aug 2011 03:43:40 -0000 1.4
+++ bison-2.5.ebuild 26 Apr 2012 12:58:13 -0000 1.5
@@ -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/bison/bison-2.5.ebuild,v 1.4 2011/08/17 03:43:40 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.5.ebuild,v 1.5 2012/04/26 12:58:13 aballier Exp $
EAPI="2"
@@ -12,7 +12,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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="nls static"
RDEPEND=">=sys-devel/m4-1.4.16"
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-04-26 12:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-16 19:37 [gentoo-commits] gentoo-x86 commit in sys-devel/bison: ChangeLog bison-2.5.ebuild Mike Frysinger (vapier)
-- strict thread matches above, loose matches on Subject: below --
2011-07-31 17:26 Matt Turner (mattst88)
2011-08-07 23:08 Mike Frysinger (vapier)
2012-04-26 12:58 Alexis Ballier (aballier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox