Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gcdemu for openSUSE:Factory checked in at 2022-11-15 13:19:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gcdemu (Old) and /work/SRC/openSUSE:Factory/.gcdemu.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gcdemu" Tue Nov 15 13:19:01 2022 rev:7 rq:1035777 version:3.2.6 Changes: -------- --- /work/SRC/openSUSE:Factory/gcdemu/gcdemu.changes 2021-05-18 18:27:25.522706801 +0200 +++ /work/SRC/openSUSE:Factory/.gcdemu.new.1597/gcdemu.changes 2022-11-15 13:21:42.256887117 +0100 @@ -1,0 +2,7 @@ +Mon Nov 14 16:13:11 UTC 2022 - Dominique Leuenberger <[email protected]> + +- Update to version 3.2.6: + * If no AppIndicator3 is available try to load + AyatanaAppIndicator3. + +------------------------------------------------------------------- Old: ---- gcdemu-3.2.5.tar.xz New: ---- gcdemu-3.2.6.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gcdemu.spec ++++++ --- /var/tmp/diff_new_pack.pRXBO6/_old 2022-11-15 13:21:42.636889079 +0100 +++ /var/tmp/diff_new_pack.pRXBO6/_new 2022-11-15 13:21:42.640889100 +0100 @@ -1,7 +1,7 @@ # # spec file for package gcdemu # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,21 +12,21 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %define __requires_exclude typelib\\(AppIndicator(|3)\\) Name: gcdemu -Version: 3.2.5 +Version: 3.2.6 Release: 0 Summary: GTK+ application for controlling CDEmu daemon -License: GPL-2.0+ +License: GPL-2.0-or-later Group: System/GUI/Other -Url: https://cdemu.sourceforge.io/ +URL: https://cdemu.sourceforge.io/ Source0: https://sourceforge.net/projects/cdemu/files/gcdemu/gcdemu-%{version}.tar.xz -BuildRequires: gdk-pixbuf BuildRequires: cmake >= 3.7 +BuildRequires: gdk-pixbuf BuildRequires: gettext >= 0.15 BuildRequires: gobject-introspection-devel BuildRequires: intltool >= 0.21 ++++++ gcdemu-3.2.5.tar.xz -> gcdemu-3.2.6.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gcdemu-3.2.5/README new/gcdemu-3.2.6/README --- old/gcdemu-3.2.5/README 2021-04-17 13:19:54.000000000 +0200 +++ new/gcdemu-3.2.6/README 2021-10-23 20:47:30.000000000 +0200 @@ -1,5 +1,5 @@ gCDEmu -3.2.5 +3.2.6 ~~~~~ Table of Contents: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gcdemu-3.2.5/debian/changelog new/gcdemu-3.2.6/debian/changelog --- old/gcdemu-3.2.5/debian/changelog 2021-04-17 13:19:54.000000000 +0200 +++ new/gcdemu-3.2.6/debian/changelog 2021-10-23 20:47:30.000000000 +0200 @@ -1,3 +1,3 @@ -gcdemu (3.2.5-1) debian; urgency=low +gcdemu (3.2.6-1) debian; urgency=low * Initial Release. Closes: #705409 -- Henrik Stokseth <[email protected]> Sat, 05 Apr 2014 12:00:00 +0100 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gcdemu-3.2.5/debian/control new/gcdemu-3.2.6/debian/control --- old/gcdemu-3.2.5/debian/control 2021-04-17 13:19:54.000000000 +0200 +++ new/gcdemu-3.2.6/debian/control 2021-10-23 20:47:30.000000000 +0200 @@ -12,7 +12,7 @@ Package: gcdemu Architecture: all Depends: python3 (>= 3.4.0), python3-gi (>= 3.0.0), gir1.2-glib-2.0, - gir1.2-gtk-3.0, gir1.2-appindicator3-0.1, gir1.2-notify-0.7, + gir1.2-gtk-3.0, gir1.2-appindicator3-0.1 | gir1.2-ayatanaappindicator3-0.1, gir1.2-notify-0.7, cdemu-daemon (>= 3.0.0), librsvg2-2, ${python3:Depends}, ${misc:Depends} Recommends: cdemu-client (>= 3.0.0) Description: GNOME application to control CDEmu daemon diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gcdemu-3.2.5/src/gcdemu new/gcdemu-3.2.6/src/gcdemu --- old/gcdemu-3.2.5/src/gcdemu 2021-04-17 13:19:54.000000000 +0200 +++ new/gcdemu-3.2.6/src/gcdemu 2021-10-23 20:47:30.000000000 +0200 @@ -52,12 +52,18 @@ from gi.repository import AppIndicator3 as AppIndicator have_app_indicator = True except: - have_app_indicator = False + try: + gi.require_version('AyatanaAppIndicator3', '0.1') + + from gi.repository import AyatanaAppIndicator3 as AppIndicator + have_app_indicator = True + except: + have_app_indicator = False # *** Globals *** app_name = "gcdemu" -app_version = "3.2.5" +app_version = "3.2.6" supported_daemon_interface_version = [ 7, 0 ] # I18n
