Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-tex/pythontex/
Date: Tue, 08 Dec 2015 14:52:16
Message-Id: 1449491630.22a205be750486f3baa6a9fb39e64449c97bac8c.marbre@gentoo
1 commit: 22a205be750486f3baa6a9fb39e64449c97bac8c
2 Author: Horea Christian <h.chr <AT> mail <DOT> ru>
3 AuthorDate: Mon Dec 7 12:33:50 2015 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Mon Dec 7 12:33:50 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=22a205be
7
8 dev-tex/pythontex: fixed access violation
9
10 Package-Manager: portage-2.2.26
11
12 dev-tex/pythontex/ChangeLog | 25 +++----------------------
13 dev-tex/pythontex/pythontex-0.14-r1.ebuild | 2 +-
14 dev-tex/pythontex/pythontex-9999.ebuild | 2 +-
15 3 files changed, 5 insertions(+), 24 deletions(-)
16
17 diff --git a/dev-tex/pythontex/ChangeLog b/dev-tex/pythontex/ChangeLog
18 index b283f70..27ac054 100644
19 --- a/dev-tex/pythontex/ChangeLog
20 +++ b/dev-tex/pythontex/ChangeLog
21 @@ -2,25 +2,6 @@
22 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
23 # $Id$
24
25 - 22 Jun 2015; Horea Christian <h.chr@××××.ru> pythontex-0.14-r1.ebuild,
26 - pythontex-9999.ebuild:
27 - pruned deps
28 -
29 - 05 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
30 - dev-tex/pythontex: Add github to remote-id in metadata.xml
31 -
32 -*pythontex-0.14-r1 (12 May 2015)
33 -
34 - 12 May 2015; Justin Lecher <jlec@g.o> +pythontex-0.14-r1.ebuild,
35 - -pythontex-0.14.ebuild, pythontex-9999.ebuild:
36 - dev-tex/pythontex: Fix installation of latex files, bug #548534
37 -
38 -*pythontex-0.14 (09 Mar 2015)
39 -
40 - 09 Mar 2015; Justin Lecher <jlec@g.o> +pythontex-0.14.ebuild,
41 - -pythontex-0.12.ebuild, pythontex-9999.ebuild:
42 - dev-tex/pythontex: Version Bump
43 -
44 - 06 Jan 2014; Justin Lecher <jlec@g.o> pythontex-0.12.ebuild,
45 - pythontex-9999.ebuild, +metadata.xml:
46 - Switch from git-2 to git-r3
47 + 07 Dec 2015; Horea Christian <h.chr@××××.ru> -ChangeLog,
48 + pythontex-0.14-r1.ebuild, pythontex-9999.ebuild:
49 + dev-tex/pythontex: fixed access violation
50
51 diff --git a/dev-tex/pythontex/pythontex-0.14-r1.ebuild b/dev-tex/pythontex/pythontex-0.14-r1.ebuild
52 index d6c8bef..33ba193 100644
53 --- a/dev-tex/pythontex/pythontex-0.14-r1.ebuild
54 +++ b/dev-tex/pythontex/pythontex-0.14-r1.ebuild
55 @@ -31,7 +31,7 @@ src_compile() {
56 cd ${PN} || die
57 ebegin "Compiling ${PN}"
58 rm ${PN}.sty || die
59 - latex ${PN}.ins extra || die
60 + VARTEXFONTS="${T}/fonts" latex ${PN}.ins extra || die
61 eend
62 }
63
64
65 diff --git a/dev-tex/pythontex/pythontex-9999.ebuild b/dev-tex/pythontex/pythontex-9999.ebuild
66 index 5cfce90..69c2654 100644
67 --- a/dev-tex/pythontex/pythontex-9999.ebuild
68 +++ b/dev-tex/pythontex/pythontex-9999.ebuild
69 @@ -32,7 +32,7 @@ src_compile() {
70 cd ${PN} || die
71 ebegin "Compiling ${PN}"
72 rm ${PN}.sty || die
73 - latex ${PN}.ins extra || die
74 + VARTEXFONTS="${T}/fonts" latex ${PN}.ins extra || die
75 eend
76 }