Overview
| Comment: | Updated to use Tcl 8.5.17 | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
3e3db8efc23b4afc05c2f5019aca5ddd | 
| User & Date: | rkeene on 2014-10-25 04:10:36 | 
| Other Links: | manifest | tags | 
Context
| 
   2014-10-25 
 | ||
| 04:10 | KitCreator 0.9.1 check-in: f5ad57800d user: rkeene tags: trunk, 0.9.1 | |
| 04:10 | Updated to use Tcl 8.5.17 check-in: 3e3db8efc2 user: rkeene tags: trunk | |
| 
   2014-09-05 
 | ||
| 15:17 | Updated nightly builds to use Tcl 8.5.16 check-in: c9f69348bd user: rkeene tags: trunk | |
Changes
Modified build/test/test from [819d936a86] to [8c6915088c].
1 2  | 1 2 3 4 5 6 7 8 9 10  | - +  | #! /bin/bash  | 
| ︙ | |||
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451  | 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469  | + + + + + + + + + + + + + + + + + +  | 
			# For KitDLL, make a note of the original name
			if [ "${kitdll}" = "1" ]; then
				echo "${createdkit}" > "${outputname}-origname"
				if [ -f "${sdk}" ]; then
					mv "${sdk}" "${outputname}-sdk.tar.gz"
					openssl sha1 "${outputname}-sdk.tar.gz" | sed 's@^.*= @@' > "${outputname}-sdk.tar.gz.sha1"
				fi
			fi
			openssl sha1 "${outputname}" | sed 's@^.*= @@' > "${outputname}.sha1"
		fi
		# Note the SHA1 has of the file
		if [ -f "${outputname}.sha1" ]; then
			echo "SHA1: $(cat "${outputname}.sha1")"
		else
			echo "SHA1: not recorded"
		fi
		if [ -f "${outputname}-sdk.tar.gz" ]; then
			if [ -f "${outputname}-sdk.tar.gz.sha1" ]; then
				echo "SDK SHA1: $(cat "${outputname}-sdk.tar.gz.sha1")"
			else
				echo "SDK SHA1: not recorded"
			fi
		fi
		# Test zip status
		if unzip -l "${outputname}" 2>&1 | grep 'boot\.tcl' >/dev/null; then
			canunzip="1"
		else
			canunzip="0"
 | 
| ︙ | 
Modified build/web/kitcreator.vfs/index.rvt from [3fb6bd8a35] to [e966c50630].
| ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25  | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27  | + +  | set kitcreator_versions($vers) $vers } set kitcreator_version_selected [lindex [lsort -dictionary [array names kitcreator_versions]] end] set kitcreator_versions(trunk) "Fossil Trunk Tip" set tcl_versions(8.5.15) 8.5.15 set tcl_versions(8.5.16) 8.5.16 set tcl_versions(8.5.17) 8.5.17 set tcl_versions(8.6.1) 8.6.1 set tcl_versions(8.6.2) 8.6.2 set tcl_versions(fossil_trunk) "Fossil Trunk Tip" set platforms(android-arm) "Android/ARM" set platforms(freebsd-amd64) "FreeBSD/amd64" set platforms(hpux-hppa64) "HP-UX/PA-RISC 2.0"  | 
| ︙ |