~ubuntu-branches/ubuntu/karmic/pkg-create-dbgsym/karmic

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt, Loïc Minier, Martin Pitt
  • Date: 2009-09-24 20:09:36 UTC
  • Revision ID: james.westby@ubuntu.com-20090924200936-k0zmjjl3mxtyt3w1
Tags: 0.31
[ Loïc Minier ]
* Add lintian override for lack of dh_strip manpage (dh_strip is diverted);
  bump debhelper build-dep to >= 6.0.7~ for dh_lintian.
* Move debhelper to build-deps instead of build-deps-indep for clean:.
* Bump debhelper compat level to 5.
* Bump up Standards-Version to 3.8.3; no change needed.
* Use dh_prep instead of dh_clean -k; update debhelper build-dep to
  >= 6.0.13~.
* Pass -i to dh_* in binary-indep.
* Use dh_install to install the binaries, dh_fixperms will set them +x.

[ Martin Pitt ]
* dhtest.archspecific: Add a package with "Architecture: kfreebsd-i386
  kfreebsd-amd64". This reproduces the current glib2.0 FTBFS on i386/amd64.
* dh_clean: Fix grepping of Architecture field to only match space separated
  words, instead of using -w; the latter matches e. g. kfreebsd-i386 on
  i386.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
            echo "testsuite.tmp still exists, please clean up and check test suite"; \
8
8
            exit 1; \
9
9
        fi
10
 
 
11
10
        dh_testdir
12
11
        dh_testroot
13
 
        dh_clean 
 
12
        dh_clean
14
13
 
15
14
binary-indep: install
16
15
        dh_testdir
17
16
        dh_testroot
18
 
        dh_clean -k 
19
 
 
20
 
        install -D -m 755 dh_strip debian/pkg-create-dbgsym/usr/bin/dh_strip
21
 
        install -D -m 755 pkg_create_dbgsym debian/pkg-create-dbgsym/usr/bin/pkg_create_dbgsym
22
 
 
23
 
        dh_installchangelogs 
24
 
        dh_installdocs
25
 
        dh_compress
26
 
        dh_fixperms
27
 
        dh_installdeb
28
 
        dh_shlibdeps
29
 
        dh_gencontrol
30
 
        dh_md5sums
31
 
        dh_builddeb
 
17
        dh_prep
 
18
        dh_install -i
 
19
        dh_lintian -i
 
20
        dh_installchangelogs -i
 
21
        dh_installdocs -i
 
22
        dh_compress -i
 
23
        dh_fixperms -i
 
24
        dh_installdeb -i
 
25
        dh_shlibdeps -i
 
26
        dh_gencontrol -i
 
27
        dh_md5sums -i
 
28
        dh_builddeb -i
32
29
 
33
30
binary: binary-indep binary-arch
34
31