Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package vocal for openSUSE:Factory checked 
in at 2021-10-08 00:06:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vocal (Old)
 and      /work/SRC/openSUSE:Factory/.vocal.new.2443 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vocal"

Fri Oct  8 00:06:21 2021 rev:11 rq:923783 version:2.4.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/vocal/vocal.changes      2020-02-20 
15:00:55.422940678 +0100
+++ /work/SRC/openSUSE:Factory/.vocal.new.2443/vocal.changes    2021-10-08 
00:07:18.325880968 +0200
@@ -1,0 +2,8 @@
+Thu Oct  7 13:20:10 UTC 2021 - Bj??rn Lie <[email protected]>
+
+- Add vocal-fix-build.patch: Fix build with granite 6.0 and newer.
+  Patch from arch linux.
+  https://github.com/needle-and-thread/vocal/issues/483
+- Update URL to new home.
+
+-------------------------------------------------------------------

New:
----
  vocal-fix-build.patch

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

Other differences:
------------------
++++++ vocal.spec ++++++
--- /var/tmp/diff_new_pack.0AcyYh/_old  2021-10-08 00:07:18.693881592 +0200
+++ /var/tmp/diff_new_pack.0AcyYh/_new  2021-10-08 00:07:18.693881592 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package vocal
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,8 +22,10 @@
 Summary:        A podcast client for the desktop
 License:        GPL-3.0-only
 Group:          Productivity/Multimedia/Other
-URL:            https://launchpad.net/vocal
+URL:            https://vocalproject.net/
 Source:         
https://github.com/needle-and-thread/vocal/archive/%{version}.tar.gz
+# PATCH-FIX-UPSTREAM vocal-fix-build.patch -- 
https://github.com/needle-and-thread/vocal/issues/483
+Patch:          vocal-fix-build.patch
 BuildRequires:  cmake
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -63,7 +65,7 @@
 %lang_package
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
 %cmake

++++++ vocal-fix-build.patch ++++++
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 957b1f9..3bf5016 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -414,10 +414,6 @@ namespace Vocal {
             toolbar.import_podcasts_selected.connect (() => {
                 import_podcasts();
             });
-
-            toolbar.about_selected.connect (() => {
-                controller.app.show_about (this);
-            });
             
             toolbar.theme_toggled.connect (() => {
                 if (controller.settings.dark_mode_enabled) {
diff --git a/src/Widgets/Toolbar.vala b/src/Widgets/Toolbar.vala
index 1da6a48..403998e 100644
--- a/src/Widgets/Toolbar.vala
+++ b/src/Widgets/Toolbar.vala
@@ -38,7 +38,6 @@ namespace Vocal {
                public signal void seek_backward_selected();
                public signal void downloads_selected();
         public signal void check_for_updates_selected();
-        public signal void about_selected ();
         public signal void theme_toggled ();
 
         public Gtk.Menu             menu;
@@ -193,11 +192,6 @@ namespace Vocal {
             });
             //menu.add(donate);
 
-            var about = new Gtk.MenuItem.with_label (_("About"));
-            about.activate.connect (() => {
-                about_selected ();
-            });
-            menu.add (about);
             menu.show_all();
 
             // Create the AppMenu

Reply via email to