Hello community, here is the log from the commit of package mkdud for openSUSE:Factory checked in at 2016-11-29 12:49:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mkdud (Old) and /work/SRC/openSUSE:Factory/.mkdud.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "mkdud" Changes: -------- --- /work/SRC/openSUSE:Factory/mkdud/mkdud.changes 2016-02-16 09:18:40.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.mkdud.new/mkdud.changes 2016-11-29 12:49:19.000000000 +0100 @@ -1,0 +2,8 @@ +Mon Nov 28 12:46:21 UTC 2016 - snwint@suse.com + +- even more more verbose message +- even more verbose error message +- allow to skip distribution check using --force (bsc#1012241) +- 1.26 + +------------------------------------------------------------------- Old: ---- mkdud-1.25.tar.xz New: ---- mkdud-1.26.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mkdud.spec ++++++ --- /var/tmp/diff_new_pack.1QmhSm/_old 2016-11-29 12:49:20.000000000 +0100 +++ /var/tmp/diff_new_pack.1QmhSm/_new 2016-11-29 12:49:20.000000000 +0100 @@ -23,7 +23,7 @@ Summary: Create driver update from rpms License: GPL-3.0+ Group: Hardware/Other -Version: 1.25 +Version: 1.26 Release: 0 Source: %{name}-%{version}.tar.xz Url: https://github.com/wfeldt/mkdud ++++++ mkdud-1.25.tar.xz -> mkdud-1.26.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdud-1.25/VERSION new/mkdud-1.26/VERSION --- old/mkdud-1.25/VERSION 2016-02-12 10:38:22.000000000 +0100 +++ new/mkdud-1.26/VERSION 2016-11-28 13:41:58.000000000 +0100 @@ -1 +1 @@ -1.25 +1.26 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdud-1.25/changelog new/mkdud-1.26/changelog --- old/mkdud-1.25/changelog 2016-02-12 10:38:22.000000000 +0100 +++ new/mkdud-1.26/changelog 2016-11-28 13:41:58.000000000 +0100 @@ -1,3 +1,8 @@ +2016-11-28: 1.26 + - even more more verbose message + - even more verbose error message + - allow to skip distribution check using --force (bsc #1012241) + 2016-02-11: 1.25 - add support for leap and tumbleweed diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mkdud-1.25/mkdud new/mkdud-1.26/mkdud --- old/mkdud-1.25/mkdud 2016-02-12 10:38:22.000000000 +0100 +++ new/mkdud-1.26/mkdud 2016-11-28 13:41:58.000000000 +0100 @@ -282,7 +282,14 @@ @dists = sort keys %d; for (@dists) { - die "unsupported dist \"$_\"\n" if !/^((leap)?\d+\.\d+|tw|sle[sd]\d+)$/; + if(!/^((leap)?\d+\.\d+|tw|sle[sd]\d+)$/) { + if($opt_force) { + print STDERR "Warning: using unsupported dist \"$_\"\n"; + } + else { + die "Error: unsupported dist \"$_\" (e.g. sle12, tw; use --help for supported dists, --force to override)\n"; + } + } } } @@ -406,9 +413,11 @@ --no-docs Don't include package documentation in unpacked instsys tree (to save space). This is the default setting. --keep-docs Include package documentation in unpacked instsys tree. - --force Allow driver update to contain files that might break the + --force Override some internal consistency checks. This allows you to + build driver updates containing files that might break the installation. mkdud will normally remove those files and - print a warning. Use this option to override. + print a warning. This also allows you to specify distributions + with --dist that mkdud does not know about. --format FORMAT Specify archive format for DUD. FORMAT=(cpio|tar|iso)[.(gz|xz)]. Default FORMAT is cpio.gz (gzip compressed cpio archive). Note: don't change the default. See README.
participants (1)
-
root@hilbert.suse.de