Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added the various template filesystems to the package index. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f576d6ecd16149fe92efa73008021338 |
User & Date: | andreas_kupries 2012-12-12 21:35:21.000 |
Context
2012-12-12
| ||
21:41 | * library/template/collatevfs.tcl: Added missing provide command. * library/template/templatevfs.tcl: Fixed missing default status 0 in * pkgIndex.tcl.in: overriden exit command. Bumped to 1.5.5 check-in: a54d27c344 user: andreas_kupries tags: trunk | |
21:35 | Added the various template filesystems to the package index. check-in: f576d6ecd1 user: andreas_kupries tags: trunk | |
21:32 | Bumped vfs::zip to 1.0.4, long overdue. check-in: 53e8260cfa user: andreas_kupries tags: trunk | |
Changes
Changes to ChangeLog.
1 2 3 4 5 6 7 8 | 2012-12-12 Andreas Kupries <[email protected]> * pkgIndex.tcl.in: Long overdue bump of vfs::zip to * library/zipvfs.tcl: 1.0.4. (Since 2009-02-07 or earlier). * configure.in: Long overdue bump to version 1.4.2. * configure: (1.4.1 was in 2009-02-07). Regenerated. Please bump the patchlevel for any future bug fixes, | > > > | 1 2 3 4 5 6 7 8 9 10 11 | 2012-12-12 Andreas Kupries <[email protected]> * pkgIndex.tcl.in: Added the various template filesystems to the index. * pkgIndex.tcl.in: Long overdue bump of vfs::zip to * library/zipvfs.tcl: 1.0.4. (Since 2009-02-07 or earlier). * configure.in: Long overdue bump to version 1.4.2. * configure: (1.4.1 was in 2009-02-07). Regenerated. Please bump the patchlevel for any future bug fixes, |
︙ | ︙ |
Changes to pkgIndex.tcl.in.
︙ | ︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 | package ifneeded vfs::tk 0.5 [list source [file join $dir tkvfs.tcl]] # # Virtual filesystems based on the template vfs: # if {[lsearch -exact $::auto_path [file join $dir template]] == -1} { lappend ::auto_path [file join $dir template] } package ifneeded vfs::template 1.5.4 \ [list source [file join $dir template templatevfs.tcl]] # # Helpers # package ifneeded fileutil::globfind 1.5 \ [list source [file join $dir template globfind.tcl]] | > > > > > > > > > > > > | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | package ifneeded vfs::tk 0.5 [list source [file join $dir tkvfs.tcl]] # # Virtual filesystems based on the template vfs: # if {[lsearch -exact $::auto_path [file join $dir template]] == -1} { lappend ::auto_path [file join $dir template] } package ifneeded vfs::template::chroot 1.5.2 \ [list source [file join $dir template chrootvfs.tcl]] package ifneeded vfs::template::collate 1.5.3 \ [list source [file join $dir template collatevfs.tcl]] package ifneeded vfs::template::version 1.5.2 \ [list source [file join $dir template versionvfs.tcl]] package ifneeded vfs::template::version::delta 1.5.2 \ [list source [file join $dir template deltavfs.tcl]] package ifneeded vfs::template::fish 1.5.2 \ [list source [file join $dir template fishvfs.tcl]] package ifneeded vfs::template::quota 1.5.2 \ [list source [file join $dir template quotavfs.tcl]] package ifneeded vfs::template 1.5.4 \ [list source [file join $dir template templatevfs.tcl]] # # Helpers # package ifneeded fileutil::globfind 1.5 \ [list source [file join $dir template globfind.tcl]] |
︙ | ︙ |