Differences From Artifact [3790f29011]:
- File client/pkgIndex.eagle — part of check-in [8d336a92f5] at 2016-08-15 22:11:16 on branch trunk — Add variables to package repository client to configure various parameters, including 'quiet mode' and whether or not to automatically load Tcl/Garuda and install the hook. (user: mistachkin, size: 729) [annotate] [blame] [check-ins using]
To Artifact [75bee73b20]:
- File client/1.0/neutral/pkgIndex.eagle — 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: 827) [annotate] [blame] [check-ins using]
- File client/1.0/pkgIndex.eagle — 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: 827) [annotate] [blame] [check-ins using]
- File client/pkgIndex.eagle — 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: 827) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
15 16 17 18 19 20 21 | ############################################################################### if {![package vsatisfies [package provide Tcl] 8.4]} {return} if {![package vsatisfies [package provide Eagle] 1.0]} {return} package ifneeded Eagle.Package.Repository 1.0 \ [list source [file join $dir pkgr.eagle]] | > > > | 15 16 17 18 19 20 21 22 23 24 | ############################################################################### if {![package vsatisfies [package provide Tcl] 8.4]} {return} if {![package vsatisfies [package provide Eagle] 1.0]} {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]] |