51 lines
1.7 KiB
Diff
51 lines
1.7 KiB
Diff
From 96f516a4e01b00094919c6c365d804a109b5875f Mon Sep 17 00:00:00 2001
|
|
From: Kalev Lember <klember@redhat.com>
|
|
Date: Wed, 24 Oct 2018 15:00:59 +0200
|
|
Subject: [PATCH] Lower as_utils_vercmp_full version check for Fedora
|
|
|
|
We have new as_utils_vercmp_full API backported to
|
|
libappstream-glib-0.7.14-2.fc29.
|
|
---
|
|
lib/gs-plugin-loader.c | 2 +-
|
|
src/gs-update-dialog.c | 4 ++--
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/lib/gs-plugin-loader.c b/lib/gs-plugin-loader.c
|
|
index 93e394906..b84a0ba65 100644
|
|
--- a/lib/gs-plugin-loader.c
|
|
+++ b/lib/gs-plugin-loader.c
|
|
@@ -1423,7 +1423,7 @@ gs_plugin_loader_app_sort_match_value_cb (GsApp *app1, GsApp *app2, gpointer use
|
|
static gint
|
|
gs_plugin_loader_app_sort_version_cb (GsApp *app1, GsApp *app2, gpointer user_data)
|
|
{
|
|
-#if AS_CHECK_VERSION(0,7,15)
|
|
+#if AS_CHECK_VERSION(0,7,14)
|
|
return as_utils_vercmp_full (gs_app_get_version (app1),
|
|
gs_app_get_version (app2),
|
|
AS_VERSION_COMPARE_FLAG_NONE);
|
|
diff --git a/src/gs-update-dialog.c b/src/gs-update-dialog.c
|
|
index b4c1b1187..e92cd5b87 100644
|
|
--- a/src/gs-update-dialog.c
|
|
+++ b/src/gs-update-dialog.c
|
|
@@ -374,7 +374,7 @@ is_downgrade (const gchar *evr1,
|
|
* part of the semantic version */
|
|
|
|
/* check version */
|
|
-#if AS_CHECK_VERSION(0,7,15)
|
|
+#if AS_CHECK_VERSION(0,7,14)
|
|
rc = as_utils_vercmp_full (version1, version2,
|
|
AS_VERSION_COMPARE_FLAG_NONE);
|
|
#else
|
|
@@ -384,7 +384,7 @@ is_downgrade (const gchar *evr1,
|
|
return rc > 0;
|
|
|
|
/* check release */
|
|
-#if AS_CHECK_VERSION(0,7,15)
|
|
+#if AS_CHECK_VERSION(0,7,14)
|
|
rc = as_utils_vercmp_full (version1, version2,
|
|
AS_VERSION_COMPARE_FLAG_NONE);
|
|
#else
|
|
--
|
|
2.19.1
|
|
|