mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
4d8782e74f
I've shifted away from using the SVN revision number as a monotonic version identifier (replacing it in the Windows version resource with a count of days since an arbitrary epoch), and I've removed all uses of SVN keyword expansion (replacing them with version information written out by Buildscr). While I'm at it, I've done a major rewrite of the affected code which centralises all the computation of the assorted version numbers and strings into Buildscr, so that they're all more or less alongside each other rather than scattered across multiple source files. I've also retired the MD5-based manifest file system. A long time ago, it seemed like a good idea to arrange that binaries of PuTTY would automatically cease to identify themselves as a particular upstream version number if any changes were made to the source code, so that if someone made a local tweak and distributed the result then I wouldn't get blamed for the results. Since then I've decided the whole idea is more trouble than it's worth, so now distribution tarballs will have version information baked in and people can just cope with that. [originally from svn r10262]
39 lines
1.1 KiB
Bash
Executable File
39 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build a Unix source distribution from the PuTTY CVS area.
|
|
#
|
|
# 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
|
|
|
|
autoconfver="$1"
|
|
arcsuffix="$2"
|
|
docver="$3"
|
|
|
|
perl mkfiles.pl
|
|
(cd doc && make -s ${docver:+"$docver"})
|
|
|
|
relver=`cat LATEST.VER`
|
|
arcname="putty$arcsuffix"
|
|
mkdir uxarc
|
|
mkdir uxarc/$arcname
|
|
find . -name uxarc -prune -o \
|
|
-name CVS -prune -o \
|
|
-name .svn -prune -o \
|
|
-name . -o \
|
|
-type d -exec mkdir uxarc/$arcname/{} \;
|
|
find . -name uxarc -prune -o \
|
|
-name CVS -prune -o \
|
|
-name .cvsignore -prune -o \
|
|
-name .svn -prune -o \
|
|
-name configure.ac -prune -o \
|
|
-name '*.zip' -prune -o \
|
|
-name '*.tar.gz' -prune -o \
|
|
-type f -exec ln -s $PWD/{} uxarc/$arcname/{} \;
|
|
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
|
|
rm -rf uxarc
|