Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/bison: bison-2.5.1.ebuild
Date: Wed, 06 Jun 2012 19:09:55
Message-Id: 20120606190945.E59B32004B@flycatcher.gentoo.org
1 ssuominen 12/06/06 19:09:45
2
3 Modified: bison-2.5.1.ebuild
4 Log:
5 Minor stylefix to match other base-system pkgs
6
7 (Portage version: 2.2.0_alpha109/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 sys-devel/bison/bison-2.5.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bison/bison-2.5.1.ebuild?r1=1.1&r2=1.2
15
16 Index: bison-2.5.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.5.1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- bison-2.5.1.ebuild 6 Jun 2012 14:34:23 -0000 1.1
23 +++ bison-2.5.1.ebuild 6 Jun 2012 19:09:45 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.5.1.ebuild,v 1.1 2012/06/06 14:34:23 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-2.5.1.ebuild,v 1.2 2012/06/06 19:09:45 ssuominen Exp $
29
30 EAPI=4
31
32 @@ -46,7 +46,7 @@
33
34 pkg_postinst() {
35 local f="${EROOT}/usr/bin/yacc"
36 - if [[ ! -e ${f} ]]; then
37 + if [[ ! -e ${f} ]] ; then
38 ln -s yacc.bison "${f}"
39 fi
40 }
41 @@ -54,7 +54,7 @@
42 pkg_postrm() {
43 # clean up the dead symlink when we get unmerged #377469
44 local f="${EROOT}/usr/bin/yacc"
45 - if [[ -L ${f} && ! -e ${f} ]]; then
46 + if [[ -L ${f} && ! -e ${f} ]] ; then
47 rm -f "${f}"
48 fi
49 }