Hello community, here is the log from the commit of package libzypp-zmd-backend checked in at Wed Mar 29 13:37:42 CEST 2006. -------- --- /work/SRC/all/libzypp-zmd-backend/libzypp-zmd-backend.changes 2006-03-29 06:35:07.000000000 +0200 +++ /work/src/done/STABLE/libzypp-zmd-backend/libzypp-zmd-backend.changes 2006-03-29 13:31:02.000000000 +0200 @@ -1,0 +2,7 @@ +Wed Mar 29 13:29:46 CEST 2006 - kkaempf@suse.de + +- call the correct 'getZYpp()' function. +- fix argument parsing in resolve-dependencies (#161699) +- rev 2748 + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libzypp-zmd-backend.spec ++++++ --- /var/tmp/diff_new_pack.TSmgKW/_old 2006-03-29 13:36:54.000000000 +0200 +++ /var/tmp/diff_new_pack.TSmgKW/_new 2006-03-29 13:36:54.000000000 +0200 @@ -22,7 +22,7 @@ Obsoletes: zmd-librc-backend Summary: ZMD backend for Package, Patch, Pattern, and Product Management Version: 7.1.1 -Release: 19 +Release: 20 Source: zmd-backend-%{version}.tar.bz2 Prefix: /usr @@ -69,6 +69,10 @@ %changelog -n libzypp-zmd-backend * Wed Mar 29 2006 - kkaempf@suse.de +- call the correct 'getZYpp()' function. +- fix argument parsing in resolve-dependencies (#161699) +- rev 2748 +* Wed Mar 29 2006 - kkaempf@suse.de - adapt to catalogs table change in zmd, now passes 'subscribed' (#161395) - rev 2734, needs zmd >= rev 26297 ++++++ zmd-backend-7.1.1.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/zmd-backend-7.1.1/src/resolve-dependencies.cc new/zmd-backend-7.1.1/src/resolve-dependencies.cc --- old/zmd-backend-7.1.1/src/resolve-dependencies.cc 2006-03-28 22:25:27.000000000 +0200 +++ new/zmd-backend-7.1.1/src/resolve-dependencies.cc 2006-03-29 13:06:29.000000000 +0200 @@ -55,7 +55,7 @@ int main (int argc, char **argv) { - if (argc != 2) { + if (argc < 2) { cerr << "usage: " << argv[0] << " <database> [verify]" << endl; return 1; } diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/zmd-backend-7.1.1/src/zmd-backend.cc new/zmd-backend-7.1.1/src/zmd-backend.cc --- old/zmd-backend-7.1.1/src/zmd-backend.cc 2006-03-28 22:28:14.000000000 +0200 +++ new/zmd-backend-7.1.1/src/zmd-backend.cc 2006-03-29 13:26:13.000000000 +0200 @@ -14,7 +14,7 @@ { ZYpp::Ptr Z = NULL; try { - Z = getZYpp(); + Z = zypp::getZYpp(); } catch (Exception & excpt_r) { ZYPP_CAUGHT (excpt_r); diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/zmd-backend-7.1.1/src/zmd-backend.h new/zmd-backend-7.1.1/src/zmd-backend.h --- old/zmd-backend-7.1.1/src/zmd-backend.h 2006-03-28 22:24:51.000000000 +0200 +++ new/zmd-backend-7.1.1/src/zmd-backend.h 2006-03-29 13:27:36.000000000 +0200 @@ -5,6 +5,7 @@ #include <zypp/base/LogControl.h> #include <zypp/ZYpp.h> +#include <zypp/ZYppFactory.h> #define ZMD_BACKEND_LOG "/var/log/zmd-backend.log" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de