X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=blobdiff_plain;f=dak%2Fexamine_package.py;h=4b315dedcc77c8fb234f1c38e36263b0a48491e0;hp=4cc116bb99267f4f92eadaf343cc1e436dbd8cdd;hb=c1e498c0e251f48d68996ddf05ecb39981361c86;hpb=7b274dc7e257ca19d101b2529fd898a446964d1f diff --git a/dak/examine_package.py b/dak/examine_package.py index 4cc116bb..4b315ded 100755 --- a/dak/examine_package.py +++ b/dak/examine_package.py @@ -444,6 +444,11 @@ def output_deb_info(suite, filename, packagename, session = None): field_value = arch elif key == 'Maintainer': field_value = maintainer + elif key == 'Homepage': + field_value = escape_if_needed(control.find(key)) + if use_html: + field_value = '%s' % \ + (field_value, field_value) elif key == 'Description': if use_html: field_value = formatted_text(control.find(key), strip=True) @@ -456,12 +461,16 @@ def output_deb_info(suite, filename, packagename, session = None): to_print += " "+format_field(key,field_value)+'\n' return to_print -def do_command (command, filename, escaped=False): - o = os.popen("%s %s" % (command, filename)) - if escaped: - return escaped_text(o.read()) - else: - return formatted_text(o.read()) +def do_command (command, escaped=False): + process = daklib.daksubprocess.Popen(command, stdout=subprocess.PIPE) + o = process.stdout + try: + if escaped: + return escaped_text(o.read()) + else: + return formatted_text(o.read()) + finally: + process.wait() def do_lintian (filename): cnf = Config() @@ -475,9 +484,9 @@ def do_lintian (filename): if use_html: color = 'html' - cmd.extend(['lintian', '--show-overrides', '--color', color]) + cmd.extend(['lintian', '--show-overrides', '--color', color, "--", filename]) - return do_command(' '.join(cmd), filename, escaped=True) + return do_command(cmd, escaped=True) def get_copyright (deb_filename): global printed @@ -522,7 +531,7 @@ def get_readme_source (dsc_filename): path = os.path.join(tempdir, 'debian/README.source') res = "" if os.path.exists(path): - res += do_command("cat", path) + res += do_command(["cat", "--", path]) else: res += "No README.source in this package\n\n" @@ -565,7 +574,7 @@ def check_deb (suite, deb_filename, session = None): "binary-%s-lintian"%packagename, do_lintian(deb_filename)) + "\n" result += foldable_output("contents of %s" % (filename), "binary-%s-contents"%packagename, - do_command("dpkg -c", deb_filename)) + "\n" + do_command(["dpkg", "-c", deb_filename])) + "\n" if is_a_udeb: result += foldable_output("skipping copyright for udeb", @@ -633,7 +642,9 @@ def main (): try: if not Options["Html-Output"]: # Pipe output for each argument through less - less_fd = os.popen("less -R -", 'w', 0) + less_cmd = ("less", "-R", "-") + less_process = daklib.daksubprocess.Popen(less_cmd, stdin=subprocess.PIPE, bufsize=0) + less_fd = less_process.stdin # -R added to display raw control chars for colour sys.stdout = less_fd try: @@ -652,6 +663,7 @@ def main (): if not Options["Html-Output"]: # Reset stdout here so future less invocations aren't FUBAR less_fd.close() + less_process.wait() sys.stdout = stdout_fd except IOError as e: if errno.errorcode[e.errno] == 'EPIPE':