Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/iso-codes: ChangeLog iso-codes-3.14.ebuild
Date: Tue, 30 Mar 2010 23:17:36
Message-Id: E1Nwkgg-00016h-1h@stork.gentoo.org
1 eva 10/03/30 23:17:34
2
3 Modified: ChangeLog iso-codes-3.14.ebuild
4 Log:
5 Fix missing || before die, thanks to Arfrever for spotting it.
6 (Portage version: 2.2_rc67/cvs/Linux i686)
7
8 Revision Changes Path
9 1.86 app-text/iso-codes/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/iso-codes/ChangeLog?rev=1.86&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/iso-codes/ChangeLog?rev=1.86&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/iso-codes/ChangeLog?r1=1.85&r2=1.86
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v
18 retrieving revision 1.85
19 retrieving revision 1.86
20 diff -u -r1.85 -r1.86
21 --- ChangeLog 25 Mar 2010 22:34:33 -0000 1.85
22 +++ ChangeLog 30 Mar 2010 23:17:33 -0000 1.86
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-text/iso-codes
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.85 2010/03/25 22:34:33 eva Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/ChangeLog,v 1.86 2010/03/30 23:17:33 eva Exp $
28 +
29 + 30 Mar 2010; Gilles Dartiguelongue <eva@g.o> iso-codes-3.14.ebuild:
30 + Fix missing || before die, thanks to Arfrever for spotting it.
31
32 25 Mar 2010; Gilles Dartiguelongue <eva@g.o> -iso-codes-3.8.ebuild,
33 +iso-codes-3.14.ebuild:
34
35
36
37 1.2 app-text/iso-codes/iso-codes-3.14.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/iso-codes/iso-codes-3.14.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/iso-codes/iso-codes-3.14.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/iso-codes/iso-codes-3.14.ebuild?r1=1.1&r2=1.2
42
43 Index: iso-codes-3.14.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.14.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- iso-codes-3.14.ebuild 25 Mar 2010 22:34:33 -0000 1.1
50 +++ iso-codes-3.14.ebuild 30 Mar 2010 23:17:33 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.14.ebuild,v 1.1 2010/03/25 22:34:33 eva Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.14.ebuild,v 1.2 2010/03/30 23:17:33 eva Exp $
56
57 EAPI="2"
58
59 @@ -40,7 +40,7 @@
60 sed -e "s:pofiles =.*:pofiles = ${mylinguas}:" \
61 -e "s:mofiles =.*:mofiles = ${mylinguas//.po/.mo}:" \
62 -i "${S}/${norm}/Makefile.am" "${S}/${norm}/Makefile.in" \
63 - die "sed in ${norm} folder failed"
64 + || die "sed in ${norm} folder failed"
65 fi
66 done
67 }