Hello community,

here is the log from the commit of package machinery for openSUSE:Factory 
checked in at 2015-11-22 11:00:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/machinery (Old)
 and      /work/SRC/openSUSE:Factory/.machinery.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "machinery"

Changes:
--------
--- /work/SRC/openSUSE:Factory/machinery/machinery.changes      2015-11-11 
10:30:12.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.machinery.new/machinery.changes 2015-11-22 
11:02:28.000000000 +0100
@@ -1,0 +2,7 @@
+Mon Nov 09 17:55:15 CET 2015 - thard...@suse.de
+
+- update to version 1.16.1
+  * Fix type recognition in case of empty files for config- and 
changed-managed-files
+    inspectors (gh#SUSE/machinery#1612)
+
+-------------------------------------------------------------------

Old:
----
  machinery-tool-1.16.0.gem

New:
----
  machinery-tool-1.16.1.gem

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

Other differences:
------------------
++++++ machinery.spec ++++++
--- /var/tmp/diff_new_pack.3kZTfG/_old  2015-11-22 11:02:29.000000000 +0100
+++ /var/tmp/diff_new_pack.3kZTfG/_new  2015-11-22 11:02:29.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           machinery
-Version:        1.16.0
+Version:        1.16.1
 Release:        0
 %define binary_name machinery
 %define mod_name machinery-tool

++++++ machinery-tool-1.16.0.gem -> machinery-tool-1.16.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.git_revision new/.git_revision
--- old/.git_revision   2015-11-06 14:22:59.000000000 +0100
+++ new/.git_revision   2015-11-09 17:57:30.000000000 +0100
@@ -1 +1 @@
-f5f2a71bd21d86dcbc1b90e30b8af0f466b335bd
\ No newline at end of file
+e2a5941fcf2ffbbcbd765e23e860fc417592fdd1
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NEWS new/NEWS
--- old/NEWS    2015-11-06 14:22:59.000000000 +0100
+++ new/NEWS    2015-11-09 17:57:30.000000000 +0100
@@ -1,6 +1,11 @@
 # Machinery Release Notes
 
 
+## Version 1.16.1 - Mon Nov 09 17:55:15 CET 2015 - thard...@suse.de
+
+* Fix type recognition in case of empty files for config- and 
changed-managed-files
+  inspectors (gh#SUSE/machinery#1612)
+
 ## Version 1.16.0 - Fri Nov 06 14:20:47 CET 2015 - thard...@suse.de
 
 * The error message "There is already a server with the same port running" has
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rpm_database.rb new/lib/rpm_database.rb
--- old/lib/rpm_database.rb     2015-11-06 14:22:59.000000000 +0100
+++ new/lib/rpm_database.rb     2015-11-09 17:57:30.000000000 +0100
@@ -122,7 +122,8 @@
   end
 
   def parse_stat_line(line)
-    mode, user, group, uid, gid, type, *path = line.split(":")
+    mode, user, group, uid, gid, type, *path_line = line.split(":")
+    path = path_line.join(":").chomp
 
     user = uid if user == "UNKNOWN"
     group = gid if group == "UNKNOWN"
@@ -132,11 +133,15 @@
       "dir"
     when "symbolic link"
       "link"
-    when "regular file"
+    when /file$/
       "file"
+    else
+      raise(
+        "The inspection failed because of the unknown type `#{type}` of file 
`#{path}`."
+      )
     end
 
-    [path.join(":").chomp,
+    [path,
       {
         mode:  mode,
         user:  user,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/version.rb new/lib/version.rb
--- old/lib/version.rb  2015-11-06 14:22:59.000000000 +0100
+++ new/lib/version.rb  2015-11-09 17:57:30.000000000 +0100
@@ -17,6 +17,6 @@
 
 module Machinery
 
-  VERSION = "1.16.0"
+  VERSION = "1.16.1"
 
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/machinery-helper/version.go 
new/machinery-helper/version.go
--- old/machinery-helper/version.go     2015-11-06 14:22:59.000000000 +0100
+++ new/machinery-helper/version.go     2015-11-09 17:57:30.000000000 +0100
@@ -2,4 +2,4 @@
 
 package main
 
-const VERSION = "f5f2a71bd21d86dcbc1b90e30b8af0f466b335bd"
+const VERSION = "e2a5941fcf2ffbbcbd765e23e860fc417592fdd1"
Files old/man/generated/machinery.1.gz and new/man/generated/machinery.1.gz 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2015-11-06 14:22:59.000000000 +0100
+++ new/metadata        2015-11-09 17:57:30.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: machinery-tool
 version: !ruby/object:Gem::Version
-  version: 1.16.0
+  version: 1.16.1
 platform: ruby
 authors:
 - SUSE
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-11-06 00:00:00.000000000 Z
+date: 2015-11-09 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: cheetah


Reply via email to