From: Michael Schroeder Date: Thu, 11 Sep 2014 15:38:43 +0000 (+0200) Subject: add changes, bump version to 0.6.5 X-Git-Tag: 0.6.5^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4bf712d160e752a22d6ed725bcd151412a905301;p=thirdparty%2Flibsolv.git add changes, bump version to 0.6.5 --- 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;