Differences From Artifact [da9e424f20]:
- File client/1.0/neutral/pkgd.eagle — part of check-in [884a589665] at 2016-11-02 05:02:40 on branch trunk — The 'Package Downloader Client' package cannot use the 'isEagle' procedure until the 'Package Repository Client' package is loaded. Add the 'pkgr_setup.eagle' tool to download and import the Package Signing Key. (user: mistachkin, size: 54397) [annotate] [blame] [check-ins using]
To Artifact [5d8da8ea5d]:
- File client/1.0/neutral/pkgd.eagle — part of check-in [e6dad2a80e] at 2016-11-03 19:05:27 on branch trunk — Add support for detecting the OpenPGP installation and adding it to the PATH if necessary. (user: mistachkin, size: 54453) [annotate] [blame] [check-ins using]
︙ | |||
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 | 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 | + | # did we just download an OpenPGP signature file? # if {$usePgp && [isOpenPgpSignatureFileName $localFileName true]} then { # # NOTE: Attempt to verify the OpenPGP signature. If this fails, # an error is raised. # ::PackageRepository::probeForOpenPgpInstallation ::PackageRepository::openPgpMustBeInstalled if {![::PackageRepository::verifyOpenPgpSignature $localFileName]} then { error [appendArgs \ "bad OpenPGP signature \"" $localFileName \"] } } |
︙ |