[SCM] patch-parser packaging branch, master, updated. 520aa896e8f3512977dc29c25de0f08afe738073

Harald Sitter apachelogger-guest at moszumanska.debian.org
Mon May 4 09:56:43 UTC 2015


Gitweb-URL: http://git.debian.org/?p=pkg-kde/patch-parser.git;a=commitdiff;h=264b975

The following commit has been merged in the master branch:
commit 264b9756211967c7e5ba7a56656e81e4956504b5
Author: Harald Sitter <sitter at kde.org>
Date:   Mon May 4 11:56:16 2015 +0200

    exec render instead of fork. we don't do anything in the harness afterwards
    
    otherwise the RVM for runme is just wasting memory
---
 runme.rb | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/runme.rb b/runme.rb
index 8e2ac02..23b4f23 100755
--- a/runme.rb
+++ b/runme.rb
@@ -1,9 +1,12 @@
 #!/usr/bin/env ruby
 
+require 'logger'
+
+ at log = Logger.new(STDOUT)
+
 components = %w(frameworks plasma kde-std applications qt kde-extras)
 
 repos = []
-
 components.each do |component|
   `ssh git.debian.org ls /git/pkg-kde/#{component}`.split.each do |repo|
     # kde-telepathy is a subdir within a subdir which we can't handle.
@@ -15,4 +18,5 @@ components.each do |component|
   end
 end
 
-puts `ruby render.rb #{repos.join(' ')}`
+ at log.info "Rendering #{repos.size} repositories."
+exec('ruby', 'render.rb', *repos)

-- 
patch-parser packaging



More information about the pkg-kde-commits mailing list