~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2010-08-04 13:27:50 UTC
  • Revision ID: james.westby@ubuntu.com-20100804132750-6ps5btvek3fudl8p
Tags: 0.9.1~bzr204-0ubuntu1
First OpenStack release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
# Verbose mode
 
4
#export DH_VERBOSE=1
 
5
 
 
6
 
 
7
DEB_PYTHON_SYSTEM=pysupport
 
8
 
 
9
#export DH_VERBOSE=1
 
10
 
 
11
%:
 
12
        dh $@
 
13
 
 
14
override_dh_auto_build:
 
15
        dh_auto_build
 
16
        python setup.py build_sphinx
 
17
 
 
18
get-orig-source:
 
19
        uscan --verbose --force-download --rename --destdir=../build-area
 
20
 
 
21
override_dh_auto_test:
 
22
        python run_tests.py --redis_port=`debian/start-redis` ; kill `cat redis.pid`
 
23