Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/epiphany/
Date: Tue, 21 Dec 2021 13:36:38
Message-Id: 1640093787.86c5a4847deca695992db4e989c24cf182368af8.pacho@gentoo
1 commit: 86c5a4847deca695992db4e989c24cf182368af8
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 21 13:36:27 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 21 13:36:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86c5a484
7
8 www-client/epiphany: Bump to 40.6
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 www-client/epiphany/Manifest | 1 +
14 www-client/epiphany/epiphany-40.6.ebuild | 85 ++++++++++++++++++++++++++++++++
15 2 files changed, 86 insertions(+)
16
17 diff --git a/www-client/epiphany/Manifest b/www-client/epiphany/Manifest
18 index e62b71038e64..325ceb613c26 100644
19 --- a/www-client/epiphany/Manifest
20 +++ b/www-client/epiphany/Manifest
21 @@ -1 +1,2 @@
22 DIST epiphany-40.5.tar.xz 5380340 BLAKE2B 60dcdacd8fc199e68d2009c841e5d80e54c6246b9f39f9d6523fb8dcd837dba4a949911643c634abb5c53e08473e92b5bde90709ec8650cc23c4aceaeac14edd SHA512 939fc749723c87457a73b90fadb37e8c6db0996ada73d5c859ff3f9b8a2401bca369a8145336542a169b006a9c0e02f6642a1a39b3770654d30cb28b55e69972
23 +DIST epiphany-40.6.tar.xz 5380620 BLAKE2B 43a0ba03ebab5af074785beecacbf7279f0ee44c7f12467441fc026d8e48c16a1d3391080d2960d6b72027995b9fc203c15cbfa17db35cbf010edfa9d472422c SHA512 92805afe14323547c816beb43da104c05b62c59b64d7e3dc194f8e89be3abf309261310da11ff5c5ba99809794b796de9911316d77663a7c51b3a79b63fe4e1f
24
25 diff --git a/www-client/epiphany/epiphany-40.6.ebuild b/www-client/epiphany/epiphany-40.6.ebuild
26 new file mode 100644
27 index 000000000000..e46b4d99cdf3
28 --- /dev/null
29 +++ b/www-client/epiphany/epiphany-40.6.ebuild
30 @@ -0,0 +1,85 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit gnome.org gnome2-utils meson xdg virtualx
37 +
38 +DESCRIPTION="GNOME webbrowser based on Webkit"
39 +HOMEPAGE="https://wiki.gnome.org/Apps/Web"
40 +
41 +LICENSE="GPL-3+"
42 +SLOT="0"
43 +IUSE="test"
44 +RESTRICT="!test? ( test )"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
46 +
47 +DEPEND="
48 + >=dev-libs/glib-2.64.0:2
49 + >=x11-libs/gtk+-3.24.0:3
50 + >=dev-libs/nettle-3.4:=
51 + >=net-libs/webkit-gtk-2.31.1:4=
52 + >=x11-libs/cairo-1.2
53 + >=app-crypt/gcr-3.5.5:=[gtk]
54 + >=x11-libs/gdk-pixbuf-2.36.5:2
55 + gnome-base/gsettings-desktop-schemas
56 + >=app-text/iso-codes-0.35
57 + >=dev-libs/json-glib-1.6
58 + app-arch/libarchive:=
59 + >=dev-libs/libdazzle-3.37.1
60 + >=gui-libs/libhandy-1.1.0:1=
61 + >=app-crypt/libsecret-0.19
62 + >=net-libs/libsoup-2.48.0:2.4
63 + >=dev-libs/libxml2-2.6.12:2
64 + >=dev-db/sqlite-3.22:3
65 + dev-libs/gmp:0=
66 +"
67 +RDEPEND="${DEPEND}
68 + x11-themes/adwaita-icon-theme
69 +"
70 +# appstream-glib needed for appdata.xml gettext translation
71 +BDEPEND="
72 + dev-libs/appstream-glib
73 + dev-util/gdbus-codegen
74 + dev-util/glib-utils
75 + dev-util/itstool
76 + >=sys-devel/gettext-0.19.8
77 + virtual/pkgconfig
78 +"
79 +
80 +PATCHES=(
81 + # Allow /var/tmp prefixed recursive delete (due to package manager setting TMPDIR)
82 + "${FILESDIR}"/var-tmp-tests.patch
83 +)
84 +
85 +src_configure() {
86 + local emesonargs=(
87 + -Ddeveloper_mode=false
88 + -Dlibportal=disabled
89 + # maybe enable later if network-sandbox is off, but in 3.32.4 the network test
90 + # is commented out upstream anyway
91 + -Dnetwork_tests=disabled
92 + -Dtech_preview=false
93 + $(meson_feature test unit_tests)
94 + )
95 + meson_src_configure
96 +}
97 +
98 +src_test() {
99 + virtx meson_src_test
100 +}
101 +
102 +pkg_postinst() {
103 + xdg_pkg_postinst
104 + gnome2_schemas_update
105 +
106 + if ! has_version net-libs/webkit-gtk[jpeg2k]; then
107 + ewarn "Your net-libs/webkit-gtk is built without USE=jpeg2k."
108 + ewarn "Various image galleries/managers may be broken."
109 + fi
110 +}
111 +
112 +pkg_postrm() {
113 + xdg_pkg_postrm
114 + gnome2_schemas_update
115 +}