Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ssh-pairing for openSUSE:Factory 
checked in at 2026-05-13 17:18:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ssh-pairing (Old)
 and      /work/SRC/openSUSE:Factory/.ssh-pairing.new.1966 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ssh-pairing"

Wed May 13 17:18:55 2026 rev:3 rq:1352733 version:0.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/ssh-pairing/ssh-pairing.changes  2026-02-19 
14:19:30.681124559 +0100
+++ /work/SRC/openSUSE:Factory/.ssh-pairing.new.1966/ssh-pairing.changes        
2026-05-13 17:19:28.331633978 +0200
@@ -1,0 +2,7 @@
+Tue May 12 11:42:07 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to version 0.4:
+  * Skip showing fingerprints for DSA host keys (boo#1264665)
+- Add dependency on /usr/bin/awk
+
+-------------------------------------------------------------------

Old:
----
  ssh-pairing-0.3.obscpio

New:
----
  ssh-pairing-0.4.obscpio

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

Other differences:
------------------
++++++ ssh-pairing.spec ++++++
--- /var/tmp/diff_new_pack.pKa9E8/_old  2026-05-13 17:19:30.919741277 +0200
+++ /var/tmp/diff_new_pack.pKa9E8/_new  2026-05-13 17:19:30.923741442 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           ssh-pairing
-Version:        0.3
+Version:        0.4
 Release:        0
 Summary:        Passwordless SSH key exchange through pairing
 License:        GPL-2.0-or-later
@@ -27,7 +27,9 @@
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(libssh)
 Requires:       dialog
+# Note: busybox hostname does not work here, missing hostname -I
 Requires:       hostname
+Requires:       /usr/bin/awk
 Requires:       /usr/bin/ssh-keygen
 
 %description

++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.pKa9E8/_old  2026-05-13 17:19:30.967743266 +0200
+++ /var/tmp/diff_new_pack.pKa9E8/_new  2026-05-13 17:19:30.971743432 +0200
@@ -1,6 +1,6 @@
-mtime: 1771345844
-commit: a997b9ae4c63fe445f8f729bc45463f3bf1b21e4e8ea3b7250819ced5c439618
-url: https://src.opensuse.org/devel-factory/ssh-pairing.git
-revision: a997b9ae4c63fe445f8f729bc45463f3bf1b21e4e8ea3b7250819ced5c439618
+mtime: 1778586483
+commit: 6bbf6e36b250840c2a31badc07b7a627b3b13b5a67cb8fd135e89da820975155
+url: https://src.opensuse.org/devel-factory/ssh-pairing
+revision: 6bbf6e36b250840c2a31badc07b7a627b3b13b5a67cb8fd135e89da820975155
 projectscmsync: https://src.opensuse.org/devel-factory/_ObsPrj.git
 

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.pKa9E8/_old  2026-05-13 17:19:31.011745091 +0200
+++ /var/tmp/diff_new_pack.pKa9E8/_new  2026-05-13 17:19:31.015745257 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/Vogtinator/ssh-pairing.git</param>
-              <param 
name="changesrevision">10b4571d0dc2ef48ff7cb17207d49c79e83ff922</param></service></servicedata>
+              <param 
name="changesrevision">dd1c38be359fab17e9f0b1fd8b8af36b2e9e556e</param></service></servicedata>
 (No newline at EOF)
 

++++++ build.specials.obscpio ++++++

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-05-12 13:48:03.000000000 +0200
@@ -0,0 +1 @@
+.osc

++++++ ssh-pairing-0.3.obscpio -> ssh-pairing-0.4.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ssh-pairing-0.3/ssh-pairing 
new/ssh-pairing-0.4/ssh-pairing
--- old/ssh-pairing-0.3/ssh-pairing     2026-02-17 16:59:51.000000000 +0100
+++ new/ssh-pairing-0.4/ssh-pairing     2026-05-12 13:27:39.000000000 +0200
@@ -75,13 +75,20 @@
                hostname -I
                echo
                echo $"Please verify that the host key matches:"
-               for i in /etc/ssh/ssh_host_*key.pub; do ssh-keygen -l -f "$i"; 
done | awk '{ print $2" "$4 }'
+               for i in /etc/ssh/ssh_host_*key.pub; do
+                       # Skip DSA keys, deprecated and no longer supported by 
ssh-keygen
+                       if [ "$i" = "/etc/ssh/ssh_host_dsa_key.pub" ]; then 
continue; fi
+                       ssh-keygen -l -f "$i"
+               done | awk '{ print $2" "$4 }'
                echo
 
                echo $"Randomart for ssh -o \"VisualHostKey yes\":"
                # Display the randomart for all key types next to each other
                local allartlines=()
                for i in /etc/ssh/ssh_host_*key.pub; do
+                       # Skip DSA keys, deprecated and no longer supported by 
ssh-keygen
+                       if [ "$i" = "/etc/ssh/ssh_host_dsa_key.pub" ]; then 
continue; fi
+
                        local artlines=()
                        readarray -t artlines < <(ssh-keygen -l -v -f "$i" | 
tail -n+2)
                        for (( j=0; j < "${#artlines[@]}"; j++ )); do

++++++ ssh-pairing.obsinfo ++++++
--- /var/tmp/diff_new_pack.pKa9E8/_old  2026-05-13 17:19:31.323758026 +0200
+++ /var/tmp/diff_new_pack.pKa9E8/_new  2026-05-13 17:19:31.327758192 +0200
@@ -1,5 +1,5 @@
 name: ssh-pairing
-version: 0.3
-mtime: 1771343991
-commit: 10b4571d0dc2ef48ff7cb17207d49c79e83ff922
+version: 0.4
+mtime: 1778585259
+commit: dd1c38be359fab17e9f0b1fd8b8af36b2e9e556e
 

Reply via email to