Overview
Comment: | Updated to pull "itcl" from core.tcl.tk |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
76acd1bd6b079c39213e6ac3688a10d6 |
User & Date: | rkeene on 2011-05-01 15:17:09 |
Other Links: | manifest | tags |
Context
2011-05-01
| ||
15:19 | KitCreator 0.5.4 check-in: e8a7740c04 user: rkeene tags: trunk, 0.5.4 | |
15:17 | Updated to pull "itcl" from core.tcl.tk check-in: 76acd1bd6b user: rkeene tags: trunk | |
2011-04-15
| ||
20:38 |
Updated to pull "tclconfig" and "thread" from core.tcl.tk
Updated to download CVS/Fossil into a temporary directory check-in: f892d49db3 user: rkeene tags: trunk | |
Changes
Modified tcl/build.sh from [f5d1586cab] to [08b84fc697].
︙ | ︙ | |||
39 40 41 42 43 44 45 | workdir="tmp-$$${RANDOM}${RANDOM}${RANDOM}" rm -rf "${workdir}" mkdir "${workdir}" || exit 1 cd "${workdir}" || exit 1 wget -O "tmp-tcl.tar.gz" "http://core.tcl.tk/tcl/tarball/tcl-fossil.tar.gz?uuid=${CVSTAG}" || rm -f 'tmp-tcl.tar.gz' | | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | workdir="tmp-$$${RANDOM}${RANDOM}${RANDOM}" rm -rf "${workdir}" mkdir "${workdir}" || exit 1 cd "${workdir}" || exit 1 wget -O "tmp-tcl.tar.gz" "http://core.tcl.tk/tcl/tarball/tcl-fossil.tar.gz?uuid=${CVSTAG}" || rm -f 'tmp-tcl.tar.gz' wget -O "tmp-itcl.tar.gz" "http://core.tcl.tk/itcl/tarball/itcl-fossil.tar.gz?uuid=${CVSTAG}" || rm -f 'tmp-itcl.tar.gz' wget -O "tmp-thread.tar.gz" "http://core.tcl.tk/thread/tarball/thread-fossil.tar.gz?uuid=${CVSTAG}" || rm -f "tmp-thread.tar.gz" wget -O "tmp-tclconfig.tar.gz" "http://core.tcl.tk/tclconfig/tarball/tclconfig-fossil.tar.gz?uuid=${CVSTAG}" || rm -f "tmp-tclconfig.tar.gz" gzip -dc 'tmp-tcl.tar.gz' | tar -xf - gzip -dc "tmp-itcl.tar.gz" | tar -xf - gzip -dc "tmp-thread.tar.gz" | tar -xf - gzip -dc "tmp-tclconfig.tar.gz" | tar -xf - |
︙ | ︙ |