From 705553acabe1db64097bbc1bea3b81ff6d8c04f7 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Tue, 6 May 2003 12:44:00 +0000 Subject: When doing a forced install of a package depending on a pseudo-package you got a strange error message. Fixed. --- Lib/plat-mac/pimp.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Lib/plat-mac/pimp.py b/Lib/plat-mac/pimp.py index 0f42771..22ff34e 100644 --- a/Lib/plat-mac/pimp.py +++ b/Lib/plat-mac/pimp.py @@ -132,7 +132,7 @@ class PimpTarUnpacker(PimpUnpacker): if skip: names = [member.name for member in skip if member.name[-1] != '/'] if names: - return "Not all files were unpacked: %s" % " ".join(names) + return "Not all files were unpacked: %s" % " ".join(names) ARCHIVE_FORMATS = [ (".tar.Z", PimpTarUnpacker, None), @@ -468,6 +468,11 @@ class PimpPackage: rv = [] if not self._dict.get('Download-URL'): + # For pseudo-packages that are already installed we don't + # return an error message + status, _ = self.installed() + if status == "yes": + return [] return [(None, "%s: This package cannot be installed automatically (no Download-URL field)" % self.fullname())] -- cgit v0.12