Comment: | Run the saved 'package unknown' handler first, check its results, and skip the repository handler if appropriate. Allow the package persistence root directory to be overridden and verified easily. Procedure naming cleanup for OpenPGP. Attempt to avoid adding redundant directories to the auto-path. Modify the master package index when the *target* language is Tcl, not the current language. Upon loading the package downloader package, add the package persistence root directory to the auto-path if it resides outside of all auto-path directories. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ff305e42113b75782e64ec9577443055 |
User & Date: | mistachkin on 2016-10-18 05:47:59 |
Other Links: | manifest | tags |
2016-10-18
| ||
06:10 | Backout some changes from the previous check-in: if the master package index file for native Tcl already exists, its contents are assumed to be correct. check-in: 94a31bb430 user: mistachkin tags: trunk | |
05:47 | Run the saved 'package unknown' handler first, check its results, and skip the repository handler if appropriate. Allow the package persistence root directory to be overridden and verified easily. Procedure naming cleanup for OpenPGP. Attempt to avoid adding redundant directories to the auto-path. Modify the master package index when the *target* language is Tcl, not the current language. Upon loading the package downloader package, add the package persistence root directory to the auto-path if it resides outside of all auto-path directories. check-in: ff305e4211 user: mistachkin tags: trunk | |
2016-10-17
| ||
22:48 | Add more (optional) verbosity to the URI downloading procedure. check-in: dbe5f9fb75 user: mistachkin tags: trunk | |
Modified client/1.0/pkgd.eagle from [2ca5ec045e] to [3ae0666b79].
︙ | |||
172 173 174 175 176 177 178 | 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | + - - - + + + + + + + + + + + + + - - + + - - - - - - + - + + + + + - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + | # # NOTE: This procedure returns the root directory where any packages that # are downloaded should be saved to permanent storage for subsequent # use. There are no arguments. # proc getPersistentRootDirectory {} { global env |
︙ | |||
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 | + + + - + - + + | } eval lappend pkgd(dirs) \ [glob -nocomplain -types {d} [file join $pkgd(dir) *]] } set dir $pkgd(savedDir); unset -nocomplain pkgd ## <MASTER_PACKAGE_INDEX> ## }]] return true } # # NOTE: This procedure returns non-zero if the specified file seems to be # an OpenPGP signature file. The fileName argument is the name of # the file to check, which may or may not exist. The nameOnly # argument should be non-zero to ignore the contents of the file. # |
︙ | |||
291 292 293 294 295 296 297 | 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | return false } set extension [file extension $fileName] if {$extension eq ".harpy"} then { if {!$nameOnly && [file exists $fileName]} then { |
︙ | |||
347 348 349 350 351 352 353 354 355 356 357 358 359 360 | 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | lappend ::auto_path $directory } } } else { error "unsupported language, no idea how to modify auto-path" } } # # NOTE: This procedure adds a directory to the auto-path of the specified # language (i.e. native Tcl or Eagle). The directory will not be # added if it is already present. The language argument must be the # literal string "eagle" or the literal string "tcl". The directory # argument is the fully qualified path for the directory to add to # the auto-path. The directory will not be added if it falls under # a directory already in the auto-path. # proc maybeAddToAutoPath { language directory } { # # NOTE: Verify that the directory to be added is valid and exists. If # not, do nothing. # if {[string length $directory] == 0 || \ ![file isdirectory $directory]} then { return false } # # NOTE: Normalize the specified directory. This is necessary so that # we can compare apples-to-apples within the auto-path. # set directory [file normalize $directory] set directoryLength [string length $directory] # # NOTE: Query the auto-path for the target language. # set autoPath [getAutoPath $language] # # NOTE: Check each directory in the auto-path to see if the specified # directory is already underneath it. # foreach autoDirectory $autoPath { # # NOTE: Normalize the auto-path directory. This is necessary so # that we can compare apples-to-apples with the specified # directory. # set autoDirectory [file normalize $autoDirectory] set autoDirectoryLength [string length $autoDirectory] # # NOTE: Prefix match is impossible if the length of the specified # directory is less than the length of this directory in the # auto-path. # if {$directoryLength < $autoDirectoryLength} then { continue } # # NOTE: If the initial portion of the specified directory is the # same as this directory in the auto-path, it must reside # underneath it. In that case, there is no need to modify # the auto-path, bail out now. # set last [expr {$autoDirectoryLength - 1}] if {[string range $directory 0 $last] eq $autoDirectory} then { return false } } # # NOTE: At this point, it is pretty safe to assume that the specified # directory is not in the auto-path, nor underneath a directory # within the auto-path. # addToAutoPath $language $directory return true } # # NOTE: This procedure verifies the combination of language and version # specified by the caller. The language argument must be one of the # literal strings "eagle", "tcl", or "client". The version argument # must be one of the literal strings "8.4", "8.5", or "8.6" when the # language is "tcl" -OR- the literal string "1.0" when the language |
︙ | |||
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 | 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 | + + | # directory on the package file server and may be an empty string. The # usePgp argument should be non-zero when an OpenPGP signature file # needs to be downloaded and verified for the downloaded file. # # <public> proc checkForHigherVersion { language version packageName usePgp } { variable clientDirectory variable persistentRootDirectory variable temporaryRootDirectory verifyLanguageAndVersion $language $version isClient set temporaryDirectory [file join \ $temporaryRootDirectory [appendArgs \ pkgd_ver_ [::PackageRepository::getUniqueSuffix]]] if {$isClient} then { set persistentDirectory $clientDirectory } else { verifyPersistentRootDirectory set persistentDirectory $persistentRootDirectory } set fileName [file join $packageName VERSION] set downloadFileName [file join $temporaryDirectory $fileName] file mkdir [file dirname $downloadFileName] |
︙ | |||
669 670 671 672 673 674 675 | 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 | - + - + - + | # writeFile $localFileName [getPackageFile $uri] # # NOTE: Is use of OpenPGP for signature verification enabled? Also, # did we just download an OpenPGP signature file? # |
︙ | |||
716 717 718 719 720 721 722 723 724 725 726 727 728 729 | 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 | + | set temporaryDirectory [file join \ $temporaryRootDirectory [appendArgs \ pkgd_lib_ [::PackageRepository::getUniqueSuffix]]] if {$isClient} then { set persistentDirectory $clientDirectory } else { verifyPersistentRootDirectory set persistentDirectory $persistentRootDirectory } set downloadedFileNames [list] foreach fileName $fileNames { if {[string length $fileName] == 0 || \ |
︙ | |||
758 759 760 761 762 763 764 | 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 | - + | file mkdir [file dirname $downloadFileName] downloadOneFile $language $version $fileName $downloadFileName $usePgp lappend downloadedFileNames [list \ $fileNameOnly $directory(temporary) $directory(persistent)] |
︙ | |||
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 | 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + + + - - - - - - + + + + | if {$persistent || $viaInstall} then { set fileNameOnly [lindex $downloadedFileName 0] set directory(persistent) [lindex $downloadedFileName 2] file mkdir $directory(persistent) set command [list file copy] # # NOTE: When updating the package repository client files, always # use the -force option to overwrite existing files. # if {$isClient} then { lappend command -force } lappend command -- lappend command [file join $directory(temporary) $fileNameOnly] lappend command [file join $directory(persistent) $fileNameOnly] eval $command lappend downloadDirectories $directory(persistent) } else { lappend downloadDirectories $directory(temporary) } } # # NOTE: Does the package need to be persisted locally? This can be set # via the direct caller or via the installer tool. # set addPersistentDirectoryToAutoPath false if {$persistent || $viaInstall} then { # # NOTE: In Eagle, a slightly different command is required to delete # an entire directory tree. # if {[isEagle]} then { file delete -recursive -- $temporaryDirectory } else { file delete -force -- $temporaryDirectory } # # NOTE: When dealing with packages for native Tcl, modify the master # package index. # if {$language eq "tcl"} then { set addPersistentDirectoryToAutoPath [maybeModifyMasterTclPackageIndex] } } # # NOTE: Sort the list of directories that downloaded files were written # to, removing any duplicates in the process. # set downloadDirectories [lsort -unique $downloadDirectories] if {$useAutoPath} then { # # NOTE: The auto-path, for whatever language this package belongs to, # needs to be modified. # if {$addPersistentDirectoryToAutoPath} then { # # NOTE: The downloaded package was persisted -AND- will be handled # by the master package index; therefore, just make sure the # package persistence root directory is in the auto-path and # then return only that directory in the result. # maybeAddToAutoPath $language $persistentDirectory 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. # set packageIndexFileName [getPackageIndexFileName $language] if {[string length $packageIndexFileName] > 0} then { |
︙ | |||
840 841 842 843 844 845 846 847 848 849 850 851 852 853 | 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 | + + + + + + + + + + | ::PackageRepository::maybeReadSettingsFile [info script] # # NOTE: Setup the variables, within this namespace, used by this script. # setupDownloadVars [info script] # # NOTE: If necessary, add the package persistence root directory to the # auto-path for the current language. This will only be done if # it falls outside of the existing auto-path. # variable persistentRootDirectory maybeAddToAutoPath [expr {[isEagle] ? "eagle" : "tcl"}] \ $persistentRootDirectory # # NOTE: Provide the package to the interpreter. # package provide Eagle.Package.Downloader \ [expr {[isEagle] ? [info engine PatchLevel] : "1.0"}] } |
Modified client/1.0/pkgd.eagle.asc from [87fccf75b1] to [5fa4fd1762].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - - - - - - - - - - - - - + + + + + + + + + + + + + | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository |
Modified client/1.0/pkgd.eagle.harpy from [453a1ef9c5] to [85f862bbf0].
︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | THE ASSOCIATED SOFTWARE MAY NOT WORK PROPERLY IF THIS FILE IS ALTERED. --> <Certificate xmlns="https://eagle.to/2011/harpy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Protocol>None</Protocol> <Vendor>Mistachkin Systems</Vendor> |
Modified client/1.0/pkgd.eagle.harpy.asc from [fc3f08128b] to [8faad96846].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - - - - - - - - - - - - - + + + + + + + + + + + + + | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository |
Modified client/1.0/pkgd.settings.mistachkin.eagle from [56397e71db] to [586ea524a0].
︙ | |||
11 12 13 14 15 16 17 | 11 12 13 14 15 16 17 18 | + | # this file, and for a DISCLAIMER OF ALL WARRANTIES. # # RCS: @(#) $Id: $ # ############################################################################### variable quiet false variable persistentRootDirectory [file join $::env(TEMP) pkgd_override] |
Modified client/1.0/pkgd.settings.mistachkin.eagle.harpy from [1f57a9339e] to [0c8a4f3f6a].
︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | THE ASSOCIATED SOFTWARE MAY NOT WORK PROPERLY IF THIS FILE IS ALTERED. --> <Certificate xmlns="https://eagle.to/2011/harpy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Protocol>None</Protocol> <Vendor>Mistachkin Systems</Vendor> |
Modified client/1.0/pkgr.eagle from [2dae113b30] to [c59f9c8fa4].
︙ | |||
132 133 134 135 136 137 138 | 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | - + | 2 {set codeString return} 3 {set codeString break} 4 {set codeString continue} default {set codeString [appendArgs unknown( $code )]} } if {[string length $result] > 0} then { |
︙ | |||
200 201 202 203 204 205 206 | 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | - + | # # NOTE: This procedure returns non-zero if the specified string value # looks like an OpenPGP signature. The value argument is the string # to check. The value 27 used within this procedure is the length # of the literal string "-----END PGP SIGNATURE-----". # # <public> |
︙ | |||
280 281 282 283 284 285 286 | 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | - - + + - + - + | # in the specified (named) file. Non-zero is only returned if the # OpenPGP signature is verified successfully. A script error should # not be raised by this procedure. The fileName argument must be # the fully qualified path and file name of the OpenPGP signature # file to verify. # # <public> |
︙ | |||
1155 1156 1157 1158 1159 1160 1161 | 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 | - + | [namespace current] ::getFileTempName]]] eagle [list proc $newProcName(3) {} [info body [appendArgs \ [namespace current] ::tclMustBeReady]]] return [eagle $script(outer)] } |
︙ | |||
1184 1185 1186 1187 1188 1189 1190 | 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 | - + - + | writeFile $fileName(2) $metadata(certificate) } # # NOTE: Attempt to verify the OpenPGP signature for the package # script. # |
︙ | |||
1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 | 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | } } } } else { error "unsupported script certificate" } } # # NOTE: This procedure returns non-zero if the specified package appears to # be present. The package argument is the name of the package being # sought, it cannot be an empty string. The version argument must be # a specific version -OR- a package specification that conforms to TIP # #268. # proc isPackagePresent { package version } { set command [list package present $package] if {[string length $version] > 0} then {lappend command $version} if {[set code [catch $command result]] == 0} then { pkgLog [appendArgs \ "package \"" [formatPackageName $package $version] \ "\" was loaded: " [formatResult $code $result]] return true } else { pkgLog [appendArgs \ "package \"" [formatPackageName $package $version] \ "\" was not loaded: " [formatResult $code $result]] return false } } # # NOTE: This procedure returns non-zero if the specified package appears to # be available. The package argument is the name of the package being # sought, it cannot be an empty string. The version argument must be # a specific version -OR- a package specification that conforms to TIP # #268. # proc isPackageAvailable { package version } { set packageVersions [package versions $package] if {[llength $packageVersions] == 0} then { pkgLog [appendArgs \ "package \"" [formatPackageName $package $version] \ "\" is not available: no versions"] return false } if {[string length $version] == 0} then { pkgLog [appendArgs \ "package \"" [formatPackageName $package $version] \ "\" is available: no version"] return true } foreach packageVersion $packageVersions { if {[package vsatisfies $packageVersion $version]} then { pkgLog [appendArgs \ "package \"" [formatPackageName $package $version] \ "\" is available: version satisfied by \"" \ [formatPackageName $package $packageVersion] \"] return true } } pkgLog [appendArgs \ "package \"" [formatPackageName $package $version] \ "\" is not available: version not satisfied"] return false } # # NOTE: This procedure returns non-zero if the specified package can be # downloaded, i.e. because it is not required for the downloading # process itself to be functional, etc. The package argument is # the name of the package to check. # |
︙ | |||
1398 1399 1400 1401 1402 1403 1404 | 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 | + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - - + + + - + - + - - + + + - - + + - + + - + + - - - + - - - + - - + - - + + - - | # here, because Eagle does not add a version argument when one is # not explicitly supplied to the [package require] sub-command. # proc packageUnknownHandler { package {version ""} } { variable verboseUnknownResult # # NOTE: First, run the saved [package unknown] handler. # set code(1) [catch { runSavedPackageUnknownHandler $package $version } result(1)] if {$verboseUnknownResult} then { pkgLog [appendArgs \ "initial saved handler results for package \"" \ [formatPackageName $package $version] "\" are " \ [formatResult $code(1) $result(1)]] } # # NOTE: If the saved [package unknown] handler succeeded -AND- the # package can now be loaded (or is somehow already loaded?), # then skip running the repository handler. # if {$code(1) == 0 && ([isPackagePresent $package $version] || \ [isPackageAvailable $package $version])} then { return } # |
︙ | |||
1611 1612 1613 1614 1615 1616 1617 | 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 | - + - - + + | } } # # NOTE: The command to use when verifying OpenPGP signatures for the # downloaded package scripts. # |
︙ |
Modified client/1.0/pkgr.eagle.asc from [71e8876083] to [0d916dd6f9].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - - - - - - - - - - - - - + + + + + + + + + + + + + | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository |
Modified client/1.0/pkgr.eagle.harpy from [f98d20219b] to [ebe5c49bfc].
︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | THE ASSOCIATED SOFTWARE MAY NOT WORK PROPERLY IF THIS FILE IS ALTERED. --> <Certificate xmlns="https://eagle.to/2011/harpy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Protocol>None</Protocol> <Vendor>Mistachkin Systems</Vendor> |
Modified client/1.0/pkgr.eagle.harpy.asc from [167f4e126f] to [ecd0a5cbb1].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | - - - - - - - - - - - - - + + + + + + + + + + + + + | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository |