Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package mate-applet-softupd for
openSUSE:Factory checked in at 2021-06-02 22:11:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mate-applet-softupd (Old)
and /work/SRC/openSUSE:Factory/.mate-applet-softupd.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mate-applet-softupd"
Wed Jun 2 22:11:44 2021 rev:6 rq:896708 version:0.4.8
Changes:
--------
--- /work/SRC/openSUSE:Factory/mate-applet-softupd/mate-applet-softupd.changes
2018-03-20 21:56:53.833162816 +0100
+++
/work/SRC/openSUSE:Factory/.mate-applet-softupd.new.1898/mate-applet-softupd.changes
2021-06-02 22:12:10.044163896 +0200
@@ -1,0 +2,7 @@
+Tue Jun 1 00:13:48 UTC 2021 - Ferdinand Thiessen <[email protected]>
+
+- Update to version 0.4.8
+ * prevent leaking of file descriptors when using pipes
+- Add no-gtk2.patch, no need to require GTK2 only for autoreconf
+
+-------------------------------------------------------------------
Old:
----
mate-applet-softupd-0.4.7.tar.gz
New:
----
mate-applet-softupd-0.4.8.tar.gz
no-gtk2.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mate-applet-softupd.spec ++++++
--- /var/tmp/diff_new_pack.xblVa2/_old 2021-06-02 22:12:10.464162858 +0200
+++ /var/tmp/diff_new_pack.xblVa2/_new 2021-06-02 22:12:10.464162858 +0200
@@ -1,7 +1,7 @@
#
# spec file for package mate-applet-softupd
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# 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
@@ -12,20 +12,23 @@
# 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 _ver_date 2017/06
Name: mate-applet-softupd
-Version: 0.4.7
+Version: 0.4.8
Release: 0
Summary: MATE panel applet for software update notifications
License: GPL-2.0-or-later
Group: System/GUI/Other
-Url: http://zavedil.com/mate-software-updates-applet
-Source:
http://zavedil.com/wp-content/uploads/%{_ver_date}/mate-applet-softupd-%{version}.tar.gz
+URL: http://zavedil.com/mate-software-updates-applet
+Source:
https://github.com/assen-totin/mate-applet-softupd/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE no-gtk2.patch -- Strip GTK2 from autoconf, we do not use
it so no need to require it for autoreconf
+Patch0: no-gtk2.patch
BuildRequires: PackageKit-devel
+BuildRequires: autoconf
+BuildRequires: automake
BuildRequires: gettext-devel
BuildRequires: gnome-packagekit
BuildRequires: hicolor-icon-theme
@@ -50,14 +53,15 @@
%lang_package
%prep
-%setup -q
+%autosetup -p1
%build
+NO_CONFIGURE=1 sh ./autogen.sh
%configure \
--enable-gtk=3 \
--enable-backend=package-kit \
--enable-installer=gpk-update-viewer
-make %{?_smp_mflags} V=1
+%make_build
%install
%make_install
++++++ mate-applet-softupd-0.4.7.tar.gz -> mate-applet-softupd-0.4.8.tar.gz
++++++
++++ 27314 lines of diff (skipped)
++++++ no-gtk2.patch ++++++
diff -Nur mate-applet-softupd-0.4.8/configure.ac new/configure.ac
--- mate-applet-softupd-0.4.8/configure.ac 2019-03-18 22:09:12.000000000
+0100
+++ new/configure.ac 2021-06-01 02:18:16.446809987 +0200
@@ -74,7 +74,6 @@
USE_GTK="0"
AC_ARG_ENABLE([gtk],[AS_HELP_STRING([--enable-gtk],[compile only for the
specified GTK version, 2 or 3 (default: check both, use GTK-3, if not found,
use GTK-2))])],[FORCE_GTK=$enableval])
-PKG_CHECK_MODULES([PKG_GTK2], [gtk+-2.0], [FOUND_GTK2="1"], [FOUND_GTK2="0"])
PKG_CHECK_MODULES([PKG_GTK3], [gtk+-3.0], [FOUND_GTK3="1"], [FOUND_GTK3="0"])
if test $FORCE_GTK = "3" ; then
@@ -83,12 +82,6 @@
else
AC_MSG_ERROR(["*** GTK3 forced, but not found."])
fi
-elif test $FORCE_GTK = "2" ; then
- if test $FOUND_GTK2 = "1" ; then
- AM_PATH_GTK_2_0([2.24.0], [USE_GTK="2"], [AC_MSG_ERROR(["***
GTK2 forced, but not found."])])
- else
- AC_MSG_ERROR(["*** GTK2 forced, but not found."])
- fi
else
# Try to match the GTK version used by mate-panel.
PANEL_GTK=`$PKG_CONFIG --print-requires "$LIBMATEPANELAPPLET"
2>/dev/null |
@@ -96,17 +89,12 @@
case "$PANEL_GTK" in
gtk+-3*)
AM_PATH_GTK_3_0([3.14.0], [USE_GTK="3"], [AC_MSG_ERROR(["***
GTK3 used by mate-panel, but no suitable version found."])]);;
- gtk+-2*)
- AM_PATH_GTK_2_0([2.24.0], [USE_GTK="2"], [AC_MSG_ERROR(["***
GTK2 used by mate-panel, but no suitable version found."])]);;
esac
# Only accept GTK3 if at least 3.14; else resort to GTK2
if test $FOUND_GTK3 = "1" -a $USE_GTK = "0"; then
AM_PATH_GTK_3_0([3.14.0], [USE_GTK="3"], [USE_GTK="0"])
fi
- if test $FOUND_GTK2 = "1" -a $USE_GTK = "0" ; then
- AM_PATH_GTK_2_0([2.24.0], [USE_GTK="2"], [USE_GTK="0"])
- fi
fi
if test $USE_GTK = "3" ; then