Hello community,

here is the log from the commit of package yast2-iscsi-client for 
openSUSE:Factory checked in at 2015-02-08 13:02:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-iscsi-client (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-iscsi-client.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-iscsi-client"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-iscsi-client/yast2-iscsi-client.changes    
2014-12-05 21:03:06.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-iscsi-client.new/yast2-iscsi-client.changes   
    2015-02-08 13:02:39.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 13:02:45 UTC 2015 - [email protected]
+
+- The unit tests are now compatible with RSpec 3 (bnc#916364)
+- 3.1.21
+
+-------------------------------------------------------------------

Old:
----
  yast2-iscsi-client-3.1.20.tar.bz2

New:
----
  yast2-iscsi-client-3.1.21.tar.bz2

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

Other differences:
------------------
++++++ yast2-iscsi-client.spec ++++++
--- /var/tmp/diff_new_pack.aB25Si/_old  2015-02-08 13:02:40.000000000 +0100
+++ /var/tmp/diff_new_pack.aB25Si/_new  2015-02-08 13:02:40.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-iscsi-client
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-iscsi-client
-Version:        3.1.20
+Version:        3.1.21
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-iscsi-client-3.1.20.tar.bz2 -> yast2-iscsi-client-3.1.21.tar.bz2 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-iscsi-client-3.1.20/package/yast2-iscsi-client.changes 
new/yast2-iscsi-client-3.1.21/package/yast2-iscsi-client.changes
--- old/yast2-iscsi-client-3.1.20/package/yast2-iscsi-client.changes    
2014-12-04 11:19:08.000000000 +0100
+++ new/yast2-iscsi-client-3.1.21/package/yast2-iscsi-client.changes    
2015-02-06 14:43:26.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Fri Feb  6 13:02:45 UTC 2015 - [email protected]
+
+- The unit tests are now compatible with RSpec 3 (bnc#916364)
+- 3.1.21
+
+-------------------------------------------------------------------
 Thu Dec  4 09:50:18 UTC 2014 - [email protected]
 
 - remove X-KDE-Library from desktop file (bnc#899104)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-iscsi-client-3.1.20/package/yast2-iscsi-client.spec 
new/yast2-iscsi-client-3.1.21/package/yast2-iscsi-client.spec
--- old/yast2-iscsi-client-3.1.20/package/yast2-iscsi-client.spec       
2014-12-04 11:19:08.000000000 +0100
+++ new/yast2-iscsi-client-3.1.21/package/yast2-iscsi-client.spec       
2015-02-06 14:43:26.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-iscsi-client
-Version:        3.1.20
+Version:        3.1.21
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-iscsi-client-3.1.20/test/ipEqual_spec.rb 
new/yast2-iscsi-client-3.1.21/test/ipEqual_spec.rb
--- old/yast2-iscsi-client-3.1.20/test/ipEqual_spec.rb  2014-12-04 
11:19:08.000000000 +0100
+++ new/yast2-iscsi-client-3.1.21/test/ipEqual_spec.rb  2015-02-06 
14:43:26.000000000 +0100
@@ -11,92 +11,92 @@
   describe "#ipEqual" do
     context "with IPv4 arguments not matching" do
       it "returns false" do
-        expect(@iscsilib.ipEqual?("213:23:", "...")).to be_false
+        expect(@iscsilib.ipEqual?("213:23:", "...")).to eq(false)
       end
     end
     context "with equal IPv4 addresses (without port)" do
       it "returns true" do
-        expect(@iscsilib.ipEqual?("10.10.10.1", "10.10.10.1")).to be_true
+        expect(@iscsilib.ipEqual?("10.10.10.1", "10.10.10.1")).to eq(true)
       end
     end
     context "with equal IPv4 addresses and equal port" do
       it "returns true" do
-        expect(@iscsilib.ipEqual?("10.10.10.1:345", "10.10.10.1:345")).to 
be_true
+        expect(@iscsilib.ipEqual?("10.10.10.1:345", "10.10.10.1:345")).to 
eq(true)
       end
     end
     context "with equal IPv4 addresses and different ports" do
       it "returns false" do
-        expect(@iscsilib.ipEqual?("10.10.10.1:345", "10.10.10.1:500")).to 
be_false
+        expect(@iscsilib.ipEqual?("10.10.10.1:345", "10.10.10.1:500")).to 
eq(false)
       end
     end
     context "with invalid IPv6 arguments" do
       it "returns false" do
-        expect(@iscsilib.ipEqual?("[213:23:]", "...")).to be_false
+        expect(@iscsilib.ipEqual?("[213:23:]", "...")).to eq(false)
       end
     end
     context "with invalid IPv6 arguments not matching" do
       it "returns false" do
-        expect(@iscsilib.ipEqual?("[???]", "[***]")).to be_false
+        expect(@iscsilib.ipEqual?("[???]", "[***]")).to eq(false)
       end
     end
     context "with 2 empty arguments" do
       it "returns false" do
-        expect(@iscsilib.ipEqual?("", "")).to be_false
+        expect(@iscsilib.ipEqual?("", "")).to eq(false)
       end
     end
     context "with empty argument session IP" do
       it "returns false" do
-        expect(@iscsilib.ipEqual?("", "10.10.10.1:500")).to be_false
+        expect(@iscsilib.ipEqual?("", "10.10.10.1:500")).to eq(false)
       end
     end
     context "with empty argument current IP" do
       it "returns false" do
-        expect(@iscsilib.ipEqual?("[2620:0113:1c0:8080:4ec:544a:000d:3d62]", 
"")).to be_false
+        expect(@iscsilib.ipEqual?("[2620:0113:1c0:8080:4ec:544a:000d:3d62]", 
"")).to eq(false)
       end
     end
     context "with nil arguments" do
       it "returns false" do
-        expect(@iscsilib.ipEqual?(nil, nil)).to be_false
+        expect(@iscsilib.ipEqual?(nil, nil)).to eq(false)
       end
     end
     context "with one nil argument" do
       it "returns false" do
-        expect(@iscsilib.ipEqual?(nil, "10.10.10.1:500")).to be_false
+        expect(@iscsilib.ipEqual?(nil, "10.10.10.1:500")).to eq(false)
       end
     end
     context "with equal (but different string) and valid IPv6 arguments 
(without port)" do
       it "returns true" do
         expect(@iscsilib.ipEqual?("[2620:0113:1c0:8080:4ec:544a:000d:3d62]",
-                                  "[2620:113:1c0:8080:4ec:544a:d:3d62]")).to 
be_true
+                                  "[2620:113:1c0:8080:4ec:544a:d:3d62]")).to 
eq(true)
       end
     end
     context "with equal (same string) and valid IPv6 arguments (without port)" 
do
       it "returns true" do
         expect(@iscsilib.ipEqual?("[2620:113:1c0:8080:4ec:544a:000d:3d62]",
-                                  "[2620:113:1c0:8080:4ec:544a:d:3d62]")).to 
be_true
+                                  "[2620:113:1c0:8080:4ec:544a:d:3d62]")).to 
eq(true)
       end
     end
     context "with equal (but different string) and valid IPv6 arguments and 
