Accepting request 398630 from home:Zaitor:branches:GNOME:Factory

New stable release

OBS-URL: https://build.opensuse.org/request/show/398630
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-software?expand=0&rev=85
This commit is contained in:
Bjørn Lie 2016-05-30 16:26:44 +00:00 committed by Git OBS Bridge
parent 7fe98c5937
commit 841eeb8246
8 changed files with 22 additions and 127 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7e12b48443eeff82d309d971798d3758f48e08b681d192b5bdeaadf4a4bbb40f
size 3500540

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4f34ffb3b3468ab0675ce18a73cbfcdf6e21b41ac715bc09d86c40e26f60142c
size 3505288

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Sat May 28 19:30:40 UTC 2016 - zaitor@opensuse.org
- Update to version 3.20.3:
+ Fix several issues with system upgrades.
+ Fix several issues with the Ubuntu reviews dialog.
+ Fix an issue that caused incorrect package versions to be shown
in the update panel.
+ Fix an issue that caused offline updates to not start under
certain conditions.
+ Updated translations.
- Drop gs-compile-against-old-appstream-glib.patch,
gs-Fix-underlinking.patch, gs-Fix-xdg-app-build.patch and
gs-Fix-a-possible-crasher.patch: Fixed upstream.
- Following the above drop gnome-common BuildRequires and
autoreconf call, we no longer have patches touching the
buildsystem.
-------------------------------------------------------------------
Wed May 18 16:46:03 UTC 2016 - zaitor@opensuse.org

View File

@ -17,7 +17,7 @@
Name: gnome-software
Version: 3.20.2
Version: 3.20.3
Release: 0
%define gs_plugin_api 9
Summary: GNOME Software Store
@ -29,17 +29,6 @@ Source: http://download.gnome.org/sources/gnome-software/3.20/%{name}-%{
Patch0: gnome-software-add-default-yast-appfolder.patch
# PATCH-FIX-UPSTREAM gnome-software-icon-crash.patch boo#974806 mgorse@suse.com -- don't crash if unable to find a cached icon.
Patch1: gnome-software-icon-crash.patch
# PATCH-FIX-UPSTREAM gs-compile-against-old-appstream-glib.patch zaitor@opensuse.org -- Support compiling against old versions of appstream-glib
Patch2: gs-compile-against-old-appstream-glib.patch
# PATCH-FIX-UPSTREAM gs-Fix-underlinking-.patch zaitor@opensuse.org -- Fix underlinking in the packagekit-origin plugin.
Patch3: gs-Fix-underlinking.patch
# PATCH-FIX-UPSTREAM gs-Fix-xdg-app-build.patch zaitor@opensuse.org -- Fix build of the xdg-app plugin.
Patch4: gs-Fix-xdg-app-build.patch
# PATCH-FIX-UPSTREAM gs-Fix-a-possible-crasher.patch zaitor@opensuse.org -- Fix a possible crasher in Fix a possible crash in review ratings.
Patch5: gs-Fix-a-possible-crasher.patch
# Needed for patch3 and patch4
BuildRequires: gnome-common
#
BuildRequires: intltool >= 0.35.0
BuildRequires: suse-xsl-stylesheets
BuildRequires: update-desktop-files
@ -72,14 +61,8 @@ AppStore like management of Applications for your GNOME Desktop.
%setup -q
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
%patch4 -p1
%patch5 -p1
%build
# Needed for patch3 and patch4
autoreconf -fiv
%configure \
--disable-static \
--disable-firmware

View File

