From: Michael Schroeder Date: Tue, 2 Sep 2008 10:20:04 +0000 (+0000) Subject: - make it compile X-Git-Tag: BASE-SuSE-Code-12_1-Branch~308^2~235 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d9984ebc1f91cd83d6e31aeb7899e598ca6f043;p=thirdparty%2Flibsolv.git - make it compile - bumb version, add changes --- diff --git a/VERSION.cmake b/VERSION.cmake index 5d630f37..f7a58ef3 100644 --- a/VERSION.cmake +++ b/VERSION.cmake @@ -46,6 +46,6 @@ SET(LIBSATSOLVER_MAJOR "0") SET(LIBSATSOLVER_MINOR "10") -SET(LIBSATSOLVER_PATCH "5") +SET(LIBSATSOLVER_PATCH "6") # last released 0.10.4 diff --git a/package/libsatsolver.changes b/package/libsatsolver.changes index 6747bded..0f38023d 100644 --- a/package/libsatsolver.changes +++ b/package/libsatsolver.changes @@ -1,3 +1,16 @@ +------------------------------------------------------------------- +Tue Sep 2 12:17:03 CEST 2008 - mls@suse.de + +- make solver includes use "" instead of <>, fixes bnc#415920 +- implement otherproviders() +- make patches do nevr matching +- make patch conflicts work with multiversion +- new job commands, now combinded from job type and select type +- support for distupgrade mode +- make SOLVER_ERASE_SOLVABLE work +- also check obsoletes when disabling update rules +- 0.10.6 + ------------------------------------------------------------------- Fri Aug 22 18:04:12 CEST 2008 - dmacvicar@suse.de diff --git a/src/solver.c b/src/solver.c index 5e4079f1..9970faf3 100644 --- a/src/solver.c +++ b/src/solver.c @@ -1064,6 +1064,7 @@ makemultiversionconflict(Solver *solv, Id n, Id con) queue_push(&q, -n); FOR_PROVIDES(p, pp, sn->name) { + s = pool->solvables + p; if (s->name != sn->name || s->arch != sn->arch) continue; if (!MAPTST(&solv->noobsoletes, p))