Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updated recipe for release management and packager for Windows binaries to include Postgres |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.0b13 |
Files: | files | file ages | folders |
SHA1: |
e8ac92020505a8b497fbd0ef53f8ac40 |
User & Date: | 200002852 2009-09-29 14:56:32.000 |
Context
2010-12-02
| ||
01:16 | open a branch for Tcl 8.5 compatibility Closed-Leaf check-in: 06098f3881 user: kennykb tags: tcl8.5-branch | |
2009-10-27
| ||
01:06 |
* README: Advanced version number to 1.0b14. * configure.in: * library/tdbcsqlite3.tcl: * configure: autoconf 2.59 * tests/tdbcsqlite3.test: Added test cases (known bugs) for duplicate column names in results. * doc/tdbcsqlite3.n: Added a BUGS section documenting the known problem with duplicate column names.check-in: 000071b07b user: 200002852 tags: trunk | |
2009-09-29
| ||
14:56 | Updated recipe for release management and packager for Windows binaries to include Postgres check-in: e8ac920205 user: 200002852 tags: trunk, 1.0b13 | |
14:44 | Finished advancing release number to 1.0b13. Upgraded tdbcodbc for better portability to legacy drivers. Revised tests so that separate drivers test suites have separate environment variables, and rationalized DRIVER= selection on the ODBC tests. check-in: f4b760f215 user: 200002852 tags: trunk | |
Changes
Changes to MakingReleases.txt.
︙ | |||
55 56 57 58 59 60 61 | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | - + | Result is a /tmp/dist/tdbc-${VERSION}-win32/ directory that can be zipped and uploaded to SF (7) Make the HTML manual tclsh86 tdbc/tools/tdbc-man2html.tcl \ --srcdir=. --htmldir=/tmp/dist/tdbc${VERSION}-doc \ |
︙ |
Changes to makeWinBinaries.tcl.
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | - + + | #!/usr/bin/env tclsh8.6 $0 "$@" set ver [package require tdbc] set instdir [file normalize [file join $::tcl_library ..]] set pathlist tdbc${ver} lappend pathlist {*}[glob -types d \ -directory $instdir \ -tails 1 \ {tdbc[a-z]*}] |
︙ |