Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-documents/
Date: Sun, 01 Mar 2020 16:19:01
Message-Id: 1583079463.37b48a44689a830ad3cf19f9761d7f6051917855.leio@gentoo
1 commit: 37b48a44689a830ad3cf19f9761d7f6051917855
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 1 16:05:58 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 1 16:17:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37b48a44
7
8 gnome-extra/gnome-documents: bump to 3.34.0
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 gnome-extra/gnome-documents/Manifest | 1 +
14 .../gnome-documents/gnome-documents-3.34.0.ebuild | 68 ++++++++++++++++++++++
15 2 files changed, 69 insertions(+)
16
17 diff --git a/gnome-extra/gnome-documents/Manifest b/gnome-extra/gnome-documents/Manifest
18 index 061cbd0b89d..86b4bb59ac2 100644
19 --- a/gnome-extra/gnome-documents/Manifest
20 +++ b/gnome-extra/gnome-documents/Manifest
21 @@ -1 +1,2 @@
22 DIST gnome-documents-3.30.1.tar.xz 4777500 BLAKE2B 889a089e4968e233185a6018559487e0cede40bbe789bee3e1eaab3283bf66f797dbcf7281361432d0b3a41b68b1914efbfb5be4875fa1986cbe3241a40cbcb5 SHA512 89966d49ececa11ab49eb0e192c6a1d398ef13f2f809a02cca2d13f7ffa4cef45a29801971edec22d2f471ab4291a058c702842e323cb2a1ddd7fcc37d51b6cb
23 +DIST gnome-documents-3.34.0.tar.xz 914100 BLAKE2B 5b59931d488a5b3d3b2940852b64b0af3cff71c685d62e07bee5d0e981e9a78bb913db853c0c3f138ea1728d2ff7495b689f1f5509064131ee2a4649e65d527f SHA512 5867b148aaffd02089e4f1148cf0fbce37ba0ed40c7d255f9261cd225757f56b68293d59476ab7c11ebbe310cc7935081b2770e7bc24bdbddb5934da5ea0cf87
24
25 diff --git a/gnome-extra/gnome-documents/gnome-documents-3.34.0.ebuild b/gnome-extra/gnome-documents/gnome-documents-3.34.0.ebuild
26 new file mode 100644
27 index 00000000000..6e5ef81238e
28 --- /dev/null
29 +++ b/gnome-extra/gnome-documents/gnome-documents-3.34.0.ebuild
30 @@ -0,0 +1,68 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +inherit gnome.org gnome2-utils meson xdg
36 +
37 +DESCRIPTION="A document manager application for GNOME"
38 +HOMEPAGE="https://wiki.gnome.org/Apps/Documents"
39 +
40 +LICENSE="GPL-2+"
41 +SLOT="0"
42 +IUSE=""
43 +KEYWORDS="~amd64 ~x86"
44 +
45 +# cairo-1.14 for cairo_surface_set_device_scale check and usage
46 +COMMON_DEPEND="
47 + >=app-text/evince-3.13.3[introspection]
48 + app-misc/tracker:0/2.0
49 + >=dev-libs/gjs-1.48.0
50 + >=dev-libs/glib-2.39.3:2
51 + gnome-base/gnome-desktop:3=[introspection]
52 + >=dev-libs/gobject-introspection-1.54:=
53 + >=x11-libs/gtk+-3.22.15:3[introspection]
54 + >=net-libs/libsoup-2.41.3:2.4
55 + >=net-libs/webkit-gtk-2.6:4[introspection]
56 +
57 + >=dev-libs/libgdata-0.13.3:=[crypt,gnome-online-accounts,introspection]
58 + >=net-libs/gnome-online-accounts-3.2.0[introspection]
59 + >=net-libs/libzapojit-0.0.2[introspection]
60 +
61 + >=x11-libs/cairo-1.14
62 + x11-libs/gdk-pixbuf:2[introspection]
63 + x11-libs/pango[introspection]
64 +"
65 +RDEPEND="${COMMON_DEPEND}
66 + >=app-misc/tracker-miners-2
67 + net-misc/gnome-online-miners
68 + sys-apps/dbus
69 + x11-themes/adwaita-icon-theme
70 +"
71 +DEPEND="${COMMON_DEPEND}
72 + app-text/docbook-xml-dtd:4.2
73 + app-text/docbook-xsl-stylesheets
74 + dev-libs/appstream-glib
75 + dev-libs/libxslt
76 + dev-util/glib-utils
77 + >=sys-devel/gettext-0.19.8
78 + dev-util/itstool
79 + virtual/pkgconfig
80 +"
81 +
82 +src_configure() {
83 + local emesonargs=(
84 + -Ddocumentation=true #manpage
85 + -Dgetting_started=false #inkscape and pdfunite build deps
86 + )
87 + meson_src_configure
88 +}
89 +
90 +pkg_postinst() {
91 + xdg_pkg_postinst
92 + gnome2_schemas_update
93 +}
94 +
95 +pkg_postrm() {
96 + xdg_pkg_postrm
97 + gnome2_schemas_update
98 +}