Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package dnscrypt-proxy for openSUSE:Factory 
checked in at 2021-02-03 19:56:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dnscrypt-proxy (Old)
 and      /work/SRC/openSUSE:Factory/.dnscrypt-proxy.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dnscrypt-proxy"

Wed Feb  3 19:56:41 2021 rev:10 rq:868982 version:2.0.45

Changes:
--------
--- /work/SRC/openSUSE:Factory/dnscrypt-proxy/dnscrypt-proxy.changes    
2021-01-19 16:02:56.415447596 +0100
+++ /work/SRC/openSUSE:Factory/.dnscrypt-proxy.new.28504/dnscrypt-proxy.changes 
2021-02-03 19:56:46.349750439 +0100
@@ -1,0 +2,5 @@
+Sat Jan 30 12:00:00 UTC 2021 - [email protected]
+
+- Use less predictable temporary files during build (bsc#1181502).
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ find_licenses.sh ++++++
--- /var/tmp/diff_new_pack.gv03gR/_old  2021-02-03 19:56:47.693752058 +0100
+++ /var/tmp/diff_new_pack.gv03gR/_new  2021-02-03 19:56:47.693752058 +0100
@@ -12,7 +12,7 @@
 vendor_licenses_dir=$1
 username=$(whoami)
 workingdir=$(pwd)
-licenses_file=/tmp/license_files.txt
+licenses_file=$(mktemp /tmp/license_files_XXXXXXXXXX.txt)
 goahead=0
 hash_list=()
 filename_list=()

++++++ install_licenses.sh ++++++
--- /var/tmp/diff_new_pack.gv03gR/_old  2021-02-03 19:56:47.709752077 +0100
+++ /var/tmp/diff_new_pack.gv03gR/_new  2021-02-03 19:56:47.709752077 +0100
@@ -1,6 +1,7 @@
 #!/bin/bash
 
 # written by cunix in 2019
+# updated in 2021
 #
 # Installs or links previously found licenses.
 #
@@ -9,8 +10,8 @@
 
 vendor_licenses_dir=$1
 install_licenses_dir=$2
-licenses_files=/tmp/real_license_files.txt
-licenses_links=/tmp/link_license_files.txt
+licenses_files=$(mktemp /tmp/real_license_files_XXXXXXXXXX.txt)
+licenses_links=$(mktemp /tmp/link_license_files_XXXXXXXXXX.txt)
 
 rm $licenses_files
 rm $licenses_links
@@ -21,6 +22,7 @@
 while read line
   do
     install -D -m 0644 $vendor_licenses_dir/$line $install_licenses_dir/$line
+    echo installed: $line
   done < $licenses_files
 
 cd $install_licenses_dir
@@ -28,4 +30,5 @@
   do
     combo=($line)
     ln -s ${combo[1]} ${combo[0]}
+    echo linked: $line
   done < $licenses_links

Reply via email to