Differences From Artifact [f9bf6ed786]:
- File client/1.0/neutral/pkgIndex.tcl — part of check-in [3f6a616e8a] at 2016-10-27 23:21:40 on branch trunk — Add initial support for platform-specific packages. (user: mistachkin, size: 824) [annotate] [blame] [check-ins using]
- File client/1.0/pkgIndex.tcl — part of check-in [7e7cba65fa] at 2016-08-19 02:55:53 on branch trunk — Move all package client files into a '1.0' sub-directory. (user: mistachkin, size: 824) [annotate] [blame] [check-ins using]
- File client/pkgIndex.tcl — part of check-in [878f889075] at 2016-08-16 03:10:41 on branch trunk — Add initial draft of the package downloader tool. (user: mistachkin, size: 824) [annotate] [blame] [check-ins using]
To Artifact [5bcb8afccd]:
- File client/1.0/neutral/pkgIndex.tcl — part of check-in [2def651bb5] at 2016-12-23 23:14:33 on branch trunk — Make sure closing the Tk window exits the vwait. Refactor uploader client into package script and a tool script. (user: mistachkin, size: 920) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
18 19 20 21 22 23 24 | if {[string length [package provide Eagle]] > 0} then {return} package ifneeded Eagle.Package.Repository 1.0 \ [list source [file join $dir pkgr.eagle]] package ifneeded Eagle.Package.Downloader 1.0 \ [list source [file join $dir pkgd.eagle]] | > > > | 18 19 20 21 22 23 24 25 26 27 | if {[string length [package provide Eagle]] > 0} then {return} package ifneeded Eagle.Package.Repository 1.0 \ [list source [file join $dir pkgr.eagle]] package ifneeded Eagle.Package.Downloader 1.0 \ [list source [file join $dir pkgd.eagle]] package ifneeded Eagle.Package.Uploader 1.0 \ [list source [file join $dir pkgu.eagle]] |