Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libyui for openSUSE:Factory checked in at 2021-12-22 20:17:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libyui (Old) and /work/SRC/openSUSE:Factory/.libyui.new.2520 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libyui" Wed Dec 22 20:17:50 2021 rev:73 rq:941857 version:4.2.24 Changes: -------- --- /work/SRC/openSUSE:Factory/libyui/libyui.changes 2021-12-08 22:08:20.582845329 +0100 +++ /work/SRC/openSUSE:Factory/.libyui.new.2520/libyui.changes 2021-12-22 20:18:30.183859325 +0100 @@ -1,0 +2,15 @@ +Tue Dec 21 14:04:54 UTC 2021 - Stefan Hundhammer <[email protected]> + +- Fix deprecated warning (elevated to error by -Werror) + for libmicrohttpd's MHD_HTTP_UNPROCESSABLE_ENTITY in rest-api + (bsc#1193956) +- 4.2.24 + +------------------------------------------------------------------- +Tue Dec 21 09:52:27 UTC 2021 - Stefan Hundhammer <[email protected]> + +- Fixed YQPkg button redraw problem in dark SLE installation theme: + Use centered button in dialogs with QSizeGrip (bsc#1193808) +- 4.2.23 + +------------------------------------------------------------------- Old: ---- libyui-4.2.22.tar.bz2 New: ---- libyui-4.2.24.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libyui-bindings.spec ++++++ --- /var/tmp/diff_new_pack.41G4nt/_old 2021-12-22 20:18:30.691859563 +0100 +++ /var/tmp/diff_new_pack.41G4nt/_new 2021-12-22 20:18:30.695859564 +0100 @@ -20,7 +20,7 @@ Name: libyui-bindings # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 Summary: Bindings for libyui License: LGPL-2.1-only OR LGPL-3.0-only ++++++ libyui-ncurses-pkg.spec ++++++ --- /var/tmp/diff_new_pack.41G4nt/_old 2021-12-22 20:18:30.711859572 +0100 +++ /var/tmp/diff_new_pack.41G4nt/_new 2021-12-22 20:18:30.715859574 +0100 @@ -19,7 +19,7 @@ Name: libyui-ncurses-pkg # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 libyui-ncurses-rest-api.spec: same change libyui-ncurses.spec: same change ++++++ libyui-qt-graph.spec ++++++ --- /var/tmp/diff_new_pack.41G4nt/_old 2021-12-22 20:18:30.771859600 +0100 +++ /var/tmp/diff_new_pack.41G4nt/_new 2021-12-22 20:18:30.775859602 +0100 @@ -19,7 +19,7 @@ Name: libyui-qt-graph # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 ++++++ libyui-qt-pkg.spec ++++++ --- /var/tmp/diff_new_pack.41G4nt/_old 2021-12-22 20:18:30.791859609 +0100 +++ /var/tmp/diff_new_pack.41G4nt/_new 2021-12-22 20:18:30.795859611 +0100 @@ -19,7 +19,7 @@ Name: libyui-qt-pkg # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 libyui-qt-rest-api.spec: same change libyui-qt.spec: same change libyui-rest-api.spec: same change libyui.spec: same change ++++++ libyui-4.2.22.tar.bz2 -> libyui-4.2.24.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/VERSION.cmake new/libyui-4.2.24/VERSION.cmake --- old/libyui-4.2.22/VERSION.cmake 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/VERSION.cmake 2021-12-21 15:21:31.000000000 +0100 @@ -1,6 +1,6 @@ SET( VERSION_MAJOR "4") SET( VERSION_MINOR "2" ) -SET( VERSION_PATCH "22" ) +SET( VERSION_PATCH "24" ) SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}" ) SET( SONAME_MAJOR "15" ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/libyui-qt-pkg/src/YQPkgHistoryDialog.cc new/libyui-4.2.24/libyui-qt-pkg/src/YQPkgHistoryDialog.cc --- old/libyui-4.2.22/libyui-qt-pkg/src/YQPkgHistoryDialog.cc 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/libyui-qt-pkg/src/YQPkgHistoryDialog.cc 2021-12-21 15:21:31.000000000 +0100 @@ -115,22 +115,24 @@ splitter->setStretchFactor( 1, 3 ); - // Button box to right-align the single button + // Button box to center the single button QHBoxLayout * hbox = new QHBoxLayout(); Q_CHECK_PTR( hbox ); layout->addLayout( hbox ); hbox->addStretch(); - QPushButton * closeButton = new QPushButton( _( "&Close" ), this ); - Q_CHECK_PTR( closeButton ); - hbox->addWidget( closeButton ); - closeButton->setDefault( true ); + QPushButton * okButton = new QPushButton( _( "&OK" ), this ); + Q_CHECK_PTR( okButton ); + hbox->addWidget( okButton ); + okButton->setDefault( true ); + + hbox->addStretch(); // Signal / slot connections - connect( closeButton, SIGNAL( clicked() ), + connect( okButton, SIGNAL( clicked() ), this, SLOT ( accept() ) ); connect( _datesTree, SIGNAL( itemSelectionChanged() ), diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/libyui-qt-pkg/src/YQPkgProductDialog.cc new/libyui-4.2.24/libyui-qt-pkg/src/YQPkgProductDialog.cc --- old/libyui-4.2.22/libyui-qt-pkg/src/YQPkgProductDialog.cc 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/libyui-qt-pkg/src/YQPkgProductDialog.cc 2021-12-21 15:21:31.000000000 +0100 @@ -61,6 +61,7 @@ // Enable dialog resizing even without window manager setSizeGripEnabled( true ); + setMinimumSize( 550, 450 ); // Layout for the dialog (can't simply insert a QVBox) @@ -75,7 +76,6 @@ QSplitter * splitter = new QSplitter( Qt::Vertical, this ); Q_CHECK_PTR( splitter ); layout->addWidget( splitter ); - layout->setMargin( MARGIN ); // Product list @@ -102,7 +102,7 @@ _detailsViews->addTab( _dependenciesView, _( "Dependencies" ) ); _dependenciesView->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) ); // hor/vert - connect( _productList, SIGNAL( currentItemChanged ( ZyppSel ) ), + connect( _productList, SIGNAL( currentItemChanged ( ZyppSel ) ), _dependenciesView, SLOT ( showDetailsIfVisible( ZyppSel ) ) ); @@ -113,21 +113,20 @@ hbox->setSpacing( SPACING ); hbox->setMargin ( MARGIN ); layout->addLayout( hbox ); - - //addHStretch( hbox ); + hbox->addStretch(); // "OK" button QPushButton * button = new QPushButton( _( "&OK" ), this ); - hbox->addWidget(button); Q_CHECK_PTR( button ); + hbox->addWidget(button); button->setDefault( true ); connect( button, SIGNAL( clicked() ), this, SLOT ( accept() ) ); - //addHStretch( hbox ); + hbox->addStretch(); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/libyui-rest-api/src/YHttpWidgetsActionHandler.cc new/libyui-4.2.24/libyui-rest-api/src/YHttpWidgetsActionHandler.cc --- old/libyui-4.2.22/libyui-rest-api/src/YHttpWidgetsActionHandler.cc 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/libyui-rest-api/src/YHttpWidgetsActionHandler.cc 2021-12-21 15:21:31.000000000 +0100 @@ -322,7 +322,7 @@ if( !cb->editable() ) { std::string error ("Combobox " + cb->label() + "' is not editable "); - return handle_error( body, error, MHD_HTTP_UNPROCESSABLE_ENTITY ); + return handle_error( body, error, YHTTP_UNPROCESSABLE ); } return action_handler<YComboBox>( widget, body, [&] (YComboBox *cb) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/libyui-rest-api/src/YHttpWidgetsActionHandler.h new/libyui-4.2.24/libyui-rest-api/src/YHttpWidgetsActionHandler.h --- old/libyui-4.2.22/libyui-rest-api/src/YHttpWidgetsActionHandler.h 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/libyui-rest-api/src/YHttpWidgetsActionHandler.h 2021-12-21 15:21:31.000000000 +0100 @@ -47,6 +47,14 @@ #include "YHttpHandler.h" +#ifdef MHD_HTTP_UNPROCESSABLE_CONTENT +# define YHTTP_UNPROCESSABLE MHD_HTTP_UNPROCESSABLE_CONTENT +#else +// Deprecated since libmicrohttpd 0.9.74 / 2021-12 (bsc#1193956) +# define YHTTP_UNPROCESSABLE MHD_HTTP_UNPROCESSABLE_ENTITY +#endif + + class YHttpWidgetsActionHandler : public YHttpHandler { @@ -95,7 +103,7 @@ { std::string error ("Cannot operate on disabled widget: "); error.append( typeid(*widget).name() ); - return handle_error( body, error, MHD_HTTP_UNPROCESSABLE_ENTITY ); + return handle_error( body, error, YHTTP_UNPROCESSABLE ); } if ( handler_func ) handler_func(w); @@ -105,7 +113,7 @@ { std::string error (""); error.append( typeid(*widget).name() ).append( " " ).append( e.what() ); - return handle_error( body, error, MHD_HTTP_UNPROCESSABLE_ENTITY ); + return handle_error( body, error, YHTTP_UNPROCESSABLE ); } } else { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui-bindings.spec new/libyui-4.2.24/package/libyui-bindings.spec --- old/libyui-4.2.22/package/libyui-bindings.spec 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui-bindings.spec 2021-12-21 15:21:31.000000000 +0100 @@ -20,7 +20,7 @@ Name: libyui-bindings # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 Summary: Bindings for libyui License: LGPL-2.1-only OR LGPL-3.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui-ncurses-pkg.spec new/libyui-4.2.24/package/libyui-ncurses-pkg.spec --- old/libyui-4.2.22/package/libyui-ncurses-pkg.spec 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui-ncurses-pkg.spec 2021-12-21 15:21:31.000000000 +0100 @@ -19,7 +19,7 @@ Name: libyui-ncurses-pkg # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui-ncurses-rest-api.spec new/libyui-4.2.24/package/libyui-ncurses-rest-api.spec --- old/libyui-4.2.22/package/libyui-ncurses-rest-api.spec 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui-ncurses-rest-api.spec 2021-12-21 15:21:31.000000000 +0100 @@ -19,7 +19,7 @@ Name: libyui-ncurses-rest-api # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui-ncurses.spec new/libyui-4.2.24/package/libyui-ncurses.spec --- old/libyui-4.2.22/package/libyui-ncurses.spec 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui-ncurses.spec 2021-12-21 15:21:31.000000000 +0100 @@ -19,7 +19,7 @@ Name: libyui-ncurses # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui-qt-graph.spec new/libyui-4.2.24/package/libyui-qt-graph.spec --- old/libyui-4.2.22/package/libyui-qt-graph.spec 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui-qt-graph.spec 2021-12-21 15:21:31.000000000 +0100 @@ -19,7 +19,7 @@ Name: libyui-qt-graph # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui-qt-pkg.spec new/libyui-4.2.24/package/libyui-qt-pkg.spec --- old/libyui-4.2.22/package/libyui-qt-pkg.spec 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui-qt-pkg.spec 2021-12-21 15:21:31.000000000 +0100 @@ -19,7 +19,7 @@ Name: libyui-qt-pkg # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui-qt-rest-api.spec new/libyui-4.2.24/package/libyui-qt-rest-api.spec --- old/libyui-4.2.22/package/libyui-qt-rest-api.spec 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui-qt-rest-api.spec 2021-12-21 15:21:31.000000000 +0100 @@ -19,7 +19,7 @@ Name: libyui-qt-rest-api # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui-qt.spec new/libyui-4.2.24/package/libyui-qt.spec --- old/libyui-4.2.22/package/libyui-qt.spec 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui-qt.spec 2021-12-21 15:21:31.000000000 +0100 @@ -19,7 +19,7 @@ Name: libyui-qt # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui-rest-api.spec new/libyui-4.2.24/package/libyui-rest-api.spec --- old/libyui-4.2.22/package/libyui-rest-api.spec 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui-rest-api.spec 2021-12-21 15:21:31.000000000 +0100 @@ -19,7 +19,7 @@ Name: libyui-rest-api # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui.changes new/libyui-4.2.24/package/libyui.changes --- old/libyui-4.2.22/package/libyui.changes 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui.changes 2021-12-21 15:21:31.000000000 +0100 @@ -1,4 +1,19 @@ ------------------------------------------------------------------- +Tue Dec 21 14:04:54 UTC 2021 - Stefan Hundhammer <[email protected]> + +- Fix deprecated warning (elevated to error by -Werror) + for libmicrohttpd's MHD_HTTP_UNPROCESSABLE_ENTITY in rest-api + (bsc#1193956) +- 4.2.24 + +------------------------------------------------------------------- +Tue Dec 21 09:52:27 UTC 2021 - Stefan Hundhammer <[email protected]> + +- Fixed YQPkg button redraw problem in dark SLE installation theme: + Use centered button in dialogs with QSizeGrip (bsc#1193808) +- 4.2.23 + +------------------------------------------------------------------- Thu Nov 11 08:42:58 UTC 2021 - Ladislav Slez??k <[email protected]> - Send a proper notify event from the YMultiSelectionBox widget diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-4.2.22/package/libyui.spec new/libyui-4.2.24/package/libyui.spec --- old/libyui-4.2.22/package/libyui.spec 2021-11-11 16:45:24.000000000 +0100 +++ new/libyui-4.2.24/package/libyui.spec 2021-12-21 15:21:31.000000000 +0100 @@ -19,7 +19,7 @@ Name: libyui # DO NOT manually bump the version here; instead, use rake version:bump -Version: 4.2.22 +Version: 4.2.24 Release: 0 %define so_version 15
