Hello community,

here is the log from the commit of package clusterssh for openSUSE:Factory 
checked in at 2020-06-22 17:47:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/clusterssh (Old)
 and      /work/SRC/openSUSE:Factory/.clusterssh.new.2956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "clusterssh"

Mon Jun 22 17:47:08 2020 rev:14 rq:816401 version:4.16

Changes:
--------
--- /work/SRC/openSUSE:Factory/clusterssh/clusterssh.changes    2020-05-28 
09:14:27.236686461 +0200
+++ /work/SRC/openSUSE:Factory/.clusterssh.new.2956/clusterssh.changes  
2020-06-22 17:47:10.762086691 +0200
@@ -1,0 +2,9 @@
+Mon Jun 22 09:02:26 UTC 2020 - Michael Ströder <mich...@stroeder.com>
+
+- Update to new upstream release v4.16
+  * Further fix for 'resolve_names' error when adding hosts via the UI
+  * Fix missing space separator for ssh_args (thanks to Petr Vorel)
+- removed obsolete backport patch
+  0001-helper-Fix-missing-space-separator-for-ssh_args.patch
+
+-------------------------------------------------------------------

Old:
----
  0001-helper-Fix-missing-space-separator-for-ssh_args.patch
  v4.15.tar.gz

New:
----
  v4.16.tar.gz

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

Other differences:
------------------
++++++ clusterssh.spec ++++++
--- /var/tmp/diff_new_pack.tCXmZi/_old  2020-06-22 17:47:11.938090379 +0200
+++ /var/tmp/diff_new_pack.tCXmZi/_new  2020-06-22 17:47:11.938090379 +0200
@@ -17,8 +17,8 @@
 
 
 Name:           clusterssh
-%define dullver 4.15
-Version:        4.15
+%define dullver 4.16
+Version:        4.16
 Release:        0
 Summary:        Multiplex SSH sessions onto many hosts using multiple terminals
 License:        GPL-1.0-or-later OR Artistic-1.0
@@ -27,7 +27,6 @@
 Source:         https://github.com/duncs/clusterssh/archive/v%dullver.tar.gz
 Source2:        %name-rpmlintrc
 Patch1:         perl_shebang.patch
-Patch2:         0001-helper-Fix-missing-space-separator-for-ssh_args.patch
 BuildArch:      noarch
 BuildRequires:  fdupes
 BuildRequires:  perl

++++++ v4.15.tar.gz -> v4.16.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/clusterssh-4.15/Changes new/clusterssh-4.16/Changes
--- old/clusterssh-4.15/Changes 2020-05-18 09:22:32.000000000 +0200
+++ new/clusterssh-4.16/Changes 2020-06-20 11:33:19.000000000 +0200
@@ -1,5 +1,9 @@
 Revision history for {{$dist->name}}
 
+4.16 2020-06-20 Duncan Ferguson <duncan_fergu...@user.sf.net>
+- Further fix for 'resolve_names' error when adding hosts via the UI
+- Fix missing space separator for ssh_args (thanks to Petr Vorel)
+
 4.15 2020-05-18 Duncan Ferguson <duncan_fergu...@user.sf.net>
 - Include all utilies within each man page
 - Add in 'command_pre' and 'command_post' configuration options
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/clusterssh-4.15/README new/clusterssh-4.16/README
--- old/clusterssh-4.15/README  2020-05-18 09:22:32.000000000 +0200
+++ new/clusterssh-4.16/README  2020-06-20 11:33:19.000000000 +0200
@@ -2,7 +2,7 @@
     cssh - Cluster administration tool
 
 VERSION
-    This documentation is for version: 4.15
+    This documentation is for version: 4.16
 
 SYNOPSIS
     cssh [-a '<command>'] [-K <seconds>] [-q] [-c '<filename>'] [-x <cols>]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/clusterssh-4.15/THANKS new/clusterssh-4.16/THANKS
--- old/clusterssh-4.15/THANKS  2020-05-18 09:22:32.000000000 +0200
+++ new/clusterssh-4.16/THANKS  2020-06-20 11:33:19.000000000 +0200
@@ -48,3 +48,4 @@
 Ankit Vadehra
 Azenet
 Markus Frosch (lazyfrosch)
+Petr Vorel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/clusterssh-4.15/lib/App/ClusterSSH/Helper.pm 
new/clusterssh-4.16/lib/App/ClusterSSH/Helper.pm
--- old/clusterssh-4.15/lib/App/ClusterSSH/Helper.pm    2020-05-18 
09:22:32.000000000 +0200
+++ new/clusterssh-4.16/lib/App/ClusterSSH/Helper.pm    2020-06-20 
11:33:19.000000000 +0200
@@ -71,9 +71,9 @@
            my \$user=shift;
            my \$port=shift;
            my \$mstr=shift;
-           my \$command="$command_pre $comms $comms_args";
+           my \$command="$command_pre $comms $comms_args ";
            open(PIPE, ">", \$pipe) or die("Failed to open pipe: \$!\\n");
-           print PIPE "\$\$:\$ENV{WINDOWID}" 
+           print PIPE "\$\$:\$ENV{WINDOWID}"
                or die("Failed to write to pipe: $!\\n");
            close(PIPE) or die("Failed to close pipe: $!\\n");
            if(\$svr =~ m/==\$/)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/clusterssh-4.15/lib/App/ClusterSSH/Window/Tk.pm 
new/clusterssh-4.16/lib/App/ClusterSSH/Window/Tk.pm
--- old/clusterssh-4.15/lib/App/ClusterSSH/Window/Tk.pm 2020-05-18 
09:22:32.000000000 +0200
+++ new/clusterssh-4.16/lib/App/ClusterSSH/Window/Tk.pm 2020-06-20 
11:33:19.000000000 +0200
@@ -356,7 +356,7 @@
     if ( defined $menus{listbox} && $menus{listbox}->curselection() ) {
         my @hosts = $menus{listbox}->get( $menus{listbox}->curselection() );
         $self->debug( 2, "host=", join( ' ', @hosts ) );
-        $self->open_client_windows( $self->resolve_names(@hosts) );
+        $self->open_client_windows( $self->parent->resolve_names(@hosts) );
     }
 
     $self->build_hosts_menu();
@@ -1204,7 +1204,7 @@
 
                         for ($cmd) {
                             if (m/^open$/) {
-                                my @new_hosts = $self->resolve_names(@tags);
+                                my @new_hosts = 
$self->parent->resolve_names(@tags);
                                 $self->open_client_windows(@new_hosts);
                                 $self->build_hosts_menu();
                                 last;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/clusterssh-4.15/lib/App/ClusterSSH.pm 
new/clusterssh-4.16/lib/App/ClusterSSH.pm
--- old/clusterssh-4.15/lib/App/ClusterSSH.pm   2020-05-18 09:22:32.000000000 
+0200
+++ new/clusterssh-4.16/lib/App/ClusterSSH.pm   2020-06-20 11:33:19.000000000 
+0200
@@ -5,7 +5,7 @@
 # ABSTRACT: Cluster administration tool
 # ABSTRACT: Cluster administration tool
 
-use version; our $VERSION = version->new('4.15');
+use version; our $VERSION = version->new('4.16');
 
 =head1 SYNOPSIS
 


Reply via email to