~thekorn/python-distutils-extra/fix_nondefined_data_files

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-25 19:14:52 UTC
  • Revision ID: james.westby@ubuntu.com-20090325191452-lqvuaohokww4s2vx
* Add DistUtilsExtra/command/check.py: New "check" command, running pylint
  for now, but will do more things in the future. Thanks to Rodney Dawes for
  this!
* debinan/rules: Drop arch-build stuff. We have bzr-builddeb nowadays, and
  for a package like this it isn't required at all.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
clean::
13
13
        rm -rf python_distutils_extra.egg-info
14
 
 
15
 
DEB_BUILD_PROG:=debuild --preserve-envvar PATH --preserve-envvar CCACHE_DIR -us -uc $(DEB_BUILD_PROG_OPTS)
16
 
 
17
 
arch-build::
18
 
        rm -rf debian/arch-build
19
 
        mkdir -p debian/arch-build/$(DEB_SOURCE_PACKAGE)-$(DEB_VERSION)
20
 
        tar -c --exclude=arch-build --no-recursion -f - `bzr inventory` | (cd debian/arch-build/$(DEB_SOURCE_PACKAGE)-$(DEB_VERSION);tar xf -)
21
 
        (cd debian/arch-build/$(DEB_SOURCE_PACKAGE)-$(DEB_VERSION) && $(DEB_BUILD_PROG))