Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package mkdud for openSUSE:Factory checked 
in at 2022-05-17 17:24:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mkdud (Old)
 and      /work/SRC/openSUSE:Factory/.mkdud.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "mkdud"

Tue May 17 17:24:48 2022 rev:36 rq:977755 version:1.54

Changes:
--------
--- /work/SRC/openSUSE:Factory/mkdud/mkdud.changes      2021-11-10 
21:47:55.567850097 +0100
+++ /work/SRC/openSUSE:Factory/.mkdud.new.1538/mkdud.changes    2022-05-17 
17:25:12.419213043 +0200
@@ -1,0 +2,8 @@
+Tue May 17 12:05:19 UTC 2022 - [email protected]
+
+- merge gh#openSUSE/mkdud#39
+- do not preprocess dist names when the --no-fix-dist option is
+  used (bsc#1199514)
+- 1.54
+
+--------------------------------------------------------------------

Old:
----
  mkdud-1.53.tar.xz

New:
----
  mkdud-1.54.tar.xz

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

Other differences:
------------------
++++++ mkdud.spec ++++++
--- /var/tmp/diff_new_pack.Hak9s7/_old  2022-05-17 17:25:12.831213416 +0200
+++ /var/tmp/diff_new_pack.Hak9s7/_new  2022-05-17 17:25:12.835213420 +0200
@@ -30,7 +30,7 @@
 Summary:        Create driver update from rpms
 License:        GPL-3.0-or-later
 Group:          Hardware/Other
-Version:        1.53
+Version:        1.54
 Release:        0
 Source:         %{name}-%{version}.tar.xz
 Url:            https://github.com/openSUSE/mkdud

++++++ mkdud-1.53.tar.xz -> mkdud-1.54.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.53/VERSION new/mkdud-1.54/VERSION
--- old/mkdud-1.53/VERSION      2021-11-10 14:34:34.000000000 +0100
+++ new/mkdud-1.54/VERSION      2022-05-17 14:05:19.000000000 +0200
@@ -1 +1 @@
-1.53
+1.54
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.53/changelog new/mkdud-1.54/changelog
--- old/mkdud-1.53/changelog    2021-11-10 14:34:34.000000000 +0100
+++ new/mkdud-1.54/changelog    2022-05-17 14:05:19.000000000 +0200
@@ -1,3 +1,8 @@
+2022-05-17:    1.54
+       - merge gh#openSUSE/mkdud#39
+       - do not preprocess dist names when the --no-fix-dist option is
+         used (bsc#1199514)
+
 2021-11-10:    1.53
        - merge gh#openSUSE/mkdud#37
        - adapt to support zstd compressed kernel modules
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.53/mkdud new/mkdud-1.54/mkdud
--- old/mkdud-1.53/mkdud        2021-11-10 14:34:34.000000000 +0100
+++ new/mkdud-1.54/mkdud        2022-05-17 14:05:19.000000000 +0200
@@ -297,27 +297,30 @@
     die "Error: distribution arg is required; use --dist.\n" if !@opt_dist;
     my %d;
     @dists = @opt_dist;
-    map { tr/-//d } @dists;
-    # kubic is part of tumbleweed
-    map { s/^(tumbleweed|tw|kubic).*/tw/g } @dists;
-    # map 'micro' to 'suse-microos'
-    map { s/^micro(\d)/suse-microos$1/ } @dists;
-    # map 'casp' to the new 'caasp'
-    map { s/^casp(\d)/caasp$1/ } @dists;
-    # CaaSP should be aligned with the respective SLES
-    # caasp1.0 = sle12 (-sp2)
-    # cassp2.0 = sle12 (-sp3)
-    # caasp3.0 = sle12 (-sp3)
-    # caasp4.0 = sle15
-    push @dists, "sles12" if grep { /^caasp[123]\./ } @dists;
-    push @dists, "sles15" if grep { /^caasp4\./ } @dists;
-    push @dists, "13.2" if grep { $_ eq "leap42.1" } @dists;
-    @d{map { /^sle([sd]?)(\d+)/i ? $1 eq "" ? ("sles$2", "sled$2") : 
"sle\L$1$2" : "\L$_" } @dists} = ();
-    @dists = sort keys %d;
-    @d{map { /^(\d+)\.(\d+)$/ && $1 >= 15 ? ("leap$1.$2", "sles$1", "sled$1") 
: $_ } @dists} = ();
-    @d{map { /^(\d+)$/ && $1 >= 15 ? ("sles$1", "sled$1") : $_ } @dists} = ();
-    @dists = sort keys %d;
-    @dists = grep { !(/^(\d+)(\.(\d+))?$/ && $1 >= 15) } @dists;
+
+    if($opt_fix_dist) {
+      map { tr/-//d } @dists;
+      # kubic is part of tumbleweed
+      map { s/^(tumbleweed|tw|kubic).*/tw/g } @dists;
+      # map 'micro' to 'suse-microos'
+      map { s/^micro(\d)/suse-microos$1/ } @dists;
+      # map 'casp' to the new 'caasp'
+      map { s/^casp(\d)/caasp$1/ } @dists;
+      # CaaSP should be aligned with the respective SLES
+      # caasp1.0 = sle12 (-sp2)
+      # cassp2.0 = sle12 (-sp3)
+      # caasp3.0 = sle12 (-sp3)
+      # caasp4.0 = sle15
+      push @dists, "sles12" if grep { /^caasp[123]\./ } @dists;
+      push @dists, "sles15" if grep { /^caasp4\./ } @dists;
+      push @dists, "13.2" if grep { $_ eq "leap42.1" } @dists;
+      @d{map { /^sle([sd]?)(\d+)/i ? $1 eq "" ? ("sles$2", "sled$2") : 
"sle\L$1$2" : "\L$_" } @dists} = ();
+      @dists = sort keys %d;
+      @d{map { /^(\d+)\.(\d+)$/ && $1 >= 15 ? ("leap$1.$2", "sles$1", 
"sled$1") : $_ } @dists} = ();
+      @d{map { /^(\d+)$/ && $1 >= 15 ? ("sles$1", "sled$1") : $_ } @dists} = 
();
+      @dists = sort keys %d;
+      @dists = grep { !(/^(\d+)(\.(\d+))?$/ && $1 >= 15) } @dists;
+    }
 
     for (@dists) {
       if(!/^((leap|kubic|casp|caasp|suse-microos)?\d+\.\d+|tw|sle[sd]\d+)$/) {

Reply via email to