Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-user-share for 
openSUSE:Factory checked in at 2025-11-25 15:51:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-user-share (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-user-share.new.14147 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-user-share"

Tue Nov 25 15:51:49 2025 rev:70 rq:1319647 version:48.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnome-user-share/gnome-user-share.changes        
2025-07-03 12:11:41.228752686 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-user-share.new.14147/gnome-user-share.changes 
    2025-11-25 15:52:55.502678762 +0100
@@ -1,0 +2,7 @@
+Sun Nov 23 10:49:36 UTC 2025 - Bjørn Lie <[email protected]>
+
+- Update to version 48.2:
+  + Fixed a bug where the config folder is inaccessible on new
+    installations
+
+-------------------------------------------------------------------

Old:
----
  gnome-user-share-48.1.obscpio

New:
----
  gnome-user-share-48.2.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gnome-user-share.spec ++++++
--- /var/tmp/diff_new_pack.jwZDj1/_old  2025-11-25 15:52:58.198792405 +0100
+++ /var/tmp/diff_new_pack.jwZDj1/_new  2025-11-25 15:52:58.202792573 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-user-share
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           gnome-user-share
-Version:        48.1
+Version:        48.2
 Release:        0
 Summary:        GNOME user file sharing
 License:        GPL-2.0-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.jwZDj1/_old  2025-11-25 15:52:58.230793754 +0100
+++ /var/tmp/diff_new_pack.jwZDj1/_new  2025-11-25 15:52:58.234793922 +0100
@@ -3,7 +3,7 @@
   <service name="obs_scm" mode="manual">
     <param name="scm">git</param>
     <param 
name="url">https://gitlab.gnome.org/GNOME/gnome-user-share.git</param>
-    <param name="revision">48.1</param>
+    <param name="revision">48.2</param>
     <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
     <param name="versionrewrite-pattern">v?(.*)\+0</param>
     <param name="versionrewrite-replacement">\1</param>

++++++ gnome-user-share-48.1.obscpio -> gnome-user-share-48.2.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-user-share-48.1/NEWS 
new/gnome-user-share-48.2/NEWS
--- old/gnome-user-share-48.1/NEWS      2025-06-29 23:59:29.000000000 +0200
+++ new/gnome-user-share-48.2/NEWS      2025-11-22 12:15:57.000000000 +0100
@@ -1,4 +1,7 @@
-This is gnome-user-share 48.1, a system for easy sharing of user files.
+This is gnome-user-share 48.2, a system for easy sharing of user files.
+
+Major changes since 48.1:
+- Fixed a bug where the config folder is inaccessible on new installations
 
 Major changes since 48.0:
 - Translation updates
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-user-share-48.1/meson.build 
new/gnome-user-share-48.2/meson.build
--- old/gnome-user-share-48.1/meson.build       2025-06-29 23:59:29.000000000 
+0200
+++ new/gnome-user-share-48.2/meson.build       2025-11-22 12:15:57.000000000 
+0100
@@ -1,7 +1,7 @@
 project(
   'gnome-user-share',
   'rust', 'c',
-  version: '48.1',
+  version: '48.2',
   license: 'GPL2',
   meson_version: '>= 0.58.0',
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-user-share-48.1/src/http.rs 
new/gnome-user-share-48.2/src/http.rs
--- old/gnome-user-share-48.1/src/http.rs       2025-06-29 23:59:29.000000000 
+0200
+++ new/gnome-user-share-48.2/src/http.rs       2025-11-22 12:15:57.000000000 
+0100
@@ -65,7 +65,7 @@
        let path = glib::user_special_dir(glib::UserDirectory::PublicShare)
                .unwrap_or_else(|| glib::home_dir().join("Public"));
 
-       if glib::mkdir_with_parents(path.clone(), 755) != 0 {
+       if glib::mkdir_with_parents(path.clone(), 0o755) != 0 {
                glib::g_warning!(
                        LOG_DOMAIN,
                        "Creating a public folder in \"{path:#?}\" has failed!"
@@ -78,7 +78,7 @@
 static USER_CONFIG_DIR: LazyLock<PathBuf> = LazyLock::new(|| {
        let path = glib::user_config_dir();
 
-       if glib::mkdir_with_parents(path.join("user-share"), 755) != 0 {
+       if glib::mkdir_with_parents(path.join("user-share"), 0o755) != 0 {
                glib::g_warning!(
                        LOG_DOMAIN,
                        "Creating a config folder in \"{path:#?}\" has failed!"

++++++ gnome-user-share.obsinfo ++++++
--- /var/tmp/diff_new_pack.jwZDj1/_old  2025-11-25 15:52:58.522806061 +0100
+++ /var/tmp/diff_new_pack.jwZDj1/_new  2025-11-25 15:52:58.526806230 +0100
@@ -1,5 +1,5 @@
 name: gnome-user-share
-version: 48.1
-mtime: 1751234369
-commit: 10d565b0194e61eb79b7bac3c53afa5f31ee3296
+version: 48.2
+mtime: 1763810157
+commit: e192871dd7d96813e7bee77b5f7438c250b0a315
 

++++++ vendor.tar.zst ++++++
/work/SRC/openSUSE:Factory/gnome-user-share/vendor.tar.zst 
/work/SRC/openSUSE:Factory/.gnome-user-share.new.14147/vendor.tar.zst differ: 
char 7, line 1

Reply via email to