From: David Bremner Date: Tue, 21 Jun 2011 12:03:19 +0000 (-0300) Subject: debian: Generate version from debian/changelog X-Git-Tag: debian/0.6_254~20 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=2b76283b52a2389a591ca055b086381c44e2a61f debian: Generate version from debian/changelog This avoids patching the version file once per Debian upload. Original version file is saved and restored. (cherry picked from commit 2938a98bf4c4abe0426caee4555d889d655bc0df) --- diff --git a/debian/rules b/debian/rules index a4b526c1..985fbc5f 100755 --- a/debian/rules +++ b/debian/rules @@ -1,11 +1,18 @@ #!/usr/bin/make -f +VERSION=$(shell dpkg-parsechangelog | sed -n 's/^Version:\([^-]*\)/\1/p') + %: dh $@ override_dh_auto_configure: + cp version debian/version.pre-build + echo $(VERSION) > version dh_auto_configure -- --emacslispdir=/usr/share/emacs/site-lisp/notmuch +override_dh_auto_clean: + -mv debian/version.pre-build version + dh_auto_clean override_dh_installdocs: dh_installdocs install -m644 vim/README debian/notmuch/usr/share/doc/notmuch/README.vim