Hello community,
here is the log from the commit of package gnome-control-center for
openSUSE:Factory checked in at 2018-07-31 15:54:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-control-center (Old)
and /work/SRC/openSUSE:Factory/.gnome-control-center.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-control-center"
Tue Jul 31 15:54:55 2018 rev:169 rq:624992 version:3.28.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center.changes
2018-06-05 12:51:47.216109543 +0200
+++
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center.changes
2018-07-31 15:55:01.503102203 +0200
@@ -1,0 +2,15 @@
+Mon Jul 23 10:31:30 UTC 2018 - [email protected]
+
+- Help translation-update-upstream finding the right gettext domain
+ name: pass "po gnome-control-center-2.0" to the call.
+
+-------------------------------------------------------------------
+Wed Jul 11 23:12:34 UTC 2018 - [email protected]
+
+- Add gcc-user-accounts-Force-symlink-creation.patch:
+ user-accounts: Force symlink creation. So that we can run
+ Settings more than once in GNOME Builder. Without the -f flag, ln
+ errs out after these symlinks are created, and Builder refuses to
+ run after that (glgo#GNOME/gnome-control-center#107).
+
+-------------------------------------------------------------------
New:
----
gcc-user-accounts-Force-symlink-creation.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnome-control-center.spec ++++++
--- /var/tmp/diff_new_pack.gyMexy/_old 2018-07-31 15:55:03.019104763 +0200
+++ /var/tmp/diff_new_pack.gyMexy/_new 2018-07-31 15:55:03.023104770 +0200
@@ -40,6 +40,8 @@
Patch1: control-center-network-add-domain-suffix-match.patch
# PATCH-FIX-UPSTREAM control-center-ignore-unmanaged-wifi-devices.patch
bsc#1079320 glgo#GNOME/gnome-control-center#54 [email protected] -- wifi: only
manage Wi-Fi devices managed by NM
Patch2: control-center-ignore-unmanaged-wifi-devices.patch
+# PATCH-FIX-UPSTREAM gcc-user-accounts-Force-symlink-creation.patch --
user-accounts: Force symlink creation
+Patch3: gcc-user-accounts-Force-symlink-creation.patch
### patches for Leap >= 15 plus SLE >= 15, but not TW
# PATCH-FEATURE-SLE gnome-control-center-info-never-use-gnome-software.patch
bsc#999336 [email protected] -- info: Never search for gnome-software as an
option when checking for updates on SLE and Leap 42.2, because we use
gpk-update-viewer.
Patch1001: gnome-control-center-info-never-use-gnome-software.patch
@@ -181,7 +183,8 @@
%patch0 -p1
%patch1 -p1
%patch2 -p1
-translation-update-upstream
+%patch3 -p1
+translation-update-upstream po gnome-control-center-2.0
# patches for Leap >= 15 plus SLE >= 15, but not TW
%if 0%{?sle_version} >= 150000
++++++ gcc-user-accounts-Force-symlink-creation.patch ++++++
>From 4f3035effef08e72cffea75ec8b3dd5b8051d0c7 Mon Sep 17 00:00:00 2001
From: Georges Basile Stavracas Neto <[email protected]>
Date: Tue, 6 Mar 2018 22:02:58 -0300
Subject: [PATCH] user-accounts: Force symlink creation
So that we can run Settings more than once in GNOME Builder.
Without the -f flag, ln errs out after these symlinks are
created, and Builder refuses to run after that.
Closes: https://gitlab.gnome.org/GNOME/gnome-control-center/issues/107
---
panels/user-accounts/meson.build | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/panels/user-accounts/meson.build b/panels/user-accounts/meson.build
index 65341410d..0b0a4fecf 100644
--- a/panels/user-accounts/meson.build
+++ b/panels/user-accounts/meson.build
@@ -78,9 +78,9 @@ install_data(
# create symlinks for legacy images to not break current images for people
meson.add_install_script('sh', '-c',
- 'for f in $DESTDIR@0@/*; do
- ln -s legacy/$(basename $f) $DESTDIR@1@/$(basename
$f);
- done'.format(legacy_image_dir, image_dir))
+ '''for f in $DESTDIR@0@/*; do
+ ln -sf legacy/$(basename $f) $DESTDIR@1@/$(basename
$f);
+ done'''.format(legacy_image_dir, image_dir))
polkit = 'org.gnome.controlcenter.@[email protected]'.format(cappletname)
--
2.17.1