Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package owncloud-client-desktop-integration
for openSUSE:Factory checked in at 2026-02-23 16:12:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/owncloud-client-desktop-integration (Old)
and
/work/SRC/openSUSE:Factory/.owncloud-client-desktop-integration.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "owncloud-client-desktop-integration"
Mon Feb 23 16:12:15 2026 rev:4 rq:1334325 version:6.1.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/owncloud-client-desktop-integration/owncloud-client-desktop-integration.changes
2024-10-27 11:25:13.446277827 +0100
+++
/work/SRC/openSUSE:Factory/.owncloud-client-desktop-integration.new.1977/owncloud-client-desktop-integration.changes
2026-02-23 16:12:39.629615381 +0100
@@ -1,0 +2,7 @@
+Thu Feb 19 09:09:01 UTC 2026 - Atri Bhattacharya <[email protected]>
+
+- Update to version 6.1.0:
+ * Replace deprecated GObject calls with GLib equivalents
+ (gh#owncloud/client-desktop-shell-integration-nautilus#4).
+
+-------------------------------------------------------------------
Old:
----
owncloud-client-desktop-integration-6.0.0.tar.gz
New:
----
owncloud-client-desktop-integration-6.1.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ owncloud-client-desktop-integration.spec ++++++
--- /var/tmp/diff_new_pack.w47ESy/_old 2026-02-23 16:12:40.157637122 +0100
+++ /var/tmp/diff_new_pack.w47ESy/_new 2026-02-23 16:12:40.161637286 +0100
@@ -1,7 +1,7 @@
#
# spec file for package owncloud-client-desktop-integration
#
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2026 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: owncloud-client-desktop-integration
-Version: 6.0.0
+Version: 6.1.0
Release: 0
Summary: Integration for the ownCloud desktop client with various file
managers
License: GPL-2.0-or-later
++++++ owncloud-client-desktop-integration-6.0.0.tar.gz ->
owncloud-client-desktop-integration-6.1.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/client-desktop-shell-integration-nautilus-6.0.0/CMakeLists.txt
new/client-desktop-shell-integration-nautilus-6.1.0/CMakeLists.txt
--- old/client-desktop-shell-integration-nautilus-6.0.0/CMakeLists.txt
2024-10-15 12:26:06.000000000 +0200
+++ new/client-desktop-shell-integration-nautilus-6.1.0/CMakeLists.txt
2026-02-12 11:47:58.000000000 +0100
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.16)
# we need at least one language for GNUInstallDirs
-project(owncloud-client-shell-integration-nautilus VERSION 6.0.0 LANGUAGES C)
+project(owncloud-client-shell-integration-nautilus VERSION 6.1.0 LANGUAGES C)
option(REQUIRE_OWNCLOUD_RESOURCES "We depend on the ownCloud resources, if
your distribution does provide alternative icons you can disable this
requirement" ON)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/client-desktop-shell-integration-nautilus-6.0.0/src/syncstate.py
new/client-desktop-shell-integration-nautilus-6.1.0/src/syncstate.py
--- old/client-desktop-shell-integration-nautilus-6.0.0/src/syncstate.py
2024-10-15 12:26:06.000000000 +0200
+++ new/client-desktop-shell-integration-nautilus-6.1.0/src/syncstate.py
2026-02-12 11:47:58.000000000 +0100
@@ -26,7 +26,7 @@
import tempfile
import time
-from gi.repository import GObject, Nautilus
+from gi.repository import GObject, GLib, Nautilus
# Note: setappname.sh will search and replace 'ownCloud' on this file to
update this line and other
# occurrences of the name
@@ -70,13 +70,13 @@
# returns true when one should try again!
if self._connectToSocketServer():
- GObject.timeout_add(5000, self._connectToSocketServer)
+ GLib.timeout_add(5000, self._connectToSocketServer)
def reconnect(self):
self._sock.close()
self.connected = False
- GObject.source_remove(self._watch_id)
- GObject.timeout_add(5000, self._connectToSocketServer)
+ GLib.source_remove(self._watch_id)
+ GLib.timeout_add(5000, self._connectToSocketServer)
def sendCommand(self, cmd):
# print("Server command: " + cmd)
@@ -99,7 +99,7 @@
try:
self._sock.connect(sock_file) # fails if sock_file doesn't
exist
self.connected = True
- self._watch_id = GObject.io_add_watch(self._sock,
GObject.IO_IN, self._handle_notify)
+ self._watch_id = GLib.io_add_watch(self._sock,
GLib.PRIORITY_DEFAULT, GLib.IOCondition.IN, self._handle_notify)
self.sendCommand('VERSION:\n')
self.sendCommand('GET_STRINGS:\n')