~launchpad-committers/ubuntu/lucid/slony1/ppa-8.4

« back to all changes in this revision

Viewing changes to tools/release_checklist.sh

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2008-11-01 14:28:08 UTC
  • mfrom: (1.1.8 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20081101142808-lqwrc03c9udlzdjf
Tags: 1.2.15-1
* New upstream release
* Replaced build dependency gs-gpl by ghostscript again
* Updated standards version
* Changed to debhelper level 7
* Added libdbd-pg-perl to Recommends (closes: #499548)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
 
# $Id: release_checklist.sh,v 1.1.2.5 2007-08-29 05:44:58 devrim Exp $
 
2
# $Id: release_checklist.sh,v 1.1.2.6 2008-09-12 16:09:23 cbbrowne Exp $
3
3
 
4
4
# This script runs through what it can of the release checklist
5
5
# run via:  "sh tools/release_checklist.sh"
17
17
 
18
18
VERCOMMA="${MAJOR},${MINOR},${PATCHLEVEL}"
19
19
VERUNDERSCORE="${MAJOR}_${MINOR}_${PATCHLEVEL}"
20
 
if [[ `egrep "#define SLONY_I_VERSION_STRING_DEC ${VERCOMMA}\$" config.h.in` ]]; then
 
20
if egrep "#define SLONY_I_VERSION_STRING_DEC ${VERCOMMA}\$" config.h.in >/dev/null 2>&1; then
21
21
   echo "SLONY_I_VERSION_STRING_DEC matches"
22
22
else
23
23
   echo "ERROR: SLONY_I_VERSION_STRING_DEC does not match ${VERCOMMA}"
43
43
for file in `find config -name "*.m4" -newer configure | sort`; do
44
44
    FLIST="${FLIST} $file"
45
45
done
46
 
if [[ x = x"$FLIST" ]]; then
 
46
if [ x = x"$FLIST" ]; then
47
47
    echo "autoconf has probably been run lately..."
48
48
else
49
49
    echo "WARNING:: The following ./configure constituents are newer than ./configure - you probably should run autoconf!"
52
52
 
53
53
STOREDPROCVERS=`awk  -f tools/awk-for-stored-proc-vers.awk  src/backend/slony1_funcs.sql`
54
54
 
55
 
if [[ x"$STOREDPROCVERS" = x"$VERDOTTED" ]]; then
 
55
if [ x"$STOREDPROCVERS" = x"$VERDOTTED" ]; then
56
56
   OK=1
57
57
   echo "Stored proc version numbers match ${VERDOTTED}"
58
58
else