comparison Makefile.am @ 24304:cb0aa91430bb

disapproval of revision '4f931125ffce24ace6bf298cc58d620c1a975aa1'
author Stu Tomlinson <stu@nosnilmot.com>
date Mon, 27 Oct 2008 00:58:03 +0000
parents 8643ff79db35
children b31d2ca01b7a
comparison
equal deleted inserted replaced
24303:8643ff79db35 24304:cb0aa91430bb
31 # cp libpurple/plugins/perl/common/Gaim.pm $(distdir)/libpurple/plugins/perl/common 31 # cp libpurple/plugins/perl/common/Gaim.pm $(distdir)/libpurple/plugins/perl/common
32 32
33 version-check: 33 version-check:
34 # We don't want to release development versions. 34 # We don't want to release development versions.
35 test x`echo $(PACKAGE_VERSION) | grep dev` = x 35 test x`echo $(PACKAGE_VERSION) | grep dev` = x
36
37 # Make sure there is a NEWS entry for this version
38 head NEWS | grep "^$(PACKAGE_VERSION) (`date +%m/%d/%Y`):$$" > /dev/null
39
40 # Ensure NEWS has no spaces at the start of a line.
41 # Using spaces instead of tabs there is a common mistake.
42 test x`grep "^ " NEWS` = x
36 43
37 # When doing a new minor (or major) release (X.Y.0), there must be a section in 44 # When doing a new minor (or major) release (X.Y.0), there must be a section in
38 # ChangeLog.API. 45 # ChangeLog.API.
39 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 46 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
40 47