Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Pickup further release archive verification tool changes from upstream. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2ada6a698f28d0d84551abf117827099 |
User & Date: | mistachkin 2017-10-10 05:53:04.003 |
Context
2017-10-10
| ||
21:40 | Refactor how logging flags and exception handling are performed. check-in: 6fbb8f60e9 user: mistachkin tags: trunk | |
05:53 | Pickup further release archive verification tool changes from upstream. check-in: 2ada6a698f user: mistachkin tags: trunk | |
2017-10-09
| ||
01:17 | Fix spacing issues. check-in: aa8f3d094c user: mistachkin tags: trunk | |
Changes
Changes to Setup/verify.eagle.
︙ | ︙ | |||
216 217 218 219 220 221 222 | # HACK: Special hack to allow "CLRvX" to appear in the # manifest file names, part 1, the vanishing. # set manifest [string map \ [list CLRv2 CLRvTWO CLRv4 CLRvFOUR] $manifest] # | | | | | | | | | | | | 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | # HACK: Special hack to allow "CLRvX" to appear in the # manifest file names, part 1, the vanishing. # set manifest [string map \ [list CLRv2 CLRvTWO CLRv4 CLRvFOUR] $manifest] # # HACK: Special hack to allow "EF6", "Win32", "x64", and # "x86" to appear in the manifest file names, part 1, # the vanishing. # set manifest [string map \ [list EF6 EF-SIX Win32 Win-THIRTYTWO x64 x-SIXTYFOUR \ x86 x-EIGHTYSIX] $manifest] # # HACK: Attempt to match and remove sub-strings from the # manifest file name that look like a version number # in the format "<major>.<minor>.<build>.<revision>" # and/or a date/time string matching the format # "YYYY-MM-DD-NN" (where the NN portion is a generic # incrementing sequence number). # regsub -- {\d+\.\d+\.\d+\.\d+} $manifest {} manifest regsub -- {\d{4}-\d{2}-\d{2}-\d{2}} $manifest {} manifest # # HACK: Special hack to allow "CLRvX" to appear in the # manifest file names, part 2, the return. # set manifest [string map \ [list CLRvTWO CLRv2 CLRvFOUR CLRv4] $manifest] # # HACK: Special hack to allow "EF6", "Win32", "x64", and # "x86" to appear in the manifest file names, part 2, # the return. # set manifest [string map \ [list EF-SIX EF6 Win-THIRTYTWO Win32 x-SIXTYFOUR x64 \ x-EIGHTYSIX x86] $manifest] # # HACK: Fixup manifest file names that correspond to the # NuGet packages for SymbolSource. # if {[regexp -- {[/\\]SymbolSource[/\\]} $archiveFileName]} then { set manifest [string map [list .. .Source..] $manifest] |
︙ | ︙ |