diff options
author | David Nusinow <dnusinow@debian.org> | 2006-05-31 01:51:30 +0000 |
---|---|---|
committer | David Nusinow <dnusinow@debian.org> | 2006-05-31 01:51:30 +0000 |
commit | 1d7d69a0512e25c5713b1382bcf4c498987ede0b (patch) | |
tree | 281cf6f13a9df6d31f29987cf696fc1440b64977 /debian | |
parent | 98cd62c818bb1bea351ceabf3f38c3b9f2a414f9 (diff) | |
download | xutils-dev-1d7d69a0512e25c5713b1382bcf4c498987ede0b.tar.gz |
* Stop trying to put the debugging symbols somewhere. We're not going to
ship them unless there's a compelling reason to do so
* Run dh_install with --list-missing
* Bump debhelper compatibility to 5
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/compat | 2 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 4 |
4 files changed, 9 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index cd8a0d4..c86b940 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,8 +16,12 @@ xutils-dev (1:7.1.ds-1) UNRELEASED; urgency=low * Bump standards version to 3.7.2.0 * Correct the mkdirhier manpage rewrite patch so that the manpage suffix is correct + * Stop trying to put the debugging symbols somewhere. We're not going to + ship them unless there's a compelling reason to do so + * Run dh_install with --list-missing + * Bump debhelper compatibility to 5 - -- David Nusinow <dnusinow@debian.org> Tue, 30 May 2006 01:19:46 -0400 + -- David Nusinow <dnusinow@debian.org> Tue, 30 May 2006 21:51:43 -0400 xutils-dev (1:1.0.2-3) unstable; urgency=low diff --git a/debian/compat b/debian/compat index b8626c4..7ed6ff8 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -4 +5 diff --git a/debian/control b/debian/control index 3201acf..82ff883 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: x11 Priority: optional Maintainer: Debian X Strike Force <debian-x@lists.debian.org> Uploaders: David Nusinow <dnusinow@debian.org>, Branden Robinson <branden@debian.org>, Fabio M. Di Nitto <fabbione@fabbione.net> -Build-Depends: debhelper (>= 4.0.0), pkg-config, quilt, x11proto-core-dev +Build-Depends: debhelper (>= 5.0.0), pkg-config, quilt, x11proto-core-dev Standards-Version: 3.7.2.0 Package: xutils-dev diff --git a/debian/rules b/debian/rules index 6b450b9..5e593ca 100755 --- a/debian/rules +++ b/debian/rules @@ -80,10 +80,10 @@ binary-arch: build install dh_testroot dh_installdocs - dh_install --sourcedir=debian/tmp + dh_install --sourcedir=debian/tmp --list-missing dh_installchangelogs dh_link - dh_strip --dbg-package=$(PACKAGE) + dh_strip dh_compress dh_fixperms dh_installdeb |