Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tik for openSUSE:Factory checked in 
at 2025-01-02 19:23:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tik (Old)
 and      /work/SRC/openSUSE:Factory/.tik.new.1881 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tik"

Thu Jan  2 19:23:36 2025 rev:21 rq:1234554 version:1.3.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/tik/tik.changes  2024-12-02 16:58:42.848143284 
+0100
+++ /work/SRC/openSUSE:Factory/.tik.new.1881/tik.changes        2025-01-02 
19:24:14.447444487 +0100
@@ -1,0 +2,6 @@
+Thu Jan 02 12:10:59 UTC 2025 - rbr...@suse.com
+
+- Update to version 1.3.4:
+  * Recovery Keys no longer written to logs
+
+-------------------------------------------------------------------

Old:
----
  tik-1.3.3.obscpio

New:
----
  tik-1.3.4.obscpio

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

Other differences:
------------------
++++++ tik.spec ++++++
--- /var/tmp/diff_new_pack.sToLnM/_old  2025-01-02 19:24:15.299480035 +0100
+++ /var/tmp/diff_new_pack.sToLnM/_new  2025-01-02 19:24:15.299480035 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tik
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # 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:           tik
-Version:        1.3.3
+Version:        1.3.4
 Release:        0
 Summary:        Transactional Installation Kit
 License:        MIT

++++++ _service ++++++
--- /var/tmp/diff_new_pack.sToLnM/_old  2025-01-02 19:24:15.323481036 +0100
+++ /var/tmp/diff_new_pack.sToLnM/_new  2025-01-02 19:24:15.327481203 +0100
@@ -3,7 +3,7 @@
   <service name="obs_scm" mode="manual">
     <param name="url">https://github.com/sysrich/tik.git</param>
     <param name="scm">git</param>
-    <param name="revision">v1.3.3</param>
+    <param name="revision">v1.3.4</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="changesgenerate">enable</param>
     <param name="versionrewrite-pattern">v(.*)</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.sToLnM/_old  2025-01-02 19:24:15.347482037 +0100
+++ /var/tmp/diff_new_pack.sToLnM/_new  2025-01-02 19:24:15.347482037 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/sysrich/tik.git</param>
-              <param 
name="changesrevision">908b7ade9c72fc579c1023544a0401ad6b26267a</param></service></servicedata>
+              <param 
name="changesrevision">0d7cdd9df24d17315564a0c2989802f3916c82e0</param></service></servicedata>
 (No newline at EOF)
 

++++++ tik-1.3.3.obscpio -> tik-1.3.4.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tik-1.3.3/usr/bin/tik new/tik-1.3.4/usr/bin/tik
--- old/tik-1.3.3/usr/bin/tik   2024-11-30 12:53:50.000000000 +0100
+++ new/tik-1.3.4/usr/bin/tik   2025-01-02 13:05:03.000000000 +0100
@@ -17,6 +17,7 @@
 
 # Start logging
 exec 2> >(exec tee -i -a "${tik_log}" >&2)
+logging=true
 log "[START] $0"
 
 # Check for debug mode
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tik-1.3.3/usr/lib/tik/lib/tik-functions 
new/tik-1.3.4/usr/lib/tik/lib/tik-functions
--- old/tik-1.3.3/usr/lib/tik/lib/tik-functions 2024-11-30 12:53:50.000000000 
+0100
+++ new/tik-1.3.4/usr/lib/tik/lib/tik-functions 2025-01-02 13:05:03.000000000 
+0100
@@ -5,7 +5,9 @@
 . /usr/lib/tik/lib/cenity
 
 log(){
-    echo "[${tik_module}][$(date +"%Y%m%d-%T")][LOG] $*" 1>&2
+    if $logging; then
+        echo "[${tik_module}][$(date +"%Y%m%d-%T")][LOG] $*" 1>&2
+    fi
 }
 
 warn() {
@@ -49,10 +51,11 @@
     retval=0
     if $gui; then
         result="$(zenity "$@")" || retval=$?
+        log "[zenity][${retval}][${result}] $@"
     else
         cenity result "$@" || retval=$?
+        log "[cenity][${retval}][${result}] $@"
     fi
-    log "[zenity][${retval}][${result}] $@"
     return $retval
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tik-1.3.3/usr/lib/tik/modules/post/15-encrypt 
new/tik-1.3.4/usr/lib/tik/modules/post/15-encrypt
--- old/tik-1.3.3/usr/lib/tik/modules/post/15-encrypt   2024-11-30 
12:53:50.000000000 +0100
+++ new/tik-1.3.4/usr/lib/tik/modules/post/15-encrypt   2025-01-02 
13:05:03.000000000 +0100
@@ -184,7 +184,9 @@
     [ "${tik_encrypt_mode}" == 0 ] && message=${defaultmsg}
     [ "${tik_encrypt_mode}" == 1 ] && message=${fallbackmsg}
     log "[display_recoveryKey] displaying recovery key"
+    logging=false
     d --width=500 --height=500 --no-wrap --warning 
--icon=security-high-symbolic --title="Encryption Recovery Key" 
--text="${message}You may optionally scan the recovery key off screen:\n<span 
face='monospace'>$(qrencode ${key} -t UTF8i)</span>\nFor more information 
please visit <tt>https://aeondesktop.org/encrypt</tt>"
+    logging=true
     log "[display_recoveryKey] recovery key dialogue dismissed"
 }
 
@@ -193,6 +195,7 @@
         d --width=500 --height=300 --no-wrap --warning 
--icon=security-high-symbolic --title="Set Encryption Passphrase" --text="This 
${TIK_OS_NAME} system is encrypted and will require a Passphrase on every 
boot\n\nYou will be prompted to set the Passphrase on the next screen\n\nFor 
more information please visit <tt>https://aeondesktop.org/encrypt</tt>"
         log "[add_key] Fallback Mode - Prompting user for passphrase for 
${cryptpart}"
         # Not using 'd' function to avoid logging the password
+        # FIXME - Now use 'd' function and logging=false
         while true
         do
             if $gui; then

++++++ tik.obsinfo ++++++
--- /var/tmp/diff_new_pack.sToLnM/_old  2025-01-02 19:24:15.447486210 +0100
+++ /var/tmp/diff_new_pack.sToLnM/_new  2025-01-02 19:24:15.451486377 +0100
@@ -1,5 +1,5 @@
 name: tik
-version: 1.3.3
-mtime: 1732967630
-commit: 908b7ade9c72fc579c1023544a0401ad6b26267a
+version: 1.3.4
+mtime: 1735819503
+commit: 0d7cdd9df24d17315564a0c2989802f3916c82e0
 

Reply via email to