Mercurial > pidgin
comparison Makefile.am @ 24235:27556c2710e3
Run the (relatively quick) version check before the (painfully long)
distcheck when preparing for, or making, a release
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Thu, 16 Oct 2008 20:23:03 +0000 |
parents | 6c8be58d0d04 |
children | 2f83c37c65e3 |
comparison
equal
deleted
inserted
replaced
24234:499739e4c5d5 | 24235:27556c2710e3 |
---|---|
50 # Ensure we're working from a tag... | 50 # Ensure we're working from a tag... |
51 test x`mtn automate select t:v$(PACKAGE_VERSION)` = x`mtn automate get_base_revision_id` | 51 test x`mtn automate select t:v$(PACKAGE_VERSION)` = x`mtn automate get_base_revision_id` |
52 # ... and have no changes in the working copy. | 52 # ... and have no changes in the working copy. |
53 test x`mtn diff | grep -v '^#'` = x | 53 test x`mtn diff | grep -v '^#'` = x |
54 | 54 |
55 release: distcheck packages | 55 release: version-check distcheck packages |
56 | 56 |
57 packages: version-check | 57 packages: |
58 gpg -ab pidgin-$(PACKAGE_VERSION).tar.gz | 58 gpg -ab pidgin-$(PACKAGE_VERSION).tar.gz |
59 gpg -ab pidgin-$(PACKAGE_VERSION).tar.bz2 | 59 gpg -ab pidgin-$(PACKAGE_VERSION).tar.bz2 |
60 gpg --verify pidgin-$(PACKAGE_VERSION).tar.gz.asc pidgin-$(PACKAGE_VERSION).tar.gz | 60 gpg --verify pidgin-$(PACKAGE_VERSION).tar.gz.asc pidgin-$(PACKAGE_VERSION).tar.gz |
61 gpg --verify pidgin-$(PACKAGE_VERSION).tar.bz2.asc pidgin-$(PACKAGE_VERSION).tar.bz2 | 61 gpg --verify pidgin-$(PACKAGE_VERSION).tar.bz2.asc pidgin-$(PACKAGE_VERSION).tar.bz2 |
62 | 62 |