Overview
Comment: | Updated to Tcllib 1.13 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 36fbce3da1a3b2c6c6e981df7d6934ad7f922774 |
User & Date: | rkeene on 2011-03-30 16:41:59 |
Other Links: | manifest | tags |
Context
2011-03-30
| ||
16:42 | Fixed bug in forcing platform check-in: 8fc5835c15 user: rkeene tags: trunk | |
16:41 | Updated to Tcllib 1.13 check-in: 36fbce3da1 user: rkeene tags: trunk | |
16:41 | Updated to sort entities on teapot index page check-in: 1e57938b27 user: rkeene tags: trunk | |
Changes
Modified server/buildpkgs/tcllib/build.sh from [55397ed974] to [9be2fc0b9c].
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
if [ "${PLATFORM}" != "tcl" ]; then
rm -rf out
exit 0
fi
VERS=1.12
SRC="src/tcllib-${VERS}.tar.gz"
SRCURL="http://sourceforge.net/projects/tcllib/files/tcllib/${VERS}/tcllib-${VERS}.tar.gz/download"
BUILDDIR="tcllib-${VERS}"
WORKDIR="${TMPDIR:-/tmp}/tcllib-$$${RANDOM}${RANDOM}${RANDOM}"
PLATDIR="$(pwd)/out/${PLATFORM}"
export VERS SRC SRCURL BUILDDIR WORKDIR PLATFORM PLATDIR
|
| |
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
if [ "${PLATFORM}" != "tcl" ]; then
rm -rf out
exit 0
fi
VERS=1.13
SRC="src/tcllib-${VERS}.tar.gz"
SRCURL="http://sourceforge.net/projects/tcllib/files/tcllib/${VERS}/tcllib-${VERS}.tar.gz/download"
BUILDDIR="tcllib-${VERS}"
WORKDIR="${TMPDIR:-/tmp}/tcllib-$$${RANDOM}${RANDOM}${RANDOM}"
PLATDIR="$(pwd)/out/${PLATFORM}"
export VERS SRC SRCURL BUILDDIR WORKDIR PLATFORM PLATDIR
|