@ -1,25 +0,0 @@
From d4730427508740f70b89f8417fc2db01a3918736 Mon Sep 17 00:00:00 2001
From: Richard Hughes <richard@hughsie.com>
Date: Fri, 22 Apr 2016 18:25:34 +0100
Subject: trivial: Fix a possible crash spotted by clang
---
src/gs-shell-details.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/gs-shell-details.c b/src/gs-shell-details.c
index 7e1982f..57e0aa9 100644
--- a/src/gs-shell-details.c
+++ b/src/gs-shell-details.c
@@ -996,7 +996,7 @@ gs_shell_details_review_button_clicked_cb (GsReviewRow *row,
static void
gs_shell_details_refresh_reviews (GsShellDetails *self)
{
- GArray *review_ratings;
+ GArray *review_ratings = NULL;
GPtrArray *reviews;
gboolean show_review_button = TRUE;
gboolean show_reviews = FALSE;
--
cgit v0.12

View File

@ -1,28 +0,0 @@
From bcc8ea09e46d2b27872f8a917941421ca79da6c8 Mon Sep 17 00:00:00 2001
From: Richard Hughes <richard@hughsie.com>
Date: Fri, 13 May 2016 16:47:30 +0100
Subject: trivial: Fix underlinking in the packagekit-origin plugin
---
src/plugins/Makefile.am | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am
index a256cec..71b78b0 100644
--- a/src/plugins/Makefile.am
+++ b/src/plugins/Makefile.am
@@ -229,7 +229,10 @@ libgs_plugin_packagekit_offline_la_LIBADD = $(GS_PLUGIN_LIBS)
libgs_plugin_packagekit_offline_la_LDFLAGS = -module -avoid-version
libgs_plugin_packagekit_offline_la_CFLAGS = $(GS_PLUGIN_CFLAGS) $(WARN_CFLAGS)
-libgs_plugin_packagekit_origin_la_SOURCES = gs-plugin-packagekit-origin.c
+libgs_plugin_packagekit_origin_la_SOURCES = \
+ gs-plugin-packagekit-origin.c \
+ packagekit-common.c \
+ packagekit-common.h
libgs_plugin_packagekit_origin_la_LIBADD = $(GS_PLUGIN_LIBS)
libgs_plugin_packagekit_origin_la_LDFLAGS = -module -avoid-version
libgs_plugin_packagekit_origin_la_CFLAGS = $(GS_PLUGIN_CFLAGS) $(WARN_CFLAGS)
--
cgit v0.12

View File

@ -1,29 +0,0 @@
From 38852511096d51ced50fddb862a48e43caf64bbf Mon Sep 17 00:00:00 2001
From: Richard Hughes <richard@hughsie.com>
Date: Thu, 7 Apr 2016 17:13:45 +0100
Subject: trivial: Fix the xdg-app build
---
src/plugins/Makefile.am | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am
index 32d2605..fe5ad94 100644
--- a/src/plugins/Makefile.am
+++ b/src/plugins/Makefile.am
@@ -147,7 +147,10 @@ libgs_plugin_limba_la_CFLAGS = $(GS_PLUGIN_CFLAGS) $(WARN_CFLAGS)
endif
if HAVE_XDG_APP
-libgs_plugin_xdg_app_la_SOURCES = gs-plugin-xdg-app.c
+libgs_plugin_xdg_app_la_SOURCES = \
+ gs-appstream.c \
+ gs-appstream.h \
+ gs-plugin-xdg-app.c
libgs_plugin_xdg_app_la_LIBADD = $(GS_PLUGIN_LIBS) $(XDG_APP_LIBS)
libgs_plugin_xdg_app_la_LDFLAGS = -module -avoid-version
libgs_plugin_xdg_app_la_CFLAGS = $(GS_PLUGIN_CFLAGS) $(WARN_CFLAGS)
--
cgit v0.12

View File

@ -1,24 +0,0 @@
From d73cb3ed65f1414662452cdd8cf85ae6835ebecf Mon Sep 17 00:00:00 2001
From: Richard Hughes <richard@hughsie.com>
Date: Mon, 25 Apr 2016 15:59:22 +0100
Subject: trivial: Support compiling against old versions of appstream-glib
---
src/gs-app.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/gs-app.h b/src/gs-app.h
index 6cb48c2..d546673 100644
--- a/src/gs-app.h
+++ b/src/gs-app.h
@@ -78,6 +78,7 @@ typedef enum {
#endif
#if !AS_CHECK_VERSION(0,5,14)
+#define AS_APP_QUIRK_NEEDS_REBOOT (1 << 4)
#define AS_APP_QUIRK_NOT_REVIEWABLE (1 << 5)
#endif
--
cgit v0.12