[SCM] ci-tooling packaging branch, master, updated. 30e88075dc8d40e05190aa76416f59a8b0c9df1d

Harald Sitter apachelogger-guest at moszumanska.debian.org
Thu Feb 26 14:20:17 UTC 2015


Gitweb-URL: http://git.debian.org/?p=pkg-kde/ci-tooling.git;a=commitdiff;h=30e8807

The following commit has been merged in the master branch:
commit 30e88075dc8d40e05190aa76416f59a8b0c9df1d
Author: Harald Sitter <sitter at kde.org>
Date:   Thu Feb 26 15:20:13 2015 +0100

    switch massive output from package lister to debug
    
    also conditional it on debugyness to avoid pointless work
    
    also use format() rather than an unreadable interpolation
---
 kci/install_check.rb | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/kci/install_check.rb b/kci/install_check.rb
index d3a9477..0ca1d46 100755
--- a/kci/install_check.rb
+++ b/kci/install_check.rb
@@ -71,7 +71,12 @@ class CiPPA
     until binary_queue.empty?
       binaries = binary_queue.pop(true)
       binaries.each do |binary|
-        LOG.info "#{binary.binary_package_name}  || #{binary.architecture_specific} ||  #{binary.distro_arch_series_link}"
+        if LOG.debug?
+          LOG.debug format('%s | %s | %s',
+                           binary.binary_package_name,
+                           binary.architecture_specific,
+                           binary.distro_arch_series_link)
+        end
         # Do not include debug packages, they can't conflict anyway, and if
         # they did we still wouldn't care.
         next if binary.binary_package_name.end_with?('-dbg')

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list