Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/dvisvgm/
Date: Thu, 20 Jan 2022 12:08:39
Message-Id: 1642680459.8ec437aa73666a6ed7959129302d8517dafdab76.sam@gentoo
1 commit: 8ec437aa73666a6ed7959129302d8517dafdab76
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 12:05:14 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 12:07:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ec437aa
7
8 app-text/dvisvgm: add 2.13
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-text/dvisvgm/Manifest | 1 +
13 app-text/dvisvgm/dvisvgm-2.13.ebuild | 44 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/app-text/dvisvgm/Manifest b/app-text/dvisvgm/Manifest
17 index f385c668afb2..15acd269e7cc 100644
18 --- a/app-text/dvisvgm/Manifest
19 +++ b/app-text/dvisvgm/Manifest
20 @@ -1,3 +1,4 @@
21 DIST dvisvgm-2.10.1.tar.gz 3110061 BLAKE2B 3f3bb50baa587c1d20061d235885b4c921efbd3400aa7e4d2df872e37e0ef57d57ae4713fedfd0587d7fcffe7e0286ca55e319e6e82b3b72b49c5df5fa08f633 SHA512 8faa68b13a0e351ba54b5c9acb1dbda6e081eddd167b2cc599208cc2e7967c116c3d105d29df224165daff88f81acb3135d936ec9b2da4dce2c82c197f6a4e78
22 DIST dvisvgm-2.11.tar.gz 3111889 BLAKE2B 7944b62bee48173f1ed0e2de5ff0c8090322da925abdd4a57611ccb5c055ba602a76ab4e3dbddb83d73ac19a23ce4b657d96a3830f76eb8939f3e3a9c0890cd1 SHA512 bbefff027f710a0370d179e42f1775cb37765836969fcf9e27e5e05d46565e6db74414440823068b04dbef0dac768b70b2573359fe729c12b27f6d678f41d55f
23 DIST dvisvgm-2.12.tar.gz 3164951 BLAKE2B 249f1ee43444ac95ed512eac803ab073e1ec04a58266fc569a272014510ab373890fdc7be2207d2037742f4192e266eb214078c0bb448de953ffdf5c29deabba SHA512 3f0ca530f24a8866839d71093dc6fd84f2a0f984d06cdd189425aeeb7c7e7e3c9e283d1fe2e7e9ec79845f36c8bd4d973224a321b8ad39da229a3b4fd59b7008
24 +DIST dvisvgm-2.13.tar.gz 3174723 BLAKE2B bee6efd0fd32b1b0c116820df955a3b76cfd795acb75063f35bf2b6b15b6bacc8ddc60d9622d8554c80f7c2ab44c85c78a120d4e18fd7a0c902eabb70b6060fc SHA512 264643f9d9dcfa7e1d20df31c3514108ed45c88e0bd0f1ce88c37af22ae57447d624537720e902c5e5e799906d567999c9449fea411f755e75e4c4158e37de30
25
26 diff --git a/app-text/dvisvgm/dvisvgm-2.13.ebuild b/app-text/dvisvgm/dvisvgm-2.13.ebuild
27 new file mode 100644
28 index 000000000000..25e4d4acd0cc
29 --- /dev/null
30 +++ b/app-text/dvisvgm/dvisvgm-2.13.ebuild
31 @@ -0,0 +1,44 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DESCRIPTION="Converts DVI files to SVG"
38 +HOMEPAGE="https://dvisvgm.de/"
39 +SRC_URI="https://github.com/mgieseki/dvisvgm/releases/download/${PV}/${P}.tar.gz"
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
44 +IUSE="test"
45 +
46 +# Tests don't work from ${WORKDIR}: kpathsea tries to search in relative
47 +# directories from where the binary is executed.
48 +# We cannot really use absolute paths in the kpathsea configuration since that
49 +# would make it harder for prefix installs.
50 +RESTRICT="test"
51 +
52 +RDEPEND=">=app-arch/brotli-1.0.5:=
53 + app-text/ghostscript-gpl:=
54 + dev-libs/kpathsea:=
55 + dev-libs/openssl:=
56 + >=dev-libs/xxhash-0.8.1
57 + >=media-gfx/potrace-1.10-r1
58 + media-libs/freetype:2
59 + >=media-libs/woff2-1.0.2
60 + sys-libs/zlib
61 + virtual/tex-base"
62 +DEPEND="${RDEPEND}
63 + test? ( >=dev-cpp/gtest-1.11 )"
64 +BDEPEND="app-text/asciidoc
65 + app-text/xmlto
66 + dev-libs/libxslt
67 + virtual/pkgconfig"
68 +
69 +src_configure() {
70 + local myargs=(
71 + --without-ttfautohint
72 + )
73 +
74 + econf "${myargs[@]}"
75 +}