[DRE-commits] [pkg-ruby-extras] 02/02: build-and-upload: save space when listing reverse (build) deps

Antonio Terceiro terceiro at moszumanska.debian.org
Sun Aug 7 20:13:17 UTC 2016


This is an automated email from the git hooks/post-receive script.

terceiro pushed a commit to branch master
in repository pkg-ruby-extras.

commit 2761418a5a0878c305eccce4be896484d2a46028
Author: Antonio Terceiro <terceiro at debian.org>
Date:   Sun Aug 7 17:12:51 2016 -0300

    build-and-upload: save space when listing reverse (build) deps
---
 build-and-upload | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/build-and-upload b/build-and-upload
index 62d0492..1a41c68 100755
--- a/build-and-upload
+++ b/build-and-upload
@@ -118,7 +118,10 @@ test_reverse_dependencies() {
   local do_test=y
   if [ -n "$rdeps" ]; then
     banner "Found reverse dependencies!"
-    echo "$rdeps"
+    printf "Reverse dependencies: "
+    echo "$rdeps" | xargs echo
+    echo
+
     for pkg in $rdeps; do
       if chdist apt-cache unstable showsrc "$pkg" | grep -q ^Testsuite:; then
         if [ "$do_test" != 'a' ]; then
@@ -168,8 +171,11 @@ test_reverse_build_dependencies() {
   local rbdeps="$(chdist grep-dctrl-sources unstable -F Build-Depends -r "$pattern" -n -s Package | sort -u)"
 
   if [ -n "$rbdeps" ]; then
+
     banner "Found reverse build dependencies!"
-    echo "$rbdeps"
+    printf "Reverse build dependencies: "
+    echo "$rbdeps" | xargs echo
+    echo
 
     local pkg
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/pkg-ruby-extras.git



More information about the Pkg-ruby-extras-commits mailing list