Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-tex/pythontex/
Date: Thu, 07 Nov 2013 20:05:22
Message-Id: 1382307861.c10a1a01b9febe9a3f5363849be0d8a5086f90f3.alexxy@gentoo
1 commit: c10a1a01b9febe9a3f5363849be0d8a5086f90f3
2 Author: Horea Christian <h.chr <AT> mail <DOT> ru>
3 AuthorDate: Sun Oct 20 22:24:21 2013 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 20 22:24:21 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c10a1a01
7
8 Fixed latex output destination (no longer /dev/null)
9
10 ---
11 dev-tex/pythontex/pythontex-0.12.ebuild | 2 +-
12 dev-tex/pythontex/pythontex-9999.ebuild | 3 ++-
13 2 files changed, 3 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-tex/pythontex/pythontex-0.12.ebuild b/dev-tex/pythontex/pythontex-0.12.ebuild
16 index 7f85e66..453931b 100644
17 --- a/dev-tex/pythontex/pythontex-0.12.ebuild
18 +++ b/dev-tex/pythontex/pythontex-0.12.ebuild
19 @@ -32,7 +32,7 @@ src_prepare() {
20
21 src_compile() {
22 ebegin "Compiling ${PN}"
23 - latex ${PN}.ins extra >/dev/null || die "Building style from ${PN}.ins failed"
24 + latex ${PN}.ins extra >${T}/build-latex.log || die "Building style from ${PN}.ins failed"
25 eend
26 sed -i -e '1i#!/usr/bin/env python' depythontex2.py || die "adding shebang failed!"
27 sed -i -e '1i#!/usr/bin/env python' depythontex3.py || die "adding shebang failed!"
28
29 diff --git a/dev-tex/pythontex/pythontex-9999.ebuild b/dev-tex/pythontex/pythontex-9999.ebuild
30 index 56127cb..9635d55 100644
31 --- a/dev-tex/pythontex/pythontex-9999.ebuild
32 +++ b/dev-tex/pythontex/pythontex-9999.ebuild
33 @@ -31,8 +31,9 @@ src_prepare() {
34 }
35
36 src_compile() {
37 + pwd
38 ebegin "Compiling ${PN}"
39 - latex ${PN}.ins extra >/dev/null || die "Building style from ${PN}.ins failed"
40 + latex ${PN}.ins extra >${T}/build-latex.log || die "Building style from ${PN}.ins failed"
41 eend
42 }