~ubuntu-branches/debian/squeeze/configobj/squeeze

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Rivera, Sandro Tosi, Stefano Rivera
  • Date: 2010-02-01 01:34:21 UTC
  • mfrom: (1.3.1 upstream) (6.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100201013421-jnt5mxdpfpsrjawy
Tags: 4.7.0-1
[ Sandro Tosi ]
* debian/control
  - switch Vcs-Browser field to viewsvn

[ Stefano Rivera ]
* New upstream release. (Closes: 555407)
* Package under team maintenance. (Closes: 544448)
* Bumped Standards-Version to 3.8.4 (no changes needed).
* Converted to 3.0 (quilt)
* debian/rules
  - Converted to debhelper 7 overrides
  - Don't compress epydoc.js
* Patches:
  - 01_eggify.dpatch converted to eggify.diff (quilt+DEP3).
  - 02_doc_generation_fix.dpatch removed (fixed upstream)
* debain/control
  - Unversioned python-setuptools dependency (oldstable has a suitable
    version)
  - Removed unecessary XB-Python-Version.
  - Minor changes to description.
* debian/copyright
  - Updated years and added author Mark Andrews.
  - Included full license, as it isn't identical to the common-licenses one.
* debian/watch
  - Switched from sf.net to author's homepage, as redirector can't see
    4.7.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
 
 
3
 
DEB_PYTHON_SYSTEM = pysupport
4
 
 
5
 
include /usr/share/cdbs/1/rules/buildcore.mk
6
 
include /usr/share/cdbs/1/rules/debhelper.mk
7
 
include /usr/share/cdbs/1/class/python-distutils.mk
8
 
include /usr/share/cdbs/1/rules/simple-patchsys.mk
9
 
 
10
 
DEB_COMPRESS_EXCLUDE = .js
11
 
DEB_PYTHON_INSTALL_ARGS_ALL += --single-version-externally-managed --install-lib usr/share/python-support/python-configobj
12
 
 
13
 
binary-post-install/python-configobj::
14
 
        -rm -rf debian/python-configobj/usr/lib/
15
 
        -rm debian/python-configobj/usr/share/doc/python-configobj/BSD*
16
 
 
17
 
post-patches::
18
 
        env PYTHONPATH=`pwd` epydoc --name ConfigObj --url http://www.voidspace.org.uk/python/configobj.html -o configobj-api configobj
19
 
 
20
 
clean::
21
 
        -rm -rf configobj.egg-info
22
 
        -rm -rf configobj-api
 
2
# -*- makefile -*-
 
3
 
 
4
%:
 
5
        dh $@
 
6
 
 
7
override_dh_auto_build:
 
8
        dh_auto_build
 
9
        env PYTHONPATH=`pwd` epydoc --name ConfigObj \
 
10
                --url http://www.voidspace.org.uk/python/configobj.html \
 
11
                -o api configobj
 
12
 
 
13
override_dh_compress:
 
14
        dh_compress -X.js