mirror of
https://git.yoctoproject.org/poky
synced 2026-06-21 13:54:22 +02:00
46.0 - March 15, 2024 ===================== * Improve keyboard navigation of address bar dropdown (#1726, Markus Göllnitz) * Add "Send Link by Email..." to context menu for links (#2037, Leon Marz) * Use selected text when middle clicking on New Tab button (#2159) 46.rc - February 29, 2024 =========================== * Close security popover after selection (#2215) * Focus location entry on search hotkey (#2278) * Close page menu popover on print, search and fullscreen actions (#2283) * Forward key events directly to web view (#1915) (#2173) * Updated translations 46.beta - February 10, 2024 =========================== * Fix a crash (#2021) * Allow closing pinned tabs (#2264) * Adjust labels to improve HIG compliance (!1431, Bart Gravendeel) * Support PKCS #11 smart card authentication (!1433) * Updated translations 46.alpha - January 5, 2024 ========================== * Use web app manifest to get better app name and icon (#931) * Prevent websites from using certain Epiphany internal APIs (#1664) * Fix poor Firefox Sync error message when gnome-keyring is not installed (#1755) * Reduce adblock filter update interval on metered connections (#2152) * Rename Firefox Account to Mozilla Account (#2231) * Hide various context menu items when text is selected (#2258) * Remove Google Safe Browsing support due to terms of service changes (!335) * Hide developer context menu actions by default (!1392, Vitaly Dyachkov) * Update to highlight.js 11.9.0 (!1394) * Use AdwSpinRow in preferences dialog (Pig, !1411) * Many improvements to appstream metainfo (Sabri Ünal, !1398, !1399, !1414, !1422, !1425) * Updated translations (From OE-Core rev: c7384afa31f76e9e547a1a0af819707b90699e5b) Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
44 lines
1.7 KiB
BlitzBasic
44 lines
1.7 KiB
BlitzBasic
SUMMARY = "WebKit based web browser for GNOME"
|
|
DESCRIPTION = "Epiphany is an open source web browser for the Linux desktop environment. \
|
|
It provides a simple and easy-to-use internet browsing experience."
|
|
HOMEPAGE = "https://wiki.gnome.org/Apps/Web"
|
|
BUGTRACKER = "https://gitlab.gnome.org/GNOME/epiphany"
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
DEPENDS = " \
|
|
webkitgtk \
|
|
gcr \
|
|
gsettings-desktop-schemas \
|
|
nettle \
|
|
json-glib \
|
|
libadwaita \
|
|
libarchive \
|
|
libdazzle \
|
|
libhandy \
|
|
libportal \
|
|
libsoup \
|
|
glib-2.0-native \
|
|
coreutils-native \
|
|
desktop-file-utils-native \
|
|
"
|
|
|
|
inherit gnomebase gsettings features_check gettext mime-xdg gtk-icon-cache
|
|
REQUIRED_DISTRO_FEATURES = "x11 opengl"
|
|
|
|
SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@oe.utils.trim_version("${PV}", 1)}/${GNOMEBN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive \
|
|
file://0002-help-meson.build-disable-the-use-of-yelp.patch \
|
|
file://migrator.patch \
|
|
file://distributor.patch \
|
|
"
|
|
SRC_URI[archive.sha256sum] = "f4348f2cf51c07c0c106d130172d4d23f2cd4068771e1de007b758ca2ade5660"
|
|
|
|
# Developer mode enables debugging
|
|
PACKAGECONFIG[developer-mode] = "-Ddeveloper_mode=true,-Ddeveloper_mode=false"
|
|
|
|
FILES:${PN} += "${datadir}/dbus-1 ${datadir}/gnome-shell/search-providers ${datadir}/metainfo"
|
|
RDEPENDS:${PN} = "iso-codes adwaita-icon-theme gsettings-desktop-schemas"
|
|
|
|
# ANGLE requires SSE support as of webkit 2.40.x on 32 bit x86
|
|
COMPATIBLE_HOST:x86 = "${@bb.utils.contains_any('TUNE_FEATURES', 'core2 corei7', '.*', 'null', d)}"
|