Package: tailor
Version: 0.9.20-1
Severity: important
Tags: patch

Import from arch repositories using baz fails, because baz does not like
the '-f' option to the 'missing' command (the option is implicitly included
in baz).

The attached patch prevents tailor from using this option with baz.

Teemu

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (450, 'testing'), (400, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-powerpc
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages tailor depends on:
ii  python2.4                     2.4.2-2    An interactive high-level object-o

tailor recommends no packages.

-- no debconf information
--- repository.py.orig  2006-04-29 01:16:31.000000000 +0300
+++ repository.py       2006-04-29 01:46:07.000000000 +0300
@@ -393,4 +393,8 @@
             if args[0] == 'tree-lint':
                 args = list(args)
                 args[0] = 'lint'
+            if args[0] == 'missing':
+               if args[1] == '-f':
+                   args = list(args)
+                   args[1:2] = [];
         return TlaRepository.command(self, *args, **kwargs)

Reply via email to