~ubuntu-branches/debian/squeeze/python-gasp/squeeze

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Luke Faraone, Luca Falavigna, Jakub Wilk, Luke Faraone
  • Date: 2010-03-11 12:16:43 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100311121643-39oqra647a8kysf7
Tags: 0.3.3-1
[ Luca Falavigna ]
* Optionally depend on python (>= 2.6) with python-multiprocessing,
  multiprocessing module is part of Python 2.6.

[ Jakub Wilk ]
* Fix watch file.

[ Luke Faraone ]
* New upstream version. (LP: #419501) 
* Bump standards version to 3.8.4.
* debian/rules: Change get-orig-source to reflect upstream  

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
DEB_PYTHON_SETUP_CMD = setup.py
9
9
 
 
10
install/python-gasp::
 
11
        rm -rf debian/python-gasp/usr/lib/python*/site-packages/gasp*egg-info/requires.txt
 
12
 
10
13
.PHONY: get-orig-source
11
14
get-orig-source:
12
15
        REV=$(shell dpkg-parsechangelog | sed -rne 's,^Version: .*bzr([^-]+).*,\1,p'); \
14
17
        if [ x$$REV = x ]; then \
15
18
         uscan --force-download --rename --repack --download-version=$$VER --destdir=.; \
16
19
        else \
17
 
         bzr export -r $$REV python-gasp_$$VER.orig.tar.gz lp:gasp-code; \
 
20
         bzr export -r $$REV python-gasp_$$VER.orig.tar.gz lp:gasp-core; \
18
21
        fi
19
22
 
20