Gentoo Archives: gentoo-commits

From: Sobhan Mohammadpour <sobhan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: www-client/epiphany/
Date: Thu, 01 Feb 2018 10:37:20
Message-Id: 1517481426.cda9733d7b95fd2a6332dd0339464ef4e226447d.sobhan@gentoo
1 commit: cda9733d7b95fd2a6332dd0339464ef4e226447d
2 Author: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 1 10:37:06 2018 +0000
4 Commit: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 1 10:37:06 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=cda9733d
7
8 www-client/epiphany: version bump to 3.26.2
9
10 Package-Manager: Portage-2.3.21, Repoman-2.3.6
11 Manifest-Sign-Key: 0x7DF238CF0AA182E1
12
13 www-client/epiphany/epiphany-3.26.2.ebuild | 66 ++++++++++++++++++++++++++++++
14 1 file changed, 66 insertions(+)
15
16 diff --git a/www-client/epiphany/epiphany-3.26.2.ebuild b/www-client/epiphany/epiphany-3.26.2.ebuild
17 new file mode 100644
18 index 00000000..fe54b55c
19 --- /dev/null
20 +++ b/www-client/epiphany/epiphany-3.26.2.ebuild
21 @@ -0,0 +1,66 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +GNOME2_LA_PUNT="yes"
27 +
28 +inherit flag-o-matic gnome-meson virtualx
29 +
30 +DESCRIPTION="GNOME webbrowser based on Webkit"
31 +HOMEPAGE="https://wiki.gnome.org/Apps/Web"
32 +
33 +LICENSE="GPL-3+"
34 +SLOT="0"
35 +IUSE="test"
36 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
37 +
38 +COMMON_DEPEND="
39 + >=dev-libs/glib-2.52.0:2[dbus]
40 + >=dev-libs/json-glib-1.2.4
41 + >=x11-libs/gtk+-3.22.13:3
42 + >=net-libs/webkit-gtk-2.17.4:4=
43 + >=x11-libs/cairo-1.2
44 + >=app-crypt/gcr-3.5.5:=[gtk]
45 + >=x11-libs/gdk-pixbuf-2.36.5:2
46 + >=gnome-base/gnome-desktop-2.91.2:3=
47 + dev-libs/icu:=
48 + >=x11-libs/libnotify-0.5.1:=
49 + >=app-crypt/libsecret-0.14
50 + >=net-libs/libsoup-2.48:2.4
51 + >=dev-libs/libxml2-2.6.12:2
52 + >=dev-libs/libxslt-1.1.7
53 + >=dev-libs/nettle-3.2
54 + dev-db/sqlite:3
55 + >=app-text/iso-codes-0.35
56 + >=gnome-base/gsettings-desktop-schemas-0.0.1
57 +"
58 +# epiphany-extensions support was removed in 3.7; let's not pretend it still works
59 +RDEPEND="${COMMON_DEPEND}
60 + x11-themes/adwaita-icon-theme
61 + !www-client/epiphany-extensions
62 +"
63 +# paxctl needed for bug #407085
64 +DEPEND="${COMMON_DEPEND}
65 + app-text/yelp-tools
66 + dev-libs/appstream-glib
67 + sys-apps/paxctl
68 + >=sys-devel/gettext-0.19.8
69 + virtual/pkgconfig
70 +"
71 +
72 +PATCHES=(
73 + # https://bugzilla.gnome.org/show_bug.cgi?id=751593
74 + "${FILESDIR}"/${PN}-3.14.0-unittest-2.patch
75 +)
76 +#FIXME: it seems it can't use newer libhttpseverywhere
77 +src_configure() {
78 + gnome-meson_src_configure \
79 + -Ddistributor_name=Gentoo \
80 + -Dhttpps_everywhere=false \
81 + $(meson_use test unit_tests)
82 +}
83 +
84 +src_test() {
85 + "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
86 + GSETTINGS_SCHEMA_DIR="${S}/data" virtx meson_src_test
87 +}