X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=mkunxarc.sh;h=34aee8b234f3c37cf896e6deb7a071a1306c45e1;hb=refs%2Fheads%2F0.68%2Bkerberos-fix;hp=b15e2f4538ab57cd2075f88984800f2fe5513094;hpb=1dff23a2143b7a6ce1084a6308569d14c2826240;p=PuTTY.git diff --git a/mkunxarc.sh b/mkunxarc.sh index b15e2f45..34aee8b2 100755 --- a/mkunxarc.sh +++ b/mkunxarc.sh @@ -1,49 +1,15 @@ -#!/bin/bash +#!/bin/sh # Build a Unix source distribution from the PuTTY CVS area. # -# Pass an argument of the form `2004-02-08' to have the archive -# tagged as a development snapshot; of the form `0.54' to have it -# tagged as a release; of the form `r1234' to have it tagged as a -# custom build. Otherwise it'll be tagged as unidentified. +# Expects the following arguments: +# - the version number to write into configure.ac +# - the suffix to put on the Unix source tarball +# - the options to put on the 'make' command line for the docs -case "$1" in - ????-??-??) - case "$1" in *[!-0-9]*) echo "Malformed snapshot ID '$1'" >&2;exit 1;;esac - autoconfver="`cat LATEST.VER`-$1" - arcsuffix="-$autoconfver" - ver="-DSNAPSHOT=$1" - docver= - ;; - r*) - autoconfver="$1" - arcsuffix="-$autoconfver" - ver="-DSVN_REV=${1#r}" - docver= - ;; - '') - autoconfver="X.XX" # got to put something in here! - arcsuffix= - ver= - docver= - ;; - *pre) - set -- "${1%pre}" "$2" - case "$1" in *[!.0-9a-z~]*) echo "Malformed prerelease ID '$1'">&2;exit 1;;esac - case "$2" in *[!.0-9a-z~]*) echo "Malformed prerelease revision '$1'">&2;exit 1;;esac - autoconfver="$1~pre$2" - arcsuffix="-$autoconfver" - ver="-DPRERELEASE=$1 -DSVN_REV=$2" - docver="VERSION=\"PuTTY prerelease $1:r$2\"" - ;; - *) - case "$1" in *[!.0-9a-z~]*) echo "Malformed release ID '$1'">&2;exit 1;;esac - autoconfver="$1" - arcsuffix="-$autoconfver" - ver="-DRELEASE=$1" - docver="VERSION=\"PuTTY release $1\"" - ;; -esac +autoconfver="$1" +arcsuffix="$2" +docver="$3" perl mkfiles.pl (cd doc && make -s ${docver:+"$docver"}) @@ -65,12 +31,7 @@ find . -name uxarc -prune -o \ -name '*.zip' -prune -o \ -name '*.tar.gz' -prune -o \ -type f -exec ln -s $PWD/{} uxarc/$arcname/{} \; -if test "x$ver" != "x"; then - (cd uxarc/$arcname; - md5sum `find . -name '*.[ch]' -print` > manifest; - echo "$ver" > version.def) -fi -sed "s/^AC_INIT(putty,.*/AC_INIT(putty, $autoconfver)/" unix/configure.ac > uxarc/$arcname/unix/configure.ac +sed "s/^AC_INIT(putty,.*/AC_INIT(putty, $autoconfver)/" configure.ac > uxarc/$arcname/configure.ac (cd uxarc/$arcname && sh mkauto.sh) 2>errors || { cat errors >&2; exit 1; } tar -C uxarc -chzof $arcname.tar.gz $arcname