equal ports" do
       it "returns true" do
         expect(@iscsilib.ipEqual?("[0020:0113:80c0:8080:0:544a:3b9d:3d62]:456",
-                                  
"[20:113:80c0:8080::544a:3b9d:3d62]:456")).to be_true
+                                  
"[20:113:80c0:8080::544a:3b9d:3d62]:456")).to eq(true)
       end
     end
     context "with equal (different string, one abbreviated) valid IPv6 
arguments" do
       it "returns true" do
-        expect(@iscsilib.ipEqual?("[::1]", "[0:0:0:0:0:0:0:1]")).to be_true
+        expect(@iscsilib.ipEqual?("[::1]", "[0:0:0:0:0:0:0:1]")).to eq(true)
       end
     end
     context "with equal (but different string) IPv6 arguments and different 
ports" do
       it "returns false" do
         
expect(@iscsilib.ipEqual?("[2620:0113:80c0:8080:54ec:004a:3b9d:3d62]:456",
-                                  
"[2620:113:80c0:8080:54ec:4a:3b9d:3d62]:4")).to be_false
+                                  
"[2620:113:80c0:8080:54ec:4a:3b9d:3d62]:4")).to eq(false)
       end
     end
     context "with equal (same string) IPv6 arguments and different ports" do
       it "returns false" do
         
expect(@iscsilib.ipEqual?("[2620:113:80c0:8080:54ec:544a:3b9d:3d62]:456",
-                                  
"[2620:113:80c0:8080:54ec:544a:3b9d:3d62]:4")).to be_false
+                                  
"[2620:113:80c0:8080:54ec:544a:3b9d:3d62]:4")).to eq(false)
       end
     end
   end

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to