Overview
Comment: | Upgrade to tcl-duktape 0.6.1 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | cd6054335a28410d088eefc788675985aad1166a |
User & Date: | rkeene on 2019-02-03 21:02:59 |
Other Links: | manifest | tags |
Context
2019-02-03
| ||
21:04 | Add web interface for Duktape check-in: d9174308ba user: rkeene tags: trunk | |
21:02 | Upgrade to tcl-duktape 0.6.1 check-in: cd6054335a user: rkeene tags: trunk | |
2019-02-02
| ||
16:40 | Added duktape package check-in: c3ec1dad4d user: rkeene tags: trunk | |
Changes
Modified duktape/build.sh from [8fb4890a75] to [478810d2cb].
1 1 #! /usr/bin/env bash 2 2 3 3 # BuildCompatible: KitCreator 4 4 5 -version='0.6.0' 5 +version='0.6.1' 6 6 url="https://github.com/dbohdan/tcl-duktape/archive/v${version}.tar.gz" 7 -sha256='14d52c0ab6445e00217046d5a6b09406776e74fd35147003d7b9bbbcc6b40668' 7 +sha256='365be33e359be54f4e2e9208dbb20160aea50e01a274ac5a68b3e57ea05fb328' 8 8 tclpkg_initfunc='Tclduktape_Init' 9 - 10 -# tcl-duktape does not ship complete releases :-( 11 -function preconfigure() { 12 - if [ ! -e configure ]; then 13 - ./autogen.sh 14 - fi 15 - sed -i 's@Tclduktape_Init@Tclduktape@g' lib/pkgIndex.tcl.in 16 -}