Hello community,

here is the log from the commit of package PackageKit for openSUSE:Factory 
checked in at 2015-12-17 15:52:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/PackageKit (Old)
 and      /work/SRC/openSUSE:Factory/.PackageKit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "PackageKit"

Changes:
--------
--- /work/SRC/openSUSE:Factory/PackageKit/PackageKit.changes    2015-11-18 
22:33:26.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.PackageKit.new/PackageKit.changes       
2015-12-17 15:52:04.000000000 +0100
@@ -1,0 +2,19 @@
+Sun Nov 29 19:09:25 UTC 2015 - zai...@opensuse.org
+
+- Update to version 1.0.11:
+  + By popular demand, reintroduce the UpgradeSystem method.
+  + Backends:
+    - python:
+      . Make PackagekitProgress an Iterable.
+      . Set steps on PackagekitProgress instanciation.
+    - zypp: Raise priority of ZYPP stack updates if a security
+      patch is shadowed (bsc#951592).
+    - dummy: Implement simulating UpgradeSystem and respect the
+      transaction flags.
+    - Lots of fixes for aptcc, hif and portage backends.
+  + New Features: Allow the use of variadic functions in vala.
+  + Bugfixes: Make pk_details_get_size documentation more specific.
+- Add PackageKit-zypp-buildfix.patch: Fix build of the zypp
+  backend.
+
+-------------------------------------------------------------------

Old:
----
  PackageKit-1.0.10.tar.xz
  PackageKit-1.0.10.tar.xz.asc

New:
----
  PackageKit-1.0.11.tar.xz
  PackageKit-1.0.11.tar.xz.asc
  PackageKit-zypp-buildfix.patch

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

Other differences:
------------------
++++++ PackageKit.spec ++++++
--- /var/tmp/diff_new_pack.iUVtts/_old  2015-12-17 15:52:05.000000000 +0100
+++ /var/tmp/diff_new_pack.iUVtts/_new  2015-12-17 15:52:05.000000000 +0100
@@ -20,7 +20,7 @@
 %define BUILD_CNF 0
 %define with_offline_updates 1
 Name:           PackageKit
-Version:        1.0.10
+Version:        1.0.11
 Release:        0
 Summary:        Simple software installation management software
 License:        GPL-2.0+
@@ -39,6 +39,8 @@
 Patch5:         PackageKit-fix-offline-trigger.patch
 # PATCH-FIX-UPSTREAM PackageKit-avoid-endless-loop-on-autoupdate.patch 
zai...@opensuse.org -- Avoid a endless loop on autoupdates.
 Patch6:         PackageKit-avoid-endless-loop-on-autoupdate.patch
+# PATCH-FIX-UPSTREAM PackageKit-zypp-buildfix.patch dims...@opensuse.org -- 
Fix build of the zypp backend
+Patch7:         PackageKit-zypp-buildfix.patch
 BuildRequires:  NetworkManager-devel
 BuildRequires:  automake
 BuildRequires:  docbook-utils
@@ -243,6 +245,7 @@
 %patch4 -p1
 %patch5 -p1
 %patch6 -p1
+%patch7 -p1
 translation-update-upstream
 
 %build

++++++ PackageKit-1.0.10.tar.xz -> PackageKit-1.0.11.tar.xz ++++++
++++ 24612 lines of diff (skipped)

++++++ PackageKit-zypp-buildfix.patch ++++++
>From 62459d11647b69e0573f13327536221d7c813135 Mon Sep 17 00:00:00 2001
From: Dominique Leuenberger <dims...@opensuse.org>
Date: Fri, 11 Dec 2015 13:02:05 +0100
Subject: [PATCH] zypp: fix build

b47f98 changed a bunch of gchar* to const gchar* to address some memory leaks.
uri should not have been touched - and it is being g_free()'d as needed.
---
 backends/zypp/pk-backend-zypp.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/backends/zypp/pk-backend-zypp.cpp 
b/backends/zypp/pk-backend-zypp.cpp
index 005ffb5..af4585a 100644
--- a/backends/zypp/pk-backend-zypp.cpp
+++ b/backends/zypp/pk-backend-zypp.cpp
@@ -3577,10 +3577,10 @@ pk_backend_start_job (PkBackend *backend, PkBackendJob 
*job)
        const gchar *proxy_http;
        const gchar *proxy_https;
        const gchar *proxy_ftp;
-       const gchar *uri;
        const gchar *proxy_socks;
        const gchar *no_proxy;
        const gchar *pac;
+       gchar *uri;
 
        locale = pk_backend_job_get_locale(job);
        if (!pk_strzero (locale)) {
-- 
2.6.3



Reply via email to