diff options
| author | Markus Volk <f_l_k@t-online.de> | 2024-04-24 15:33:10 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-04-28 08:55:01 -0700 |
| commit | 5d6fa87b3f23f03d49d468c46b2fa3a4c3fbd214 (patch) | |
| tree | 1692a81339ef4c22c8696c8c37853baa8f8e94d0 | |
| parent | 2918c900419a668bf0dfece53e08089e643e4360 (diff) | |
| download | meta-openembedded-5d6fa87b3f23f03d49d468c46b2fa3a4c3fbd214.tar.gz | |
gnome-control-center: update 46.0.1 -> 46.1
- add PACKAGECONFIGS for file-share and media-share
46.1
* Accessibility
- Improve accessibility of "Typing" settings sliders
* Display
- Fix crash when pressing Escape in the display settings
* Network
- Add stable-ssid support for cloned-mac
* Privacy
- Add build option to enable Location services
- Fix opening of Help pages while viewing Privacy settings
* Sharing
- Auto hide Sharing panel when Rygel AND gnome-user-share are not available
* System
- Don't show auto-timezone setting when Location services unavailable
- Avoid unnecessary time-change requests
- Fix issue with sensitivity of "Add" and "Enroll" Enterprise Login buttons
- Improve generated passwords capacity in Remote Desktop settings
* Wacom
- Check for the right output connector name
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center/0001-Add-meson-option-to-pass-sysroot.patch | 13 | ||||
| -rw-r--r-- | meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_46.1.bb (renamed from meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_46.0.1.bb) | 9 |
2 files changed, 9 insertions, 13 deletions
diff --git a/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center/0001-Add-meson-option-to-pass-sysroot.patch b/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center/0001-Add-meson-option-to-pass-sysroot.patch index 4ae923f876..7d17817bc0 100644 --- a/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center/0001-Add-meson-option-to-pass-sysroot.patch +++ b/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center/0001-Add-meson-option-to-pass-sysroot.patch | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | From 1a48df2a8da44410bbd767c2420d363f6180c79a Mon Sep 17 00:00:00 2001 | 1 | From 8e542784b8ca49c655df0f251a1a1dec724a522e Mon Sep 17 00:00:00 2001 |
| 2 | From: Markus Volk <f_l_k@t-online.de> | 2 | From: Markus Volk <f_l_k@t-online.de> |
| 3 | Date: Mon, 18 Mar 2024 05:50:21 +0100 | 3 | Date: Mon, 18 Mar 2024 05:50:21 +0100 |
| 4 | Subject: [PATCH] Add meson option to pass sysroot | 4 | Subject: [PATCH] Add meson option to pass sysroot |
| @@ -13,16 +13,16 @@ Upstream-Status: Inappropriate [OE specific] | |||
| 13 | 3 files changed, 3 insertions(+), 2 deletions(-) | 13 | 3 files changed, 3 insertions(+), 2 deletions(-) |
| 14 | 14 | ||
| 15 | diff --git a/meson_options.txt b/meson_options.txt | 15 | diff --git a/meson_options.txt b/meson_options.txt |
| 16 | index e53d6e3f3..8fae4c824 100644 | 16 | index f415a7e..8966632 100644 |
| 17 | --- a/meson_options.txt | 17 | --- a/meson_options.txt |
| 18 | +++ b/meson_options.txt | 18 | +++ b/meson_options.txt |
| 19 | @@ -1,3 +1,4 @@ | 19 | @@ -1,3 +1,4 @@ |
| 20 | +option('oe_sysroot', type: 'string', value: '', description: 'Directory for OE-sysroot') | 20 | +option('oe_sysroot', type: 'string', value: '', description: 'Directory for OE-sysroot') |
| 21 | option('deprecated-declarations', type: 'feature', value: 'disabled', description: 'build with deprecated declaration warnings') | 21 | option('deprecated-declarations', type: 'feature', value: 'disabled', description: 'build with deprecated declaration warnings') |
| 22 | option('documentation', type: 'boolean', value: false, description: 'build documentation') | 22 | option('documentation', type: 'boolean', value: false, description: 'build documentation') |
| 23 | option('ibus', type: 'boolean', value: true, description: 'build with IBus support') | 23 | option('location-services', type: 'feature', value: 'disabled', description: 'build with location services') |
| 24 | diff --git a/panels/background/meson.build b/panels/background/meson.build | 24 | diff --git a/panels/background/meson.build b/panels/background/meson.build |
| 25 | index 6ced050f9..df1f80896 100644 | 25 | index 6ced050..df1f808 100644 |
| 26 | --- a/panels/background/meson.build | 26 | --- a/panels/background/meson.build |
| 27 | +++ b/panels/background/meson.build | 27 | +++ b/panels/background/meson.build |
| 28 | @@ -24,7 +24,7 @@ common_sources += gnome.mkenums_simple( | 28 | @@ -24,7 +24,7 @@ common_sources += gnome.mkenums_simple( |
| @@ -35,7 +35,7 @@ index 6ced050f9..df1f80896 100644 | |||
| 35 | 35 | ||
| 36 | common_sources += gnome.mkenums( | 36 | common_sources += gnome.mkenums( |
| 37 | diff --git a/panels/system/meson.build b/panels/system/meson.build | 37 | diff --git a/panels/system/meson.build b/panels/system/meson.build |
| 38 | index 4fee82210..979332a0e 100644 | 38 | index 4fee822..979332a 100644 |
| 39 | --- a/panels/system/meson.build | 39 | --- a/panels/system/meson.build |
| 40 | +++ b/panels/system/meson.build | 40 | +++ b/panels/system/meson.build |
| 41 | @@ -73,7 +73,7 @@ sources += gnome.compile_resources( | 41 | @@ -73,7 +73,7 @@ sources += gnome.compile_resources( |
| @@ -47,6 +47,3 @@ index 4fee82210..979332a0e 100644 | |||
| 47 | 'datetime/cc-datetime-page.h' | 47 | 'datetime/cc-datetime-page.h' |
| 48 | ) | 48 | ) |
| 49 | 49 | ||
| 50 | -- | ||
| 51 | 2.44.0 | ||
| 52 | |||
diff --git a/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_46.0.1.bb b/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_46.1.bb index de11239ed5..87daec0c25 100644 --- a/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_46.0.1.bb +++ b/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_46.1.bb | |||
| @@ -37,16 +37,15 @@ inherit gtk-icon-cache pkgconfig gnomebase gsettings gettext upstream-version-is | |||
| 37 | 37 | ||
| 38 | REQUIRED_DISTRO_FEATURES += "opengl polkit pulseaudio systemd x11" | 38 | REQUIRED_DISTRO_FEATURES += "opengl polkit pulseaudio systemd x11" |
| 39 | 39 | ||
| 40 | SRC_URI = "gitsm://gitlab.gnome.org/GNOME/gnome-control-center.git;protocol=https;nobranch=1" | ||
| 41 | SRC_URI += "file://0001-Add-meson-option-to-pass-sysroot.patch" | 40 | SRC_URI += "file://0001-Add-meson-option-to-pass-sysroot.patch" |
| 42 | 41 | SRC_URI[archive.sha256sum] = "81792423019deda1d2a074c1ecf6a7e6ef3172c09cbe6f4d7995a4b5dea28312" | |
| 43 | S = "${WORKDIR}/git" | ||
| 44 | SRCREV = "005f40dcfa464f113a1c95f97673bc5505fc15ad" | ||
| 45 | 42 | ||
| 46 | PACKAGECONFIG ??= "ibus ${@bb.utils.filter('DISTRO_FEATURES', 'wayland', d)}" | 43 | PACKAGECONFIG ??= "ibus ${@bb.utils.filter('DISTRO_FEATURES', 'wayland', d)}" |
| 47 | PACKAGECONFIG[cups] = ",,cups,cups" | 44 | PACKAGECONFIG[cups] = ",,cups,cups" |
| 48 | PACKAGECONFIG[ibus] = "-Dibus=true, -Dibus=false, ibus" | 45 | PACKAGECONFIG[ibus] = "-Dibus=true, -Dibus=false, ibus" |
| 49 | PACKAGECONFIG[wayland] = "-Dwayland=true, -Dwayland=false, wayland" | 46 | PACKAGECONFIG[wayland] = "-Dwayland=true, -Dwayland=false, wayland" |
| 47 | PACKAGECONFIG[file-share] = ",,,gnome-user-share" | ||
| 48 | PACKAGECONFIG[media-share] = ",,,rygel-meta tumbler" | ||
| 50 | 49 | ||
| 51 | EXTRA_OEMESON += "-Doe_sysroot=${STAGING_DIR_HOST}" | 50 | EXTRA_OEMESON += "-Doe_sysroot=${STAGING_DIR_HOST}" |
| 52 | 51 | ||
| @@ -72,4 +71,4 @@ FILES:${PN} += " \ | |||
| 72 | 71 | ||
| 73 | FILES:${PN}-dev += "${datadir}/gettext" | 72 | FILES:${PN}-dev += "${datadir}/gettext" |
| 74 | 73 | ||
| 75 | RDEPENDS:${PN} += "gsettings-desktop-schemas tecla system-config-printer cups-pk-helper ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'gnome-user-share', '' , d)}" | 74 | RDEPENDS:${PN} += "gsettings-desktop-schemas tecla system-config-printer cups-pk-helper" |
