Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/texlive-core: texlive-core-2013.ebuild ChangeLog
Date: Tue, 27 Aug 2013 16:26:58
Message-Id: 20130827162647.1AAFC2004C@flycatcher.gentoo.org
1 aballier 13/08/27 16:26:47
2
3 Modified: texlive-core-2013.ebuild ChangeLog
4 Log:
5 handle KanjiMaps too when stripping updmap.cfg, bug #481130
6
7 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
8
9 Revision Changes Path
10 1.8 app-text/texlive-core/texlive-core-2013.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/texlive-core-2013.ebuild?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/texlive-core-2013.ebuild?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/texlive-core-2013.ebuild?r1=1.7&r2=1.8
15
16 Index: texlive-core-2013.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2013.ebuild,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- texlive-core-2013.ebuild 27 Aug 2013 16:09:28 -0000 1.7
23 +++ texlive-core-2013.ebuild 27 Aug 2013 16:26:46 -0000 1.8
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2013.ebuild,v 1.7 2013/08/27 16:09:28 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/texlive-core-2013.ebuild,v 1.8 2013/08/27 16:26:46 aballier Exp $
29
30 EAPI=5
31
32 @@ -237,12 +237,13 @@
33 cd "${B}"
34 # Mimic updmap --syncwithtrees to enable only fonts installed
35 # Code copied from updmap script
36 - for i in `egrep '^(Mixed)?Map' "texmf-dist/web2c/updmap.cfg" | sed 's@.* @@'`; do
37 + for i in `egrep '^(Mixed|Kanji)?Map' "texmf-dist/web2c/updmap.cfg" | sed 's@.* @@'`; do
38 texlive-common_is_file_present_in_texmf "$i" || echo "$i"
39 done > "${T}/updmap_update"
40 {
41 sed 's@/@\\/@g; s@^@/^MixedMap[ ]*@; s@$@$/s/^/#! /@' <"${T}/updmap_update"
42 sed 's@/@\\/@g; s@^@/^Map[ ]*@; s@$@$/s/^/#! /@' <"${T}/updmap_update"
43 + sed 's@/@\\/@g; s@^@/^KanjiMap[ ]*@; s@$@$/s/^/#! /@' <"${T}/updmap_update"
44 } > "${T}/updmap_update2"
45 sed -f "${T}/updmap_update2" "texmf-dist/web2c/updmap.cfg" > "${T}/updmap_update3"\
46 && cat "${T}/updmap_update3" > "texmf-dist/web2c/updmap.cfg"
47
48
49
50 1.210 app-text/texlive-core/ChangeLog
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/ChangeLog?rev=1.210&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/ChangeLog?rev=1.210&content-type=text/plain
54 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/texlive-core/ChangeLog?r1=1.209&r2=1.210
55
56 Index: ChangeLog
57 ===================================================================
58 RCS file: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v
59 retrieving revision 1.209
60 retrieving revision 1.210
61 diff -u -r1.209 -r1.210
62 --- ChangeLog 27 Aug 2013 16:09:28 -0000 1.209
63 +++ ChangeLog 27 Aug 2013 16:26:46 -0000 1.210
64 @@ -1,6 +1,9 @@
65 # ChangeLog for app-text/texlive-core
66 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
67 -# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.209 2013/08/27 16:09:28 aballier Exp $
68 +# $Header: /var/cvsroot/gentoo-x86/app-text/texlive-core/ChangeLog,v 1.210 2013/08/27 16:26:46 aballier Exp $
69 +
70 + 27 Aug 2013; Alexis Ballier <aballier@g.o> texlive-core-2013.ebuild:
71 + handle KanjiMaps too when stripping updmap.cfg, bug #481130
72
73 27 Aug 2013; Alexis Ballier <aballier@g.o> texlive-core-2013.ebuild:
74 tests work these days even if they do not have a good coverage, enable them