Hello community,

here is the log from the commit of package yast2-docker for openSUSE:Factory 
checked in at 2015-06-30 10:16:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-docker (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-docker.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-docker"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-docker/yast2-docker.changes        
2015-05-07 08:29:31.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-docker.new/yast2-docker.changes   
2015-06-30 10:16:11.000000000 +0200
@@ -1,0 +2,11 @@
+Thu Jun 25 09:05:11 UTC 2015 - [email protected]
+
+- Release 3.1.6
+  - ensure untagged images can be removed (bnc#935929)
+
+-------------------------------------------------------------------
+Tue Jun 23 14:21:42 UTC 2015 - [email protected]
+
+- Ensure yast2-storage is required at runtime
+
+-------------------------------------------------------------------

Old:
----
  yast2-docker-3.1.5.tar.bz2

New:
----
  yast2-docker-3.1.6.tar.bz2

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

Other differences:
------------------
++++++ yast2-docker.spec ++++++
--- /var/tmp/diff_new_pack.6wH61H/_old  2015-06-30 10:16:12.000000000 +0200
+++ /var/tmp/diff_new_pack.6wH61H/_new  2015-06-30 10:16:12.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-docker
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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:           yast2-docker
-Version:        3.1.5
+Version:        3.1.6
 Release:        0
 BuildArch:      noarch
 
@@ -34,6 +34,7 @@
 Requires:       docker >= 1.3
 Requires:       yast2 >= 3.1.0
 Requires:       yast2-ruby-bindings >= 1.2.0
+Requires:       yast2-storage
 Requires:       rubygem(%{rb_default_ruby_abi}:docker-api)
 
 BuildRequires:  update-desktop-files

++++++ yast2-docker-3.1.5.tar.bz2 -> yast2-docker-3.1.6.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-docker-3.1.5/package/yast2-docker.changes 
new/yast2-docker-3.1.6/package/yast2-docker.changes
--- old/yast2-docker-3.1.5/package/yast2-docker.changes 2015-05-06 
16:37:07.000000000 +0200
+++ new/yast2-docker-3.1.6/package/yast2-docker.changes 2015-06-25 
11:37:30.000000000 +0200
@@ -1,4 +1,15 @@
 -------------------------------------------------------------------
+Thu Jun 25 09:05:11 UTC 2015 - [email protected]
+
+- Release 3.1.6
+  - ensure untagged images can be removed (bnc#935929)
+
+-------------------------------------------------------------------
+Tue Jun 23 14:21:42 UTC 2015 - [email protected]
+
+- Ensure yast2-storage is required at runtime
+
+-------------------------------------------------------------------
 Wed May 06 16:30:11 CEST 2015 - [email protected]
 
 - Release 3.1.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-docker-3.1.5/package/yast2-docker.spec 
new/yast2-docker-3.1.6/package/yast2-docker.spec
--- old/yast2-docker-3.1.5/package/yast2-docker.spec    2015-05-06 
16:37:07.000000000 +0200
+++ new/yast2-docker-3.1.6/package/yast2-docker.spec    2015-06-25 
11:37:30.000000000 +0200
@@ -24,7 +24,7 @@
 ######################################################################
 
 Name:           yast2-docker
-Version:        3.1.5
+Version:        3.1.6
 Release:        0
 BuildArch:      noarch
 
@@ -33,6 +33,7 @@
 
 Requires:       yast2 >= 3.1.0
 Requires:       yast2-ruby-bindings >= 1.2.0
+Requires:       yast2-storage
 Requires:       rubygem(%{rb_default_ruby_abi}:docker-api)
 Requires:       docker >= 1.3
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-docker-3.1.5/src/lib/ydocker/main_dialog.rb 
new/yast2-docker-3.1.6/src/lib/ydocker/main_dialog.rb
--- old/yast2-docker-3.1.5/src/lib/ydocker/main_dialog.rb       2015-05-06 
16:37:07.000000000 +0200
+++ new/yast2-docker-3.1.6/src/lib/ydocker/main_dialog.rb       2015-06-25 
11:37:30.000000000 +0200
@@ -312,7 +312,12 @@
       image, label = selected_image
       return unless (Yast::Popup.YesNo(_("Do you really want to delete image 
\"%s\"?") % label))
 
-      image.connection.delete("/images/#{label}", {})
+      if label == '<none>:<none>'
+        image.remove
+      else
+        image.connection.delete("/images/#{label}", {})
+      end
+
       redraw_images
     end
 


Reply via email to