Changes In Branch vNext Through [badaf4f7d9] Excluding Merge-Ins
This is equivalent to a diff from fecb8511da to badaf4f7d9
2022-03-02
| ||
20:43 | Merge various recent fixes and enhancements to the package client toolset. check-in: 372ee60877 user: mistachkin tags: trunk | |
2022-02-20
| ||
16:25 | Fix the settings file logic in two ways: 1) do not re-evaluate any settings file (via wildcard matching) that may have already been evaluated based on the list of prefixes. 2) always evaluate settings files relative to the (parent) script directory, not the current directory. check-in: eb868495e1 user: test tags: vNext | |
15:47 | Skip adding temporary package directories if they do not contain an appropriate package index file. check-in: badaf4f7d9 user: test tags: vNext | |
02:30 | Optionally allow reuse of temporary package directories. check-in: e5470474bd user: test tags: vNext | |
2021-11-11
| ||
15:23 | Pickup the platform detection changes from upstream. check-in: fecb8511da user: mistachkin tags: trunk | |
2021-08-08
| ||
00:11 | Pickup the Harpy script signing tooling changes from upstream. check-in: 7f8b164b2f user: mistachkin tags: trunk | |
Modified client/1.0/neutral/pkgd.eagle from [0aa315b515] to [3216338fb7].
︙ | |||
697 698 699 700 701 702 703 704 705 706 707 708 709 710 | 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + | return true } } else { return false } } # # NOTE: This procedure attempts to verify the OpenPGP signature file that # is associated with the specified file. The forcePgp parameter is # used to force verification attempts to be performed even when the # file does not appear to be an OpenPGP signature file. # proc maybeVerifyOpenPgpSignature { fileName forcePgp } { # # NOTE: Is this temporary package file actually just an OpenPGP # signature file? If so, skip it. # if {$forcePgp || \ [isOpenPgpSignatureFileName $fileName true]} then { # # NOTE: Attempt to verify the OpenPGP signature. If this fails, # an error is raised. # ::PackageRepository::probeForOpenPgpInstallation ::PackageRepository::openPgpMustBeInstalled if {![::PackageRepository::verifyOpenPgpSignature \ $fileName]} then { error [appendArgs \ "bad OpenPGP signature \"" $fileName \"] } } } # # NOTE: This procedure returns the auto-path for the language specified by # the language argument. An empty list is returned if the auto-path # does not exist in the target language. This procedure may raise # script errors. # proc getAutoPath { language } { |
︙ | |||
1748 1749 1750 1751 1752 1753 1754 | 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 | - + - + - + | # a package index file. The language argument must be one of the # literal strings "eagle", "tcl", or "client". The fileNames argument # must be the list of file names to be downloaded. The package name, # if one can be detected, is returned; otherwise, an empty string will # be returned. # proc guessPackageNameFromFileNames { language fileNames } { |
︙ | |||
1896 1897 1898 1899 1900 1901 1902 | 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 | - + - - - + + - - - - + - - - | # writeFile $localFileName [getPackageFile $uri] # # NOTE: Is use of OpenPGP for signature verification enabled? Also, # did we just download an OpenPGP signature file? # |
︙ | |||
2185 2186 2187 2188 2189 2190 2191 | 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 | - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | set downloadDirectories [list $persistentDirectory] } else { # # NOTE: Check each unique download directory for a package index # file. If a directory has a package index for the target # language, add to the auto-path for the target language. # |
︙ |