summaryrefslogtreecommitdiffstats
path: root/source/d/clisp/source.download
blob: 06bc8c9b29f28d8b9627d41c1b82d3acf44e612f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Pull the latest clisp sources from the upstream mercurial repository:
rm -rf clisp-2.49
hg clone http://hg.code.sf.net/p/clisp/clisp clisp-2.49
# Determine date and changeset for tarball labeling:
DATE="$(date -d "$( cd clisp-2.49 ; hg parent | grep date: | cut -b 14- | cut -f 1 -d +)" +"%Y%m%d")"
CHANGESET="$( cd clisp-2.49 ; hg parent | grep changeset: | cut -f 3 -d :)"
# Don't package .hg:
rm -fr clisp-2.49/.hg*
# Create tarball:
mv clisp-2.49 clisp-2.49.${DATE}.${CHANGESET}  
tar cf clisp-2.49.${DATE}.${CHANGESET}.tar clisp-2.49.${DATE}.${CHANGESET}
plzip -9 -n 6 clisp-2.49.${DATE}.${CHANGESET}.tar
# Clean up:
rm -rf clisp-2.49.${DATE}.${CHANGESET}