Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package sypper for openSUSE:Factory checked 
in at 2024-08-27 19:39:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/sypper (Old)
 and      /work/SRC/openSUSE:Factory/.sypper.new.2698 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "sypper"

Tue Aug 27 19:39:28 2024 rev:3 rq:1196249 version:0.08

Changes:
--------
--- /work/SRC/openSUSE:Factory/sypper/sypper.changes    2024-04-23 
18:56:46.731989094 +0200
+++ /work/SRC/openSUSE:Factory/.sypper.new.2698/sypper.changes  2024-08-27 
19:39:51.693803587 +0200
@@ -1,0 +2,12 @@
+Tue Aug 27 10:16:09 UTC 2024 - Andrii Nikitin <andrii.niki...@suse.com>
+
+- Update to version 0.08:
+  * Ignore recommended packages
+
+-------------------------------------------------------------------
+Tue Aug 27 10:03:51 UTC 2024 - Andrii Nikitin <andrii.niki...@suse.com>
+
+- Update to version 0.07:
+  * Fix handling exceptions during refresh
+
+-------------------------------------------------------------------

Old:
----
  sypper-0.06.obscpio

New:
----
  sypper-0.08.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ sypper.spec ++++++
--- /var/tmp/diff_new_pack.Xmv37b/_old  2024-08-27 19:39:52.249827124 +0200
+++ /var/tmp/diff_new_pack.Xmv37b/_new  2024-08-27 19:39:52.253827294 +0200
@@ -14,7 +14,7 @@
 # with this program; if not, see <http://www.gnu.org/licenses/>.
 
 Name:           sypper
-Version:        0.06
+Version:        0.08
 Release:        0
 License:        GPL-2.0-or-later
 Summary:        Simple perl utility emulating zypper download
@@ -26,6 +26,7 @@
 Requires:       perl-solv
 Requires:       perl-Mojolicious
 Requires:       perl-Config-IniFiles
+Requires:       perl-IO-Socket-SSL
 BuildRequires:  make
 BuildArch:      noarch
 

++++++ sypper-0.06.obscpio -> sypper-0.08.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sypper-0.06/lib/Sypp/Repo/Rpm.pm 
new/sypper-0.08/lib/Sypp/Repo/Rpm.pm
--- old/sypper-0.06/lib/Sypp/Repo/Rpm.pm        2024-04-22 12:32:18.000000000 
+0200
+++ new/sypper-0.08/lib/Sypp/Repo/Rpm.pm        2024-08-27 12:15:10.000000000 
+0200
@@ -138,7 +138,11 @@
     my $url = $baseurl . '/repodata/?mirrorlist';
     my $ua  = 
Mojo::UserAgent->new->max_redirects(5)->connect_timeout(2)->request_timeout(2);
     print STDERR "url " . $url . "\n" if $self->verbosity > 2;
-    my $res = $ua->get($url, {'User-Agent' => 'Sypp/refresh_mirrors'})->result;
+
+    my $res;
+    eval {
+        $res = $ua->get($url, {'User-Agent' => 
'Sypp/refresh_mirrors'})->result;
+    };
     print STDERR "res: " . ($res && $res->code ? $res->code : "undef") . "\n" 
if $self->verbosity > 2;
     return undef unless $res && $res->code && $res->code < 300 && $res->code 
>= 200;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sypper-0.06/lib/Sypp.pm new/sypper-0.08/lib/Sypp.pm
--- old/sypper-0.06/lib/Sypp.pm 2024-04-22 12:32:18.000000000 +0200
+++ new/sypper-0.08/lib/Sypp.pm 2024-08-27 12:15:10.000000000 +0200
@@ -424,7 +424,7 @@
     my $solver = $pool->Solver();
     $solver->set_flag($solv::Solver::SOLVER_FLAG_SPLITPROVIDES, 1);
     $solver->set_flag($solv::Solver::SOLVER_FLAG_DUP_ALLOW_VENDORCHANGE, 0);
-    # $solver->set_flag($solv::Solver::SOLVER_FLAG_IGNORE_RECOMMENDED, 1);
+    $solver->set_flag($solv::Solver::SOLVER_FLAG_IGNORE_RECOMMENDED, 1);
     while (1) {
         my @problems = $solver->solve(\@jobs);
         last unless @problems;

++++++ sypper.obsinfo ++++++
--- /var/tmp/diff_new_pack.Xmv37b/_old  2024-08-27 19:39:52.513838300 +0200
+++ /var/tmp/diff_new_pack.Xmv37b/_new  2024-08-27 19:39:52.517838469 +0200
@@ -1,5 +1,5 @@
 name: sypper
-version: 0.06
-mtime: 1713781938
-commit: f126e6fa7f9a17339e5a32576c7544dfb0a0f43c
+version: 0.08
+mtime: 1724753710
+commit: b4f87aecb23b282afb1aa81496af84ba3d794ab6
 

Reply via email to