Bug#601250: pbuilder-satisfydepends-classic: [PATCH] confusing output (space missing)

Thorsten Glaser tg at mirbsd.de
Sun Oct 24 16:48:12 UTC 2010


Source: pbuilder
Version: 0.199
Severity: minor
Tags: patch

Since aptitude on m68k is… a no-go at the moment, I find myself
using pbuilder-satisfydepends-classic for a while. The output
is a tad irritating; attached git patch fixes that.
-------------- next part --------------
>From a917450dc566bd3e0c43c265ffc35895ea6b1ca9 Mon Sep 17 00:00:00 2001
From: Thorsten Glaser <tg at mirbsd.org>
Date: Sun, 24 Oct 2010 16:42:55 +0000
Subject: [PATCH] add whitespace in output (cosmetic fix) to avoid confusion
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

With pbuilder-satisfydepends-classic, output looks like this:
 -> Attempting to parse the build-deps
 -> Considering build-depsharutils
   -> Trying sharutils
The space after “Considering build-dep” was missing.

Signed-off-by: Thorsten Glaser <tg at mirbsd.org>
---
 pbuilder-satisfydepends-classic |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/pbuilder-satisfydepends-classic b/pbuilder-satisfydepends-classic
index 20f481a..c940052 100755
--- a/pbuilder-satisfydepends-classic
+++ b/pbuilder-satisfydepends-classic
@@ -70,7 +70,7 @@ checkbuilddep_internal() {
     local APTFLAG="-o APT::Install-Recommends=false"
     echo " -> Attempting to parse the build-deps "
     for INSTALLPKGMULTI in $(get_build_deps | split_deps); do
-      echo " -> Considering build-dep$(echo "$INSTALLPKGMULTI" | tr "/" " " )"
+      echo " -> Considering build-dep $(echo "$INSTALLPKGMULTI" | tr "/" " " )"
       SATISFIED="no"
       for INSTALLPKG in $(split_alternates "$INSTALLPKGMULTI"); do
 	CURRENTREALPKGNAME=$(get_pkg_name "$INSTALLPKG")
-- 
1.6.3.1



More information about the Pbuilder-maint mailing list