Hello community, here is the log from the commit of package yast2-ncurses checked in at Wed May 3 13:11:38 CEST 2006. -------- --- yast2-ncurses/yast2-ncurses.changes 2006-04-25 14:17:35.000000000 +0200 +++ STABLE/yast2-ncurses/yast2-ncurses.changes 2006-05-03 11:13:41.000000000 +0200 @@ -1,0 +2,6 @@ +Wed May 3 11:12:03 CEST 2006 - gs@suse.de + +- Online Update: show text "No patches available" if the patch list is empty +- 2.13.27 + +------------------------------------------------------------------- Old: ---- yast2-ncurses-2.13.26.tar.bz2 New: ---- yast2-ncurses-2.13.27.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-ncurses.spec ++++++ --- /var/tmp/diff_new_pack.97IMU0/_old 2006-05-03 13:11:02.000000000 +0200 +++ /var/tmp/diff_new_pack.97IMU0/_new 2006-05-03 13:11:02.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package yast2-ncurses (Version 2.13.26) +# spec file for package yast2-ncurses (Version 2.13.27) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,12 +11,12 @@ # norootforbuild Name: yast2-ncurses -Version: 2.13.26 +Version: 2.13.27 Release: 1 License: GPL Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-ncurses-2.13.26.tar.bz2 +Source0: yast2-ncurses-2.13.27.tar.bz2 prefix: /usr BuildRequires: doxygen gcc-c++ libzypp-devel yast2-core-devel yast2-devtools BuildRequires: blocxx-devel libxcrypt-devel @@ -40,7 +40,7 @@ %prep -%setup -n yast2-ncurses-2.13.26 +%setup -n yast2-ncurses-2.13.27 %build %{prefix}/bin/y2tool y2autoconf @@ -73,6 +73,9 @@ %doc %{prefix}/share/doc/packages/yast2-ncurses %changelog -n yast2-ncurses +* Wed May 03 2006 - gs@suse.de +- Online Update: show text "No patches available" if the patch list is empty +- 2.13.27 * Tue Apr 25 2006 - gs@suse.de - bugfix for #167565 - UI: deselecting one preselected pattern deselects everything (add transactResKind( zypp::ResTraits<zypp::Product>::kind ) ++++++ yast2-ncurses-2.13.26.tar.bz2 -> yast2-ncurses-2.13.27.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ncurses-2.13.26/VERSION new/yast2-ncurses-2.13.27/VERSION --- old/yast2-ncurses-2.13.26/VERSION 2006-04-25 14:30:26.000000000 +0200 +++ new/yast2-ncurses-2.13.27/VERSION 2006-05-03 11:13:50.000000000 +0200 @@ -1 +1 @@ -2.13.26 +2.13.27 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ncurses-2.13.26/src/PackageSelector.cc new/yast2-ncurses-2.13.27/src/PackageSelector.cc --- old/yast2-ncurses-2.13.26/src/PackageSelector.cc 2006-04-24 14:08:53.000000000 +0200 +++ new/yast2-ncurses-2.13.27/src/PackageSelector.cc 2006-05-03 10:38:07.000000000 +0200 @@ -664,13 +664,13 @@ } ++listIt; } - + if ( filter == "installable" && packageList->getNumLines() == 0 ) { - packageList->createInfoEntry( PkgNames::UpToDate() ); + packageList->createInfoEntry( PkgNames::NoPatches() ); } - + // show the patches packageList->drawList(); diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ncurses-2.13.26/src/PkgNames.cc new/yast2-ncurses-2.13.27/src/PkgNames.cc --- old/yast2-ncurses-2.13.26/src/PkgNames.cc 2006-04-06 21:21:06.000000000 +0200 +++ new/yast2-ncurses-2.13.27/src/PkgNames.cc 2006-05-03 10:22:22.000000000 +0200 @@ -1000,6 +1000,13 @@ return value; } +const string PkgNames::NoPatches() +{ + // info line is shown if YOU patch list is empty + static const string value = _( "No patches available" ); + return value; +} + const string PkgNames::PreRequires() { // part of the package description diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ncurses-2.13.26/src/PkgNames.h new/yast2-ncurses-2.13.27/src/PkgNames.h --- old/yast2-ncurses-2.13.26/src/PkgNames.h 2006-04-06 21:21:02.000000000 +0200 +++ new/yast2-ncurses-2.13.27/src/PkgNames.h 2006-05-03 10:22:52.000000000 +0200 @@ -677,6 +677,11 @@ * Info line in empty patch list */ static const string UpToDate(); + + /** + * Info line in empty patch list + */ + static const string NoPatches(); /** * bold text Package Group: (richtext) diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ncurses-2.13.26/src/you_layout.ycp new/yast2-ncurses-2.13.27/src/you_layout.ycp --- old/yast2-ncurses-2.13.26/src/you_layout.ycp 2006-04-24 14:27:13.000000000 +0200 +++ new/yast2-ncurses-2.13.27/src/you_layout.ycp 2006-05-03 09:16:58.000000000 +0200 @@ -7,7 +7,7 @@ * * ncurses layout for YOU * - * $Id: you_layout.ycp 30404 2006-04-24 12:27:26Z gs $ + * $Id: you_layout.ycp 30635 2006-05-03 07:16:32Z gs $ */ { textdomain "packages"; @@ -27,7 +27,7 @@ `item( `id("security"), _( "&Security" ) ), `item( `id("optional"), _( "&Optional" ) ), // end: - `item( `id("yast2"), _( "&YaST2" ) ) + `item( `id("yast2"), _( "YaS&T2" ) ) ] )), // label of the Online Update 'Actions' menu (keep it short) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de