Overview
Comment: | Updated to pull "CVS" updates from Fossil (location and method may change in the future) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | a0fa3aeee4334e45d93369da6a416d007cd92a26 |
User & Date: | rkeene on 2011-02-08 07:47:43 |
Other Links: | manifest | tags |
Context
2011-02-27
| ||
20:26 |
Updated to emit TclVFS faillure if "make install" fails.
Updated to log which Tclkit is being used to install the VFS check-in: 8c0ee91103 user: rkeene tags: trunk | |
2011-02-08
| ||
07:47 | Updated to pull "CVS" updates from Fossil (location and method may change in the future) check-in: a0fa3aeee4 user: rkeene tags: trunk | |
2010-11-11
| ||
17:16 | Added workaround for building bug in Tk on FreeBSD check-in: 612f995831 user: rkeene tags: trunk | |
Changes
Modified tcl/build.sh from [805b596118] to [178995da06].
24 24 mkdir 'build' 'out' 'inst' || exit 1 25 25 26 26 if [ ! -f "${SRC}" ]; then 27 27 mkdir 'src' >/dev/null 2>/dev/null 28 28 29 29 if echo "${TCLVERS}" | grep '^cvs_' >/dev/null; then 30 30 CVSTAG=$(echo "${TCLVERS}" | sed 's/^cvs_//g') 31 + if [ "${CVSTAG}" = "HEAD" ]; then 32 + CVSTAG="trunk" 33 + fi 31 34 export CVSTAG 32 35 33 36 ( 34 37 cd src || exit 1 35 38 36 - cvs -z3 -d:pserver:anonymous@tcl.cvs.sourceforge.net:/cvsroot/tcl co -r "${CVSTAG}" -P tcl 39 + rm -f "tmp-tcl.zip" 40 + wget -O "tmp-tcl.zip" "http://tcltk.oc9.org/fossils/tcl/zip/unnamed-${CVSTAG}.zip?uuid=${CVSTAG}" || rm -f "tmp-tcl.zip" 41 + unzip "tmp-tcl.zip" 42 + rm -f "tmp-tcl.zip" 37 43 38 - mv tcl "tcl${TCLVERS}" 44 + rm -rf "tcl${TCLVERS}" 45 + mv "unnamed-${CVSTAG}" "tcl${TCLVERS}" 46 + 47 + if [ -d "tcl${TCLVERS}" ]; then 48 + find "tcl${TCLVERS}" -name configure -type f | xargs chmod +x 39 49 40 50 tar -cf - "tcl${TCLVERS}" | gzip -c > "../${SRC}" 51 + fi 41 52 ) 42 53 else 43 54 rm -f "${SRC}.tmp" 44 55 wget -O "${SRC}.tmp" "${SRCURL}" || exit 1 45 56 mv "${SRC}.tmp" "${SRC}" 46 57 fi 47 58 fi
Modified tk/build.sh from [394ddd8947] to [64c5520e3d].
31 31 32 32 33 33 if [ ! -f "${SRC}" ]; then 34 34 mkdir 'src' >/dev/null 2>/dev/null 35 35 36 36 if echo "${TCLVERS}" | grep '^cvs_' >/dev/null; then 37 37 CVSTAG=$(echo "${TCLVERS}" | sed 's/^cvs_//g') 38 + if [ "${CVSTAG}" = "HEAD" ]; then 39 + CVSTAG="trunk" 40 + fi 38 41 export CVSTAG 39 42 40 43 ( 41 44 cd src || exit 1 42 45 43 - cvs -z3 -d:pserver:anonymous@tcl.cvs.sourceforge.net:/cvsroot/tktoolkit co -r "${CVSTAG}" -P tk 46 + rm -f "tmp-tk.zip" 47 + wget -O "tmp-tk.zip" "http://tcltk.oc9.org/fossils/tk/zip/unnamed-${CVSTAG}.zip?uuid=${CVSTAG}" || rm -f "tmp-tk.zip" 48 + unzip "tmp-tk.zip" 49 + rm -f "tmp-tk.zip" 44 50 45 - mv tk "tk${TCLVERS}" 51 + rm -rf "tk${TCLVERS}" 52 + mv "unnamed-${CVSTAG}" "tk${TCLVERS}" 53 + 54 + if [ -d "tk${TCLVERS}" ]; then 55 + find "tk${TCLVERS}" -name configure -type f | xargs chmod +x 46 56 47 57 tar -cf - "tk${TCLVERS}" | gzip -c > "../${SRC}" 58 + fi 48 59 ) 49 60 else 50 61 rm -f "${SRC}.tmp" 51 62 wget -O "${SRC}.tmp" "${SRCURL}" || exit 1 52 63 mv "${SRC}.tmp" "${SRC}" 53 64 fi 54 65 fi