From 4bf712d160e752a22d6ed725bcd151412a905301 Mon Sep 17 00:00:00 2001 From: Michael Schroeder Date: Thu, 11 Sep 2014 17:38:43 +0200 Subject: [PATCH] add changes, bump version to 0.6.5 --- VERSION.cmake | 2 +- examples/solv.c | 1 + package/libsolv.changes | 11 +++++++++++ src/transaction.c | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/VERSION.cmake b/VERSION.cmake index ac9ef359..324dfa7a 100644 --- a/VERSION.cmake +++ b/VERSION.cmake @@ -49,5 +49,5 @@ SET(LIBSOLVEXT_SOVERSION "0") SET(LIBSOLV_MAJOR "0") SET(LIBSOLV_MINOR "6") -SET(LIBSOLV_PATCH "4") +SET(LIBSOLV_PATCH "5") diff --git a/examples/solv.c b/examples/solv.c index d9b03a1c..7ae67e35 100644 --- a/examples/solv.c +++ b/examples/solv.c @@ -2464,6 +2464,7 @@ showdiskusagechanges(Transaction *trans) int i; /* XXX: use mountpoints here */ + memset(duc, 0, sizeof(duc)); duc[0].path = "/"; duc[1].path = "/usr/share/man"; duc[2].path = "/sbin"; diff --git a/package/libsolv.changes b/package/libsolv.changes index 7368f386..28bd9763 100644 --- a/package/libsolv.changes +++ b/package/libsolv.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Thu Sep 11 17:33:04 CEST 2014 - mls@suse.de + +- support DUCHANGES_ONLYADD flag in diskusage calculation + [bnc#783100] +- add whatmatchesdep to bindings +- support pool->considered in testcases +- always call selection_filelist if SELECTION_FILELIST is set +- support yum style obsolete handling for package splits +- bump version to 0.6.5 + ------------------------------------------------------------------- Tue Jul 8 14:13:40 CEST 2014 - mls@suse.de diff --git a/src/transaction.c b/src/transaction.c index 7dac0a81..49e58e86 100644 --- a/src/transaction.c +++ b/src/transaction.c @@ -666,7 +666,7 @@ create_transaction_info(Transaction *trans, Queue *decisionq) s2 = pool->solvables + p2; if (s2->repo != installed) continue; - if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p2, obs)) + if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, s2, obs)) continue; if (pool->obsoleteusescolors && !pool_colormatch(pool, s, s2)) continue; -- 2.47.3