Hello community,
here is the log from the commit of package rubygem-childprocess for
openSUSE:Factory checked in at 2016-03-18 21:39:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-childprocess (Old)
and /work/SRC/openSUSE:Factory/.rubygem-childprocess.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-childprocess"
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-childprocess/rubygem-childprocess.changes
2015-12-14 10:13:42.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-childprocess.new/rubygem-childprocess.changes
2016-03-18 21:39:04.000000000 +0100
@@ -1,0 +2,6 @@
+Thu Jan 21 05:31:22 UTC 2016 - [email protected]
+
+- updated to version 0.5.9
+ no changelog found
+
+-------------------------------------------------------------------
Old:
----
childprocess-0.5.8.gem
New:
----
childprocess-0.5.9.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-childprocess.spec ++++++
--- /var/tmp/diff_new_pack.gv6RCo/_old 2016-03-18 21:39:05.000000000 +0100
+++ /var/tmp/diff_new_pack.gv6RCo/_new 2016-03-18 21:39:05.000000000 +0100
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-childprocess
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -24,7 +24,7 @@
#
Name: rubygem-childprocess
-Version: 0.5.8
+Version: 0.5.9
Release: 0
%define mod_name childprocess
%define mod_full_name %{mod_name}-%{version}
++++++ childprocess-0.5.8.gem -> childprocess-0.5.9.gem ++++++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/childprocess/version.rb
new/lib/childprocess/version.rb
--- old/lib/childprocess/version.rb 1970-01-01 01:00:00.000000000 +0100
+++ new/lib/childprocess/version.rb 1970-01-01 01:00:00.000000000 +0100
@@ -1,3 +1,3 @@
module ChildProcess
- VERSION = "0.5.8"
+ VERSION = "0.5.9"
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 1970-01-01 01:00:00.000000000 +0100
+++ new/metadata 1970-01-01 01:00:00.000000000 +0100
@@ -1,14 +1,14 @@
--- !ruby/object:Gem::Specification
name: childprocess
version: !ruby/object:Gem::Version
- version: 0.5.8
+ version: 0.5.9
platform: ruby
authors:
- Jari Bakken
autorequire:
bindir: bin
cert_chain: []
-date: 2015-11-13 00:00:00.000000000 Z
+date: 2016-01-06 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: rspec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spec/unix_spec.rb new/spec/unix_spec.rb
--- old/spec/unix_spec.rb 1970-01-01 01:00:00.000000000 +0100
+++ new/spec/unix_spec.rb 1970-01-01 01:00:00.000000000 +0100
@@ -18,6 +18,8 @@
expect { process.stop }.not_to raise_error
allow(process).to receive(:alive?).and_return(false)
+
+ process.send(:send_signal, 'TERM')
end
it "handles ESRCH race condition where process dies between timeout and
KILL" do
@@ -32,6 +34,8 @@
expect { process.stop }.not_to raise_error
allow(process).to receive(:alive?).and_return(false)
+
+ process.send(:send_signal, 'TERM')
end
end