~ubuntu-branches/ubuntu/natty/python-distutils-extra/natty-security

« back to all changes in this revision

Viewing changes to DistUtilsExtra/auto.py

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2010-03-24 09:46:16 UTC
  • Revision ID: james.westby@ubuntu.com-20100324094616-mwzxuopdzyawoaf5
Tags: 2.18
* python-mkdebian: Switch stdout to line buffering, for scripts reading our
  output on the fly.
* auto.py: Ignore debian/ to avoid a lot of useless "does not recognize
  file" warnings. (LP: #519927)
* Bump Standards-Version to 3.8.4 (no changes necessary).
* test/auto.py: Use python-xdg instead of python-crypto for the "automatic
  requires" test, since -crypto uses obsolete libraries (sha in Python 2.6)
  which cause extra warnings. (Closes: #571506)

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
author, license, etc.) in ./setup.py.
35
35
'''
36
36
 
37
 
__version__ = '2.15'
 
37
__version__ = '2.18'
38
38
 
39
39
# (c) 2009 Canonical Ltd.
40
40
# Author: Martin Pitt <martin.pitt@ubuntu.com>
70
70
 
71
71
    # mark files in etc/*, handled by install_auto
72
72
    # don't install DistUtilsExtra if bundled with a source tarball
73
 
    ignore_dirs = ['etc', 'DistUtilsExtra']
 
73
    # ignore packaging
 
74
    ignore_dirs = ['etc', 'DistUtilsExtra', 'debian']
74
75
    
75
76
    for f in src.copy():
76
77
        for d in ignore_dirs: