From 2b76283b52a2389a591ca055b086381c44e2a61f Mon Sep 17 00:00:00 2001 From: David Bremner Date: Tue, 21 Jun 2011 09:03:19 -0300 Subject: [PATCH] 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) --- debian/rules | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- 2.43.0