comparison Makefile.am @ 32311:ade9644db2fe

propagate from branch 'im.pidgin.pidgin' (head 65f0e21660895ebae2e934a8d04088a1c57899a6) to branch 'im.pidgin.pidgin.next.major' (head 4bdbd0f88a6cef603ee585e0022dcb62d22820ea)
author Mark Doliner <mark@kingant.net>
date Sat, 20 Aug 2011 22:59:53 +0000
parents 3e4b6ffbb551 6f3df8fc3037
children
comparison
equal deleted inserted replaced
32310:142429bcb4c8 32311:ade9644db2fe
37 iconv -f utf8 -t utf8 COPYRIGHT | cmp COPYRIGHT - 37 iconv -f utf8 -t utf8 COPYRIGHT | cmp COPYRIGHT -
38 38
39 version-check: commit-check 39 version-check: commit-check
40 # We don't want to release development versions. 40 # We don't want to release development versions.
41 test x`echo $(PACKAGE_VERSION) | grep dev` = x 41 test x`echo $(PACKAGE_VERSION) | grep dev` = x
42
43 # Make sure there is a NEWS entry for this version
44 head NEWS | grep "^$(PACKAGE_VERSION) (`date +%m/%d/%Y`):$$" > /dev/null
45
46 # Ensure NEWS has no spaces at the start of a line.
47 # Using spaces instead of tabs there is a common mistake.
48 test x`grep "^ " NEWS` = x
49 42
50 # When doing a new minor (or major) release (X.Y.0), there must be a section in 43 # When doing a new minor (or major) release (X.Y.0), there must be a section in
51 # ChangeLog.API. 44 # ChangeLog.API.
52 echo $(PACKAGE_VERSION) | grep -v "^[0-9]\+\.[0-9]\+\.0$$" >/dev/null || head ChangeLog.API | grep "^version $(PACKAGE_VERSION) (`date +%m/%d/%Y`):$$" >/dev/null 45 echo $(PACKAGE_VERSION) | grep -v "^[0-9]\+\.[0-9]\+\.0$$" >/dev/null || head ChangeLog.API | grep "^version $(PACKAGE_VERSION) (`date +%m/%d/%Y`):$$" >/dev/null
53 46