Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/dblatex/files/, app-text/dblatex/
Date: Wed, 21 Feb 2018 18:21:17
Message-Id: 1519237261.76f18b982f1926ba87875e4a644b54a829cde1ab.monsieurp@gentoo
1 commit: 76f18b982f1926ba87875e4a644b54a829cde1ab
2 Author: Zoltan Puskas <zoltan <AT> sinustrom <DOT> info>
3 AuthorDate: Mon Feb 19 07:10:40 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 21 18:21:01 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76f18b98
7
8 app-text/dblatex: fix typo in un-inkscape patch.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11 RepoMan-Options: --force
12 Closes: https://bugs.gentoo.org/647860
13 Closes: https://github.com/gentoo/gentoo/pull/7225
14
15 .../{dblatex-0.3.10.ebuild => dblatex-0.3.10-r1.ebuild} | 0
16 .../files/dblatex-0.3.10-no-inkscape-dependency.patch | 14 ++++++--------
17 2 files changed, 6 insertions(+), 8 deletions(-)
18
19 diff --git a/app-text/dblatex/dblatex-0.3.10.ebuild b/app-text/dblatex/dblatex-0.3.10-r1.ebuild
20 similarity index 100%
21 rename from app-text/dblatex/dblatex-0.3.10.ebuild
22 rename to app-text/dblatex/dblatex-0.3.10-r1.ebuild
23
24 diff --git a/app-text/dblatex/files/dblatex-0.3.10-no-inkscape-dependency.patch b/app-text/dblatex/files/dblatex-0.3.10-no-inkscape-dependency.patch
25 index 225c73964a5..c501cee6304 100644
26 --- a/app-text/dblatex/files/dblatex-0.3.10-no-inkscape-dependency.patch
27 +++ b/app-text/dblatex/files/dblatex-0.3.10-no-inkscape-dependency.patch
28 @@ -1,14 +1,12 @@
29 -diff -Naur dblatex-0.3.10-orig/lib/dbtexmf/core/imagedata.py dblatex-0.3.10/lib/dbtexmf/core/imagedata.py
30 ---- dblatex-0.3.10-orig/lib/dbtexmf/core/imagedata.py 2016-10-02 14:21:16.000000000 -0700
31 -+++ dblatex-0.3.10/lib/dbtexmf/core/imagedata.py 2017-06-25 18:26:00.302168655 -0700
32 -@@ -178,8 +178,8 @@
33 +diff -Naur dblatex-0.3.10.orig/lib/dbtexmf/core/imagedata.py dblatex-0.3.10/lib/dbtexmf/core/imagedata.py
34 +--- dblatex-0.3.10.orig/lib/dbtexmf/core/imagedata.py 2018-02-16 17:00:42.658484437 +0200
35 ++++ dblatex-0.3.10/lib/dbtexmf/core/imagedata.py 2018-02-16 16:52:56.339441569 +0200
36 +@@ -178,7 +178,7 @@
37 class SvgConverter(ImageConverter):
38 def __init__(self, imgsrc, imgdst="", docformat="", backend=""):
39 ImageConverter.__init__(self, imgsrc="svg", imgdst=imgdst)
40 - self.add_command(["inkscape", "-z", "-D", "--export-%(dst)s=%(output)s",
41 -- "%(input)s"])
42 -+ self.add_command(["rsvg-convert", "-f", "%(dst)s", "-o","\"%(output)s\"",
43 -+ "\"%(insput)s\""])
44 ++ self.add_command(["rsvg-convert", "-f", "%(dst)s", "-o","%(output)s",
45 + "%(input)s"])
46
47
48 - class FormatRule: