Hello community, here is the log from the commit of package libzypp-zmd-backend checked in at Wed Nov 29 12:04:22 CET 2006. -------- --- libzypp-zmd-backend/libzypp-zmd-backend.changes 2006-11-27 18:05:59.000000000 +0100 +++ /mounts/work_src_done/STABLE/STABLE/libzypp-zmd-backend/libzypp-zmd-backend.changes 2006-11-28 22:36:28.000000000 +0100 @@ -1,0 +2,6 @@ +Tue Nov 28 22:35:10 CET 2006 - kkaempf@suse.de + +- honor licenseToConfirm in patch (#224192) +- r4701 + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libzypp-zmd-backend.spec ++++++ --- /var/tmp/diff_new_pack.SCl1YS/_old 2006-11-29 12:03:49.000000000 +0100 +++ /var/tmp/diff_new_pack.SCl1YS/_new 2006-11-29 12:03:49.000000000 +0100 @@ -12,7 +12,7 @@ Name: libzypp-zmd-backend Version: 7.1.1.0_0.5 -Release: 1 +Release: 4 License: GNU General Public License (GPL) Group: System/Management Summary: ZMD backend for Package, Patch, Pattern, and Product Management @@ -73,6 +73,9 @@ /etc/logrotate.d/zmd-backend %changelog -n libzypp-zmd-backend +* Tue Nov 28 2006 - kkaempf@suse.de +- honor licenseToConfirm in patch (#224192) +- r4701 * Mon Nov 27 2006 - dmacvicar@suse.de - replace spaces for underscores in product name at reading - require libzypp 2.8.7 ++++++ zmd-backend-7.1.1.0_0.5.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/zmd-backend-7.1.1.0_0.5/src/dbsource/DbAccess.cc new/zmd-backend-7.1.1.0_0.5/src/dbsource/DbAccess.cc --- old/zmd-backend-7.1.1.0_0.5/src/dbsource/DbAccess.cc 2006-11-20 11:50:06.000000000 +0100 +++ new/zmd-backend-7.1.1.0_0.5/src/dbsource/DbAccess.cc 2006-11-28 22:31:16.000000000 +0100 @@ -1281,6 +1281,15 @@ else if (patch != NULL) { sqlite3_bind_text( handle, 11, patch->category().c_str(), -1, SQLITE_STATIC ); + license = patch->licenseToConfirm(); + if (license.empty()) + { + sqlite3_bind_text( handle, 12, NULL, -1, SQLITE_STATIC ); + } + else + { + sqlite3_bind_text( handle, 12, license.c_str(), -1, SQLITE_STATIC ); + } } else if (product != NULL) { ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de