commit yast2-qt-pkg for openSUSE:Factory
Hello community, here is the log from the commit of package yast2-qt-pkg for openSUSE:Factory checked in at Wed Mar 25 22:51:01 CET 2009. -------- --- yast2-qt-pkg/yast2-qt-pkg.changes 2009-03-12 17:59:59.000000000 +0100 +++ yast2-qt-pkg/yast2-qt-pkg.changes 2009-03-24 20:36:44.000000000 +0100 @@ -1,0 +2,10 @@ +Tue Mar 17 17:40:49 CET 2009 - tgoettlicher@suse.de + +- Fixed sort by version (bnc #467871) + +------------------------------------------------------------------- +Fri Mar 13 12:44:14 CET 2009 - tgoettlicher@suse.de + +- Added name of source package to technical detail view + +------------------------------------------------------------------- calling whatdependson for head-i586 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-qt-pkg.spec ++++++ --- /var/tmp/diff_new_pack.v27145/_old 2009-03-25 22:47:53.000000000 +0100 +++ /var/tmp/diff_new_pack.v27145/_new 2009-03-25 22:47:53.000000000 +0100 @@ -19,7 +19,7 @@ Name: yast2-qt-pkg Version: 2.18.5 -Release: 1 +Release: 2 License: GPL v2 or later Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -82,6 +82,10 @@ %_prefix/share/YaST2/images/* %changelog +* Tue Mar 17 2009 tgoettlicher@suse.de +- Fixed sort by version (bnc #467871) +* Fri Mar 13 2009 tgoettlicher@suse.de +- Added name of source package to technical detail view * Thu Mar 12 2009 tgoettlicher@suse.de - Fixed confusing system verification mode (bnc #285482) - V 2.18.5 ++++++ yast2-qt-pkg-2.18.5.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-qt-pkg-2.18.5/package/yast2-qt-pkg.changes new/yast2-qt-pkg-2.18.5/package/yast2-qt-pkg.changes --- old/yast2-qt-pkg-2.18.5/package/yast2-qt-pkg.changes 2009-03-12 17:59:58.000000000 +0100 +++ new/yast2-qt-pkg-2.18.5/package/yast2-qt-pkg.changes 2009-03-24 20:36:41.000000000 +0100 @@ -1,4 +1,14 @@ ------------------------------------------------------------------- +Tue Mar 17 17:40:49 CET 2009 - tgoettlicher@suse.de + +- Fixed sort by version (bnc #467871) + +------------------------------------------------------------------- +Fri Mar 13 12:44:14 CET 2009 - tgoettlicher@suse.de + +- Added name of source package to technical detail view + +------------------------------------------------------------------- Thu Mar 12 17:52:29 CET 2009 - tgoettlicher@suse.de - Fixed confusing system verification mode (bnc #285482) diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-qt-pkg-2.18.5/src/YQPkgFilterTab.h new/yast2-qt-pkg-2.18.5/src/YQPkgFilterTab.h --- old/yast2-qt-pkg-2.18.5/src/YQPkgFilterTab.h 2009-03-12 17:59:58.000000000 +0100 +++ new/yast2-qt-pkg-2.18.5/src/YQPkgFilterTab.h 2009-03-24 20:36:41.000000000 +0100 @@ -62,7 +62,7 @@ * The left (filter page) and right panes are separated with a user-moveable * splitter. **/ -class YQPkgFilterTab: protected QTabWidget +class YQPkgFilterTab: public QTabWidget { Q_OBJECT diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-qt-pkg-2.18.5/src/YQPkgObjList.cc new/yast2-qt-pkg-2.18.5/src/YQPkgObjList.cc --- old/yast2-qt-pkg-2.18.5/src/YQPkgObjList.cc 2009-03-12 17:59:58.000000000 +0100 +++ new/yast2-qt-pkg-2.18.5/src/YQPkgObjList.cc 2009-03-24 20:36:41.000000000 +0100 @@ -1521,8 +1521,11 @@ int thisPoints = this->versionPoints(); int otherPoints = other->versionPoints(); - return ( thisPoints < otherPoints ); - return QY2ListViewItem::operator<( otherListViewItem ); + if (thisPoints == otherPoints ) + return ( QString (this->zyppObj()->edition().c_str() ) < + QString (other->zyppObj()->edition().c_str() ) ); + else + return ( thisPoints < otherPoints ); } } diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-qt-pkg-2.18.5/src/YQPkgTechnicalDetailsView.cc new/yast2-qt-pkg-2.18.5/src/YQPkgTechnicalDetailsView.cc --- old/yast2-qt-pkg-2.18.5/src/YQPkgTechnicalDetailsView.cc 2009-03-12 17:59:58.000000000 +0100 +++ new/yast2-qt-pkg-2.18.5/src/YQPkgTechnicalDetailsView.cc 2009-03-24 20:36:41.000000000 +0100 @@ -147,10 +147,7 @@ html += row( hcell( _( "Architecture:" ) ) + cell( pkg->arch().asString() ) ); html += row( hcell( _( "Build Host:" ) ) + cell( pkg->buildhost() ) ); html += row( hcell( _( "URL:" ) ) + cell( pkg->url() ) ); - -#ifdef FIXME_missing_in_zypp - html += row( hcell( _( "Source RPM:" ) ) + cell( pkg->sourceloc() ) ); -#endif + html += row( hcell( _( "Source Package:" ) ) + cell( pkg->sourcePkgName() + "-" + pkg->sourcePkgEdition().asString() ) ); html += row( hcell( _( "Media No.:" ) ) + cell( pkg->mediaNr() ) ); html += row( hcell( _( "Authors:" ) ) + authorsListCell( pkg ) ); @@ -188,9 +185,8 @@ html += row( hcell( _( "Architecture:" ) ) + cell( p1->arch().asString() ) + cell( p2->arch().asString() ) ); html += row( hcell( _( "Build Host:" ) ) + cell( p1->buildhost() ) + cell( p2->buildhost() ) ); html += row( hcell( _( "URL:" ) ) + cell( p1->url() ) + cell( p2->url() ) ); -#ifdef FIXME_missing_in_zypp - html += row( hcell( _( "Source RPM:" ) ) + cell( p1->sourceloc() ) + cell( p2->sourceloc() ) ); -#endif + html += row( hcell( _( "Source Package:" ) ) + cell( p1->sourcePkgName() + "-" + p1->sourcePkgEdition().asString() ) + + cell( p2->sourcePkgName() + "-" + p2->sourcePkgEdition().asString() ) ); html += row( hcell( _( "Media No.:" ) ) + cell( p1->mediaNr() ) + cell( p2->mediaNr() ) ); html += row( hcell( _( "Authors:" ) ) + authorsListCell( p1 ) + authorsListCell( p2 ) ); ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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@Hilbert.suse.de