From e2d5112a2e4b44a6eb1cc2a4660a89d43ca99306 Mon Sep 17 00:00:00 2001 From: Markus Volk Date: Mon, 22 Apr 2024 08:00:37 +0200 Subject: gnome-shell: update 46.0 -> 46.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 46.1 ==== * Improve notification of conflicting session [Joan; !3235] * Add shift level to Korean OSK layout [Carlos; !3222] * Fix markup support in notifications [Sebastian; !3247] * extensions-app: Fix empty rows with '&' in extension name [Florian; !3266] * extensions-app: Improve HIG compliance [Automeris; !3269, !3271] * Omit expand buttons in notification banners [Julian; !3249] * Misc. bug fixes and cleanups [dcz, Totto16, Sebastian, Florian; !3262, !3253, !3260, !3234] Contributors: dcz, Carlos Garnacho, Sebastian Keller, Robert Mader, Florian Müllner, Automeris naranja, Julian Sparber, Joan Torres, Totto16, Sebastian Wick Translators: Danial Behzadi [fa], Baurzhan Muftakhidinov [kk], Anders Jonsson [sv], Aurimas Černius [lt], Yuri Chornoivan [uk], Daniel Rusek [cs], Ekaterine Papava [ka], Asier Sarasua Garmendia [eu], Jiri Grönroos [fi], Piotr Drąg [pl], Yaron Shahrabani [he], Brage Fuglseth [nb], A S Alam [pa], Christian Kirbach [de], Milo Casagrande [it], Fran Dieguez [gl], Jordi Mas i Hernandez [ca], Jordi Mas [ca], Sabri Ünal [tr], Boyuan Yang [zh_CN], Athmane MOKRAOUI [kab], Vincent Chatelain [fr], Милош Поповић [sr, sr@latin], Martin [sl], Nathan Follens [nl], Artur S0 [ru], Juliano de Souza Camargo [pt_BR], Changwoo Ryu [ko], Jose Riha [sk], Fabio Tomat [fur], Peter Vágner [sk], Andi Chandler [en_GB] Signed-off-by: Markus Volk Signed-off-by: Khem Raj --- .../recipes-gnome/gnome-shell/gnome-shell_46.0.bb | 86 ---------------------- .../recipes-gnome/gnome-shell/gnome-shell_46.1.bb | 86 ++++++++++++++++++++++ 2 files changed, 86 insertions(+), 86 deletions(-) delete mode 100644 meta-gnome/recipes-gnome/gnome-shell/gnome-shell_46.0.bb create mode 100644 meta-gnome/recipes-gnome/gnome-shell/gnome-shell_46.1.bb diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_46.0.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_46.0.bb deleted file mode 100644 index 907cfdf67..000000000 --- a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_46.0.bb +++ /dev/null @@ -1,86 +0,0 @@ -SUMMARY = "GNOME Shell is the graphical shell of the GNOME desktop environment" -LICENSE = "GPL-2.0-only" -LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" - - -DEPENDS = " \ - libxml2-native \ - gtk4 \ - mutter \ - evolution-data-server \ - gcr \ - geocode-glib \ - gjs \ - gnome-autoar \ - gnome-desktop \ - polkit \ - pipewire \ - libsoup-3.0 \ - ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', 'startup-notification', d)} \ - ibus \ - gsettings-desktop-schemas \ -" - -inherit gnomebase gsettings gettext gobject-introspection gtk-icon-cache features_check bash-completion - -REQUIRED_DISTRO_FEATURES = "x11 polkit systemd pam" - -GTKIC_VERSION = "4" -GTKDOC_MESON_OPTION = "gtk_doc" -GIR_MESON_OPTION = "" - -# gobject-introspection is mandatory and cannot be configured -REQUIRED_DISTRO_FEATURES += "gobject-introspection-data" - -SRC_URI[archive.sha256sum] = "6bc41340b6de05774e97cfe20feba86e2b3cc9c8139118f24bd84ac63e82b53e" -SRC_URI += "file://0001-Introduce-options-gjs_path-to-optionally-set-path-to.patch" - -PACKAGECONFIG ??= "bluetooth nm ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" -PACKAGECONFIG[bluetooth] = ",,gnome-bluetooth" -PACKAGECONFIG[nm] = "-Dnetworkmanager=true, -Dnetworkmanager=false,networkmanager libsecret,networkmanager" -PACKAGECONFIG[systemd] = "-Dsystemd=true, -Dsystemd=false, systemd" - -EXTRA_OEMESON = " \ - -Dgjs_path=${bindir}/gjs \ - -Dextensions-app:gjs_path=${bindir}/gjs \ - -Dtests=false \ - -Dman=false \ -" - -do_install:append() { - # fix shebangs - for tool in `find ${D}${bindir} -name '*-tool'`; do - sed -i 's:#!${PYTHON}:#!${bindir}/python3:' $tool - done -} - -GSETTINGS_PACKAGE = "${PN}-gsettings" - -FILES:${PN} += " \ - ${datadir}/metainfo \ - ${datadir}/dbus-1 \ - ${datadir}/gnome-control-center \ - ${datadir}/xdg-desktop-portal \ - ${systemd_user_unitdir} \ -" - -RDEPENDS:${PN} += " \ - accountsservice \ - adwaita-icon-theme \ - adwaita-icon-theme-cursors \ - gdm-base \ - gnome-control-center \ - gnome-backgrounds \ - gnome-bluetooth \ - gnome-desktop \ - gnome-session \ - gnome-settings-daemon \ - gnome-shell-gsettings \ - gsettings-desktop-schemas \ - librsvg-gtk \ -" - -PACKAGES =+ "${PN}-tools ${PN}-gsettings" -FILES:${PN}-tools = "${bindir}/*-tool" -RDEPENDS:${PN}-tools = "python3-core" - diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_46.1.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_46.1.bb new file mode 100644 index 000000000..ed86cbcb6 --- /dev/null +++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_46.1.bb @@ -0,0 +1,86 @@ +SUMMARY = "GNOME Shell is the graphical shell of the GNOME desktop environment" +LICENSE = "GPL-2.0-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" + + +DEPENDS = " \ + libxml2-native \ + gtk4 \ + mutter \ + evolution-data-server \ + gcr \ + geocode-glib \ + gjs \ + gnome-autoar \ + gnome-desktop \ + polkit \ + pipewire \ + libsoup-3.0 \ + ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', 'startup-notification', d)} \ + ibus \ + gsettings-desktop-schemas \ +" + +inherit gnomebase gsettings gettext gobject-introspection gtk-icon-cache features_check bash-completion + +REQUIRED_DISTRO_FEATURES = "x11 polkit systemd pam" + +GTKIC_VERSION = "4" +GTKDOC_MESON_OPTION = "gtk_doc" +GIR_MESON_OPTION = "" + +# gobject-introspection is mandatory and cannot be configured +REQUIRED_DISTRO_FEATURES += "gobject-introspection-data" + +SRC_URI[archive.sha256sum] = "64f999844c101e63bf294d45b138de56319ad2f326282721aad0fa860653b369" +SRC_URI += "file://0001-Introduce-options-gjs_path-to-optionally-set-path-to.patch" + +PACKAGECONFIG ??= "bluetooth nm ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" +PACKAGECONFIG[bluetooth] = ",,gnome-bluetooth" +PACKAGECONFIG[nm] = "-Dnetworkmanager=true, -Dnetworkmanager=false,networkmanager libsecret,networkmanager" +PACKAGECONFIG[systemd] = "-Dsystemd=true, -Dsystemd=false, systemd" + +EXTRA_OEMESON = " \ + -Dgjs_path=${bindir}/gjs \ + -Dextensions-app:gjs_path=${bindir}/gjs \ + -Dtests=false \ + -Dman=false \ +" + +do_install:append() { + # fix shebangs + for tool in `find ${D}${bindir} -name '*-tool'`; do + sed -i 's:#!${PYTHON}:#!${bindir}/python3:' $tool + done +} + +GSETTINGS_PACKAGE = "${PN}-gsettings" + +FILES:${PN} += " \ + ${datadir}/metainfo \ + ${datadir}/dbus-1 \ + ${datadir}/gnome-control-center \ + ${datadir}/xdg-desktop-portal \ + ${systemd_user_unitdir} \ +" + +RDEPENDS:${PN} += " \ + accountsservice \ + adwaita-icon-theme \ + adwaita-icon-theme-cursors \ + gdm-base \ + gnome-control-center \ + gnome-backgrounds \ + gnome-bluetooth \ + gnome-desktop \ + gnome-session \ + gnome-settings-daemon \ + gnome-shell-gsettings \ + gsettings-desktop-schemas \ + librsvg-gtk \ +" + +PACKAGES =+ "${PN}-tools ${PN}-gsettings" +FILES:${PN}-tools = "${bindir}/*-tool" +RDEPENDS:${PN}-tools = "python3-core" + -- cgit v1.2.3-54-g00ecf