Hello community,

here is the log from the commit of package mkdud for openSUSE:Factory checked 
in at 2018-12-12 17:29:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mkdud (Old)
 and      /work/SRC/openSUSE:Factory/.mkdud.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "mkdud"

Wed Dec 12 17:29:36 2018 rev:25 rq:657244 version:1.40

Changes:
--------
--- /work/SRC/openSUSE:Factory/mkdud/mkdud.changes      2018-11-18 
23:30:55.317573011 +0100
+++ /work/SRC/openSUSE:Factory/.mkdud.new.28833/mkdud.changes   2018-12-12 
17:29:37.390790385 +0100
@@ -1,0 +2,16 @@
+Tue Dec 11 15:16:47 UTC 2018 - snw...@suse.de
+
+- merge gh#openSUSE/mkdud#23
+- move spec file into obs directory
+- 1.40
+
+--------------------------------------------------------------------
+Tue Dec 11 14:38:08 UTC 2018 - snw...@suse.de
+
+- merge gh#openSUSE/mkdud#22
+- fix reading oscrc (gh#openSUSE/mkdud#19)
+- update git2log script
+- add package spec file
+- 1.39
+
+--------------------------------------------------------------------

Old:
----
  mkdud-1.38.tar.xz

New:
----
  mkdud-1.40.tar.xz

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

Other differences:
------------------
++++++ mkdud.spec ++++++
--- /var/tmp/diff_new_pack.uRDAtw/_old  2018-12-12 17:29:38.434789064 +0100
+++ /var/tmp/diff_new_pack.uRDAtw/_new  2018-12-12 17:29:38.438789059 +0100
@@ -1,8 +1,7 @@
 #
 # spec file for package mkdud
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
-# Copyright (c) 2011 Steffen Winterfeldt
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,10 +22,10 @@
 Summary:        Create driver update from rpms
 License:        GPL-3.0+
 Group:          Hardware/Other
-Version:        1.38
+Version:        1.40
 Release:        0
 Source:         %{name}-%{version}.tar.xz
-Url:            https://github.com/wfeldt/mkdud
+Url:            https://github.com/openSUSE/mkdud
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildArch:      noarch
 

++++++ mkdud-1.38.tar.xz -> mkdud-1.40.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.38/VERSION new/mkdud-1.40/VERSION
--- old/mkdud-1.38/VERSION      2018-11-15 14:35:09.000000000 +0100
+++ new/mkdud-1.40/VERSION      2018-12-11 16:16:47.000000000 +0100
@@ -1 +1 @@
-1.38
+1.40
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.38/changelog new/mkdud-1.40/changelog
--- old/mkdud-1.38/changelog    2018-11-15 14:35:09.000000000 +0100
+++ new/mkdud-1.40/changelog    2018-12-11 16:16:47.000000000 +0100
@@ -1,3 +1,13 @@
+2018-12-11:    1.40
+       - merge gh#openSUSE/mkdud#23
+       - move spec file into obs directory
+
+2018-12-11:    1.39
+       - merge gh#openSUSE/mkdud#22
+       - fix reading oscrc (gh#openSUSE/mkdud#19)
+       - update git2log script
+       - add package spec file
+
 2018-11-15:    1.38
        - merge gh#openSUSE/mkdud#21
        - add HOWTO describing some typical uses
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.38/git2log new/mkdud-1.40/git2log
--- old/mkdud-1.38/git2log      2018-11-15 14:35:09.000000000 +0100
+++ new/mkdud-1.40/git2log      2018-12-11 16:16:47.000000000 +0100
@@ -166,7 +166,7 @@
   --version           Write version number to FILE.
   --branch            Write current branch to FILE.
   --start START_TAG   Start with tag START_TAG.
-  --max N             Write at most MAX long entries.
+  --max N             Write at most N log entries.
   --update            Write changelog or version only if FILE is outdated.
   --format FORMAT     Write log using FORMAT. Supported FORMATs are 'internal' 
(default) and 'obs'.
   --width WIDTH       Reformat log entries to be max WIDTH chars wide.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.38/mkdud new/mkdud-1.40/mkdud
--- old/mkdud-1.38/mkdud        2018-11-15 14:35:09.000000000 +0100
+++ new/mkdud-1.40/mkdud        2018-12-11 16:16:47.000000000 +0100
@@ -243,7 +243,8 @@
 $opt_sign_key ||= $config{'sign-key'};
 
 if($opt_obs_keys) {
-  if(open(my $f, "$ENV{HOME}/.oscrc") || open(my $f, 
"$ENV{HOME}/.config/osc/oscrc")) {
+  my $f;
+  if(open($f, "$ENV{HOME}/.oscrc") || open($f, 
"$ENV{HOME}/.config/osc/oscrc")) {
     while(<$f>) {
       if(m#^\[(https?://([^/\]]+))#) {
         $obs->{server}{$2} = $1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdud-1.38/obs/mkdud.spec 
new/mkdud-1.40/obs/mkdud.spec
--- old/mkdud-1.38/obs/mkdud.spec       1970-01-01 01:00:00.000000000 +0100
+++ new/mkdud-1.40/obs/mkdud.spec       2018-12-11 16:16:47.000000000 +0100
@@ -0,0 +1,55 @@
+#
+# spec file for package mkdud
+#
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+#
+# All modifications and additions to the file contributed by third parties
+# remain the property of their copyright owners, unless otherwise agreed
+# upon. The license for this file, and modifications and additions to the
+# file, is the same license as for the pristine package itself (unless the
+# license for the pristine package is not an Open Source License, in which
+# case the license is the MIT License). An "Open Source License" is a
+# license that conforms to the Open Source Definition (Version 1.9)
+# published by the Open Source Initiative.
+
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
+
+Name:           mkdud
+BuildRequires:  xz
+Requires:       gpg2
+Summary:        Create driver update from rpms
+License:        GPL-3.0+
+Group:          Hardware/Other
+Version:        0.0
+Release:        0
+Source:         %{name}-%{version}.tar.xz
+Url:            https://github.com/openSUSE/mkdud
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+BuildArch:      noarch
+
+%description
+Create a driver update from rpms.
+
+Authors:
+--------
+    Steffen Winterfeldt
+
+%prep
+%setup
+
+%build
+
+%install
+  make install DESTDIR=%{buildroot}
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root)
+/usr/bin/mkdud
+%doc README.md COPYING
+
+%changelog


Reply via email to