Package: python-statgrab
Version: 0.4-1
Severity: normal
Tags: patch

Hi,

        Firstly, this package contains python in it's Build-Depends,
which will get dragged by the very next dependancy, namely
python2.3-dev, which means the python Build-Depends can be dropped.

        Secondly, you call find twice in debian/rules, where one call
will do. I have attached a patch which calls find once.

Thanks,

-- System Information:
Debian Release: testing/unstable
  APT prefers breezy-updates
  APT policy: (500, 'breezy-updates'), (500, 'breezy-security'), (500, 'breezy')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-10-amd64-generic
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)

-- 
                                        Steve
C offers you enough rope to hang yourself.
C++ offers a fully equipped firing squad, a last cigarette and
a blindfold.
         - Erik de Castro Lopo
--- debian/rules~       2006-02-20 23:20:03.000000000 +1100
+++ debian/rules        2006-02-21 15:50:31.000000000 +1100
@@ -38,9 +38,7 @@
        dh_testroot
        dh_clean -k 
        dh_installdirs
-       find build -name _statgrab.so -print0 | \
-       xargs -0r -i mv {} 
debian/python-statgrab/usr/lib/python2.3/site-packages/
-       find build -name statgrab.py -print0 | \
+       find build \( -name _statgrab.so -o -name statgrab.py \) -print0 | \
        xargs -0r -i mv {} 
debian/python-statgrab/usr/lib/python2.3/site-packages/
        dh_install
 

Reply via email to