~bzr/ubuntu/hardy/bzr/bzr-ppa

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Max Bowsher
  • Date: 2011-05-15 10:59:12 UTC
  • mfrom: (76.1.75 jaunty)
  • Revision ID: _@maxb.eu-20110515105912-fm5vlpaef7r76yo2
Tags: 2.3.3-0~bazaar1~hardy1
* Merge from Debian 2.3 packaging branch:
  - New upstream release.
* Return to using external python-configobj package for natty.
* However for maverick and earlier, continue to drop the patching and stay
  with bzr's internal copy of configobj.
* Add an empty python-bzrlib.tests transitional package for PPA builds.
* Apply the patch 07_lazy_import_scope - ScopeReplacer exceptions are
  causing failure of some tests.
* For lucid and earlier, loosen debhelper builddep version and remove
  --list-missing --fail-missing from dh_install.
* For karmic and earlier, there is no python-meliae or python-lzma.
* For jaunty and earlier, build-depend on quilt and use dh --with quilt.
* For hardy, add preinst script to work around hardy's python-central
  failing to clean up after packages migrating away from python-central.
* Add python-medusa, python-lzma and python-meliae as build
  dependencies (used by the test suite).
* Remove John Ferlito from Uploaders.
* Prefer cython as build dependency.
* Remove generated C files during clean.
* New upstream release.
 + Build depend on python-configobj >= 4.7.2+ds-2 which has a fix for bug
   #618349 which breaks the Bazaar testsuite.
* Switch to dh_python2.
* Switch to debhelper 7, drop cdbs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
2
 
3
 
DEB_PYTHON_SYSTEM = pysupport
4
 
DEB_PYTHON_MODULE_PACKAGES = bzr python-bzrlib
5
 
 
6
 
include /usr/share/cdbs/1/rules/patchsys-quilt.mk
7
 
include /usr/share/cdbs/1/rules/debhelper.mk
8
 
include /usr/share/cdbs/1/class/python-distutils.mk
9
 
 
10
 
DEB_PYTHON_INSTALL_ARGS_ALL += --install-data=/usr/share
11
 
DEB_PYTHON_BUILD_ARGS += --executable "/usr/bin/python"
12
 
DEB_COMPRESS_EXCLUDE += .svg .pdf
13
 
 
14
 
build/bzr:: debian/stamp-doc
15
 
 
16
 
debian/stamp-doc:
17
 
        $(MAKE) docs
18
 
        touch $@
 
3
%:
 
4
        dh --with python2 --with quilt --buildsystem=python_distutils $*
19
5
 
20
6
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
21
7
CONCURRENCY = BZR_CONCURRENCY=$(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
22
8
endif
23
9
 
 
10
PYTHON_CURRENT_VERSION = $(shell pyversions -vd)
 
11
 
24
12
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
25
 
build/bzr:: debian/stamp-selftest
26
 
 
27
 
debian/stamp-selftest:
 
13
override_dh_auto_test:
28
14
        [ -d debian/bzrhome ] || mkdir debian/bzrhome
29
15
        $(CONCURRENCY) \
30
16
        BZR_HOME=debian/bzrhome \
31
17
        BZR_PLUGIN_PATH=-site:-user \
32
18
        BZR_DISABLE_PLUGINS=launchpad \
33
 
        PYTHONPATH=$(wildcard $(CURDIR)/build/lib.*-$(cdbs_python_current_version)) \
34
 
        $(CURDIR)/build/scripts-$(cdbs_python_current_version)/bzr selftest -v --parallel=fork
35
 
        touch $@
 
19
        PYTHONPATH=$(wildcard $(CURDIR)/build/lib.*-$(PYTHON_CURRENT_VERSION)) \
 
20
        $(CURDIR)/build/scripts-$(PYTHON_CURRENT_VERSION)/bzr selftest -v --parallel=fork
36
21
endif
37
22
 
38
 
clean::
 
23
override_dh_auto_clean:
 
24
        dh_auto_clean
39
25
        $(MAKE) clean-docs
40
 
        rm -f debian/stamp-*
41
26
        rm -rf debian/bzrhome
42
 
 
43
 
install/bzr-doc::
44
 
# Install the documentation; since html and txt and intermixed
45
 
# under doc/, this is handier than trying to do it from bzr-doc.install. 
 
27
        rm -f bzrlib/*_pyx.c
 
28
 
 
29
override_dh_auto_install:
 
30
        dh_auto_install -- --install-data=/usr/share
 
31
 
 
32
override_dh_install:
 
33
        dh_install
 
34
        # Install the documentation; since html and txt and intermixed
 
35
        # under doc/, this is handier than trying to do it from bzr-doc.install. 
46
36
        for ext in txt html; do \
47
37
            ( cd doc && find -name "*.$$ext" -print0 ) | \
48
38
                xargs -r0 -i'{}' -n1 install -D -m 644 'doc/{}' \
49
39
                "debian/bzr-doc/usr/share/doc/bzr/$$ext/{}"; \
50
40
        done
51
 
# Install images as well
 
41
        # Install images as well
52
42
        ( cd doc && find -name "*.png" -print0 ) | \
53
43
            xargs -r0 -i'{}' -n1 install -D -m 644 'doc/{}' \
54
44
            "debian/bzr-doc/usr/share/doc/bzr/html/{}"
 
45
 
 
46
override_dh_auto_build:
 
47
        dh_auto_build
 
48
        $(MAKE) docs
 
49
 
 
50
override_dh_compress:
 
51
        dh_compress -X.xvg -X.pdf