Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libgepub/
Date: Mon, 28 Aug 2017 22:05:58
Message-Id: 1503957948.84e3444a3252c25ccad8571c829880e2670a7c1f.eva@gentoo
1 commit: 84e3444a3252c25ccad8571c829880e2670a7c1f
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 28 21:42:05 2017 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 28 22:05:48 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84e3444a
7
8 app-text/libgepub: version bump 0.4 → 0.5.2
9
10 Switch to meson build system.
11
12 Package-Manager: Portage-2.3.8, Repoman-2.3.3
13
14 app-text/libgepub/Manifest | 1 +
15 app-text/libgepub/libgepub-0.5.2.ebuild | 32 ++++++++++++++++++++++++++++++++
16 2 files changed, 33 insertions(+)
17
18 diff --git a/app-text/libgepub/Manifest b/app-text/libgepub/Manifest
19 index af1943e2e2b..2c5899cdb56 100644
20 --- a/app-text/libgepub/Manifest
21 +++ b/app-text/libgepub/Manifest
22 @@ -1 +1,2 @@
23 DIST libgepub-0.4.tar.xz 246016 SHA256 5666a1c4d186d205bd2d91b71d4c1cd5426025569114a765dd913a564f149ff4 SHA512 dd3e9837ba2c5896319918bda19eec8ea790d54f7893ddca46774f96f8e09ac1962ae6cbfc0bcd23c15059c63683ef4a6673e05f8416b024591677fddfa3ca15 WHIRLPOOL 024fe741655adc6fafb66f797fe77e39845764d7fb328f8c553d3cd5917d00e996b030f83342af5789e00bd54569eb25cc0728fd690bf03ae62ab6a9aef96652
24 +DIST libgepub-0.5.2.tar.xz 27076 SHA256 848328999285441739a18664f62e8008aef8d87d1da00aeb91138035fc672b38 SHA512 9e8ba3acc717fe5d1957935b154776720fcdb90ab566e0888203bce4ea2281b84f9fe44d554f6b5cadb1bba3aeae8b5b9a759001f404c43fa46b0ba16b959e69 WHIRLPOOL fb4a89592f05c59e6782fe044df3ee5fb786e10fac0d3baf5da250cbac8273d590920bab6e401f7175949d890373326e7e37045a8768927c79e012518945f073
25
26 diff --git a/app-text/libgepub/libgepub-0.5.2.ebuild b/app-text/libgepub/libgepub-0.5.2.ebuild
27 new file mode 100644
28 index 00000000000..37ff044fb87
29 --- /dev/null
30 +++ b/app-text/libgepub/libgepub-0.5.2.ebuild
31 @@ -0,0 +1,32 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit gnome.org meson
38 +
39 +DESCRIPTION="GObject based library for handling and rendering epub documents"
40 +HOMEPAGE="https://git.gnome.org/browse/libgepub"
41 +
42 +LICENSE="LGPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="+introspection"
46 +
47 +RDEPEND="
48 + app-arch/libarchive
49 + dev-libs/glib:2
50 + dev-libs/libxml2
51 + net-libs/libsoup:2.4
52 + net-libs/webkit-gtk:4
53 + x11-libs/gtk+:3
54 + introspection? ( >=dev-libs/gobject-introspection-1.30:= )
55 +"
56 +DEPEND="${RDEPEND}
57 + virtual/pkgconfig
58 +"
59 +
60 +src_configure() {
61 + meson_src_configure \
62 + -Denable-introspection=$(usex introspection true false)
63 +}