Overview
Comment: | Add support for automatically detecting the platform for a package to be downloaded. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6919e920331d41d0e1f46b3a5e42c1d0 |
User & Date: | mistachkin on 2016-10-28 04:53:04 |
Other Links: | manifest | tags |
Context
2016-10-28
| ||
04:59 | Add temporary directory cleanup block missing from the previous check-in. check-in: 1c31eb341e user: mistachkin tags: trunk | |
04:53 | Add support for automatically detecting the platform for a package to be downloaded. check-in: 6919e92033 user: mistachkin tags: trunk | |
02:15 | Allow the platform string 'neutral' to be used manually. check-in: 3dee9dc9c9 user: mistachkin tags: trunk | |
Changes
Modified client/1.0/neutral/pkgd.eagle from [63920e2496] to [b9b96e7274].
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | # variable loginUrn; # DEFAULT: pkgd_login if {$force || ![info exists loginUrn]} then { set loginUrn pkgd_login } # # NOTE: The URN, relative to the base URI, where a single package file # may be found. # variable downloadUrn; # DEFAULT: pkgd_file if {$force || ![info exists downloadUrn]} then { | > > > > > > > > > > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | # variable loginUrn; # DEFAULT: pkgd_login if {$force || ![info exists loginUrn]} then { set loginUrn pkgd_login } # # NOTE: The URN, relative to the base URI, where the list of supported # platforms for a single package may be found. # variable platformsUrn; # DEFAULT: pkgd_platforms if {$force || ![info exists platformsUrn]} then { set platformsUrn pkgd_platforms } # # NOTE: The URN, relative to the base URI, where a single package file # may be found. # variable downloadUrn; # DEFAULT: pkgd_file if {$force || ![info exists downloadUrn]} then { |
︙ | ︙ | |||
81 82 83 84 85 86 87 88 89 90 91 92 93 94 | variable loginUri; # DEFAULT: ${baseUri}/${loginUrn}?... if {$force || ![info exists loginUri]} then { set loginUri [appendArgs \ {${baseUri}/${loginUrn}?} {[uriEscape name $userName]} & \ {[uriEscape password $password]}] } # # NOTE: The URI where a single package file may be found. This file will # belong to a specific version of one package. # variable downloadUri; # DEFAULT: ${baseUri}/${downloadUrn}?... | > > > > > > > > > > | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | variable loginUri; # DEFAULT: ${baseUri}/${loginUrn}?... if {$force || ![info exists loginUri]} then { set loginUri [appendArgs \ {${baseUri}/${loginUrn}?} {[uriEscape name $userName]} & \ {[uriEscape password $password]}] } # # NOTE: The URI where the list of supported platforms for a single # package may be found. # variable platformsUri; # DEFAULT: ${baseUri}/${platformsUrn}?... if {$force || ![info exists platformsUri]} then { set platformsUri {${baseUri}/${platformsUrn}?download&name=trunk} } # # NOTE: The URI where a single package file may be found. This file will # belong to a specific version of one package. # variable downloadUri; # DEFAULT: ${baseUri}/${downloadUrn}?... |
︙ | ︙ | |||
389 390 391 392 393 394 395 | proc isOpenPgpSignatureFileName { fileName nameOnly } { if {[string length $fileName] == 0} then { return false } set extension [file extension $fileName] | | | 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 | proc isOpenPgpSignatureFileName { fileName nameOnly } { if {[string length $fileName] == 0} then { return false } set extension [file extension $fileName] if {$extension eq ".txt" || $extension eq ".asc"} then { if {!$nameOnly && [file exists $fileName]} then { return [::PackageRepository::isOpenPgpSignature \ [readFile $fileName]] } else { return true } } else { |
︙ | ︙ | |||
634 635 636 637 638 639 640 641 642 643 644 645 | set isClient true } else { error "unsupported language" } } # # NOTE: This procedure verifies the platform specified by the caller. The # platform argument must be an empty string -OR- one of the literal # strings "neutral", "win32-arm", "win32-x86", "win64-arm64", # "win64-ia64", or "win64-x64". An empty string means that the | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > > | | > > > > > > > > > | > > > | > | > > > | > | > > > > > | > | > > > > > > > > > > > > > > | > > > > > > > > > > > > > > > > > > > | 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 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 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 | set isClient true } else { error "unsupported language" } } # # NOTE: This procedure returns the name of the current platform. There are # no arguments. An empty string will be returned if the name of the # current platform cannot be determined for any reason. # proc getPlatform {} { global tcl_platform if {[info exists tcl_platform(platform)]} then { set platform $tcl_platform(platform) if {[info exists tcl_platform(machine)]} then { set machine $tcl_platform(machine) } else { set machine "" } switch -exact -- $platform { windows { switch -exact -- $machine { intel - ia32_on_win64 { return win32-x86 } arm { return win32-arm } ia64 { return win64-ia64 } amd64 { return win64-x64 } arm64 { return win64-arm64 } } } } } return "" } # # NOTE: This procedure verifies the platform specified by the caller. The # platform argument must be an empty string -OR- one of the literal # strings "neutral", "win32-arm", "win32-x86", "win64-arm64", # "win64-ia64", or "win64-x64". An empty string means that the # associated entity does not require a specific platform. The # varName argument is the name of a variable in the context of the # immediate caller that will receive a modified platform name, if # applicable. Upon failure, a script error will be raised. The # return value is undefined. # proc verifyPlatform { platform varName } { # # NOTE: The platform name must be matched exactly and case-sensitively. # switch -exact -- $platform { "" { # # NOTE: The empty string means "attempt to automatically detect" the # necessary platform based on context information that may be # present in the context of the immediate caller. If this is # not possible, a script error will be raised. # upvar 1 language language if {![info exists language]} then { error "unable to detect language" } upvar 1 version version if {![info exists version]} then { error "unable to detect version" } upvar 1 packageName packageName if {[info exists packageName]} then { set localPackageName $packageName } else { set localPackageName "" } upvar 1 usePgp usePgp if {[info exists usePgp]} then { set localUsePgp $usePgp } else { set localUsePgp false } # # NOTE: Download the list of platforms associated with this package # from the package repository server. This may fail and raise # a script error. # set platforms [downloadAllPlatforms \ $language $version $localPackageName $localUsePgp] if {[string length $varName] > 0} then { upvar 1 $varName newPlatform } # # NOTE: Check the current platform and the neutral platform, in that # order, to see if that platform is supported by the package # being saught. If so, return that platform. # foreach thisPlatform [list [getPlatform] neutral] { if {[lsearch -exact $platforms $thisPlatform] != -1} then { set newPlatform $thisPlatform return } } # # NOTE: If this point is reached, there are no supported platforms # that are compatible with the current one for the specified # package. # error "could not automatically detect platform" } neutral - win32-arm - win32-x86 - win64-arm64 - win64-ia64 - win64-x64 { |
︙ | ︙ | |||
932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 | } else { file delete -force -- $temporaryDirectory } return [expr {$compare > 0}] } # # NOTE: This procedure downloads a single file from the package file server, # writing its contents to the specified local file name. It can also # verify the OpenPGP signatures. When an OpenPGP signature file is # downloaded, this procedure assumes the corresponding data file was # already downloaded (i.e. since OpenPGP needs both to perform the # signature checks). 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 # is either "eagle" or "client". The platform argument must be an # empty string -OR- one of the literal strings "neutral", "win32-arm", # "win32-x86", "win64-arm64", "win64-ia64", or "win64-x64". An empty # string means that the associated package does not require a specific # platform. The fileName argument is a file name relative to the # language and version-specific directory on the package file server. # The localFileName argument is the file name where the downloaded # file should be written. The usePgp argument should be non-zero when | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | | 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 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 | } else { file delete -force -- $temporaryDirectory } return [expr {$compare > 0}] } # # NOTE: This procedure downloads a manitest from the package file server, # writing its contents to the specified local file name. It can also # verify the OpenPGP signature. 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 is either "eagle" or "client". The packageName argument # is a directory name relative to the language and version-specific # directory on the package file server and may be an empty string. # The localFileName argument is the file name where the downloaded # file should be written. The usePgp argument should be non-zero # when an OpenPGP signature needs to be verified for the downloaded # file. # proc downloadAllPlatforms { language version packageName usePgp } { variable baseUri variable platformsUri variable platformsUrn variable temporaryRootDirectory set temporaryDirectory [file join \ $temporaryRootDirectory [appendArgs \ pkgd_plat_ [::PackageRepository::getUniqueSuffix]]] set localFileName [file join $temporaryDirectory manifest.txt] file mkdir [file dirname $localFileName] # # NOTE: First, build the final URI to download from the remote package # repository. # set uri [subst $platformsUri] # # NOTE: Then, in one step, download the file from the package file # server and write it to the specified local file. # writeFile $localFileName [getPackageFile $uri] # # NOTE: Is use of OpenPGP for signature verification enabled? Also, # 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. # if {![::PackageRepository::verifyOpenPgpSignature $localFileName]} then { error [appendArgs \ "bad OpenPGP signature \"" $localFileName \"] } } # # NOTE: Initialize list of platforms to return. This will be populated # based on the platform directories available in the downloaded # manfiest data. # set platforms [list] # # NOTE: Read the (OpenPGP verified) Fossil manifest data from the local # file and split it into lines. # set data [readFile $localFileName]; set lines [split $data \n] foreach line $lines { if {[string range $line 0 1] eq "F "} then { set fileName [lindex [split $line " "] 1] if {[string match [file join \ $language $version * $packageName *] $fileName]} then { set directory [lindex [file split $fileName] 2] if {[string length $directory] > 0} then { lappend platforms $directory } } } } return [lsort -unique $platforms] } # # NOTE: This procedure downloads a single file from the package file server, # writing its contents to the specified local file name. It can also # verify the OpenPGP signatures. When an OpenPGP signature file is # downloaded, this procedure assumes the corresponding data file was # already downloaded (i.e. since OpenPGP needs both to perform the # signature checks). 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 # is either "eagle" or "client". The platform argument must be an # empty string -OR- one of the literal strings "neutral", "win32-arm", # "win32-x86", "win64-arm64", "win64-ia64", or "win64-x64". An empty # string means that the associated package does not require a specific # platform. The fileName argument is a file name relative to the # language and version-specific directory on the package file server. # The localFileName argument is the file name where the downloaded # file should be written. The usePgp argument should be non-zero when # the OpenPGP signature file needs to be verified for the downloaded # file. # proc downloadOneFile { language version platform fileName localFileName usePgp } { variable baseUri variable downloadUri variable downloadUrn |
︙ | ︙ |
Modified client/1.0/neutral/pkgd.eagle.asc from [5aece71259] to [a4a5c1129d].
1 2 3 4 | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository | | | | | | | | | | | | | | | 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 iQIcBAABCAAGBQJYEtk1AAoJEFAslq9JXcLZcsQP/20OJlkj118yDCfCoR7Zyhnv pOFCDXDnIq/ldclVELKg+EK/CrxgmCAH/+pDSLxTWT+/Y1BTTeQ8Kp7fO2IWCFVj hoizNoUzqaDxYLqhy0FPwRKA0RvsS5VJGhJp8lC9/i8KLy3gjpxo/uMESOwKX+AW NRbhOP+ngBfPYMnWdKGdjWCQSmGOL/8+DLffmk8VKpmtO4ZJDN4RAArvsrclA1JD E8lSKq6VmlGeJyUxjMX8LK2RX25m8Pz3tzsDCfOkYW8NbAOAQTMhoRspoJe9J5O3 5Ldyx0QUR6RJNJfM6FfzGtsYowmV2n9J2jDWzaGB6f599EUBCu5q0r4gaceBU1CC L8onojsxGxaa9gUF1NgLML3YopvW5KIx2ZGXP+GWvT44kOmOaM8hgJo6+arh7LfU swQ9nhz1MeVrSbyS3408LHGcCEGzQrC5pNJeYgfE8GWp5jJuukxXkOSnfKhO9H7n A5+WbHcIAz4qvgMUxDiREXbE8oBHQrt8BhtwPmW6HG9KOUS2oaS4oNJobC8+n2Xu lzyrch7APqT7Wg5X572TL2A/e7OQO2MIpubr7vHso5C/t22XgMMZy3CVMeJqMLK6 Db5v70omu+ioKm2zrsDo7I7aRw+KpHJ+HWmF0mO1QsapHPSDZPUdZcLm8Sn55JRJ h2tZ8pLujJP36P4qSX6N =KcGx -----END PGP SIGNATURE----- |
Modified client/1.0/neutral/pkgd.eagle.harpy from [62b4c2cc70] to [02d7425114].
︙ | ︙ | |||
17 18 19 20 21 22 23 | 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> | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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> <Id>5fdc11ef-e852-4689-a69f-af685136081a</Id> <HashAlgorithm>SHA512</HashAlgorithm> <EntityType>Script</EntityType> <TimeStamp>2016-10-28T04:50:36.5976094Z</TimeStamp> <Duration>-1.00:00:00</Duration> <Key>0x9559f6017247e3e2</Key> <Signature> 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 </Signature> </Certificate> |
Modified client/1.0/neutral/pkgd.eagle.harpy.asc from [cf7bbc4a40] to [bd034e58a0].
1 2 3 4 | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository | | | | | | | | | | | | | | | 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 iQIcBAABCAAGBQJYEtk5AAoJEFAslq9JXcLZ77QQAJCkxCZcry3Ex59M+9OPefBE D8kE4lZyaBUUWJOUdKMzn2d/J3f7PrnZh4+Jxt0CHBKZ7ITN2tt0XQCVT8eNEU+C tTXstUNMl0Fn0SkpudDw8iu9GlssVdALvDlIDcTPbzATEjGzywzOYDEbpwlrcBhQ iWQOXw3nGsU9LHHjpSGa7nPtUuJ6wwS0iEoFJ6dxUl2QIjEvEMueOMU7+pN94TkO 7ULOqVwcUj1QdtPW1TO9PRfWQJKt1Ivi9U+4kPyfH/gQtP7wrY6mZukZ80EbRoRi BOm9zl+iSHVv9uLtfvgYJ83ViYLvRWBX+OjhVyxpSShBtp7W5jdTmiMRGRzHmVuc dMu+pu6vBKZkp8gtXGlvBp014PHgvreUxhUdh+i0qfrCrXAp8NMtNlSXV2QolPAo sRLCnh7gpu/SY3/RqsiKPPA3aJ8bJV/cuWuQn4gHMQqSO2BfjrEytBjs9ltxaQKu 4wZhOQdWEYGmjuF+bXJwS1LvjDyBtV2JanDWgOMhn61HvU0wfs7pVyLMFmTmBZwX jt/PwD3qiShHKPPZsgRHxM7/MmzdaC1CWHZa3MFdm2sovON6YueaVyuMZls7jzaO X0iTC0KtJUI+eaD58UZS9laGRkTMWbPrWxac0EKZq54l+xyx5Po+LkZL7rCtzGgd 4ZkMeGBx2HDmVYcJQrlA =29wH -----END PGP SIGNATURE----- |
Modified client/1.0/neutral/pkgr.eagle from [2390687eb3] to [132b4f6495].
︙ | ︙ | |||
1596 1597 1598 1599 1600 1601 1602 | global tcl_platform if {[string length $script] == 0 || \ ![file exists $script] || ![file isfile $script]} then { return } | > > > > > > > > | | 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 | global tcl_platform if {[string length $script] == 0 || \ ![file exists $script] || ![file isfile $script]} then { return } set prefixes [list] if {[info exists tcl_platform(user)]} then { lappend prefixes $tcl_platform(user) } lappend prefixes "" foreach prefix $prefixes { if {[string length $prefix] > 0} then { set prefix [appendArgs . $prefix] } set fileName [appendArgs \ [file rootname $script] .settings $prefix [file extension \ $script]] |
︙ | ︙ |
Modified client/1.0/neutral/pkgr.eagle.asc from [d00499e8ad] to [600e52e963].
1 2 3 4 | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository | | | | | | | | | | | | | | | 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 iQIcBAABCAAGBQJYEtS+AAoJEFAslq9JXcLZGX0P/2xZOWZqH3yuOu+DrzJ7Nsnj BnMN+pZ2qtNAsyTNFTwJYjKHhGLwk3V9XlHwsBebblTT48OrtLz8yZpZDBkVk9/0 sgXI8gbUp7Eivv+f47zAIhJ2Qfykc8tIANyF1Q/AA2k1Aen+DD9ZJbtqqKorblbt izQJ8dIW72Sfrv17WZx7D0w2mmUcSFfb22/+nJ7GhlHmh39KW0IMilG1qtThJJai 62rknx8X6rG3GUGy/CgZYzKwPwQY366CAEfv/N+IafmVPfhstMVHHt5+pVuTvNTs PkzBZdfFX2SUz57dIdbI5xk704ojXUIxoygFVaeS7HFAW4wa97niqoi5p5/1GFCe apw+rEvCBbbw2daXuieison8fqNYl5pTIMwesACrXbwadTuPRA24KhnruLu22xE+ NbEH3OUKRo4ol/HCLIC2avlGrixrjnxG0itkMkSG4pvrwTCfFz0XMUiTGKC8OZZj OHo4wkLWg/SzCOAXWhphXkHvRDdBjAfbqBXCn7lG3Q9LIX+GUBu4Nc7F4cZHBGQF kXJs441GeSvr/j3PpgacZBawg06sgpdpy+GGsB0lgdBGGYiWdYWbsnJF5F7WJRcC GL2/F3b5IMAr3Lv3/3+ItFFWHuTH2KRqeXlnF09PIUST0PRFs28fnsQY61bwsORC hfhA9cC/Vimsr4zCEDMH =4fzG -----END PGP SIGNATURE----- |
Modified client/1.0/neutral/pkgr.eagle.harpy from [ba9aae3011] to [2280aea880].
︙ | ︙ | |||
17 18 19 20 21 22 23 | 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> | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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> <Id>659beaa3-cb16-4af3-b230-95b60e9aeb3f</Id> <HashAlgorithm>SHA512</HashAlgorithm> <EntityType>Script</EntityType> <TimeStamp>2016-10-28T04:31:35.4159688Z</TimeStamp> <Duration>-1.00:00:00</Duration> <Key>0x9559f6017247e3e2</Key> <Signature> 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 </Signature> </Certificate> |
Modified client/1.0/neutral/pkgr.eagle.harpy.asc from [83b3014d91] to [d96d71386d].
1 2 3 4 | -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Eagle Package Repository | | | | | | | | | | | | | | | 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 iQIcBAABCAAGBQJYEtTAAAoJEFAslq9JXcLZCpsP/R8RQKMtThto29k0xhWmXHdv 1IP4B+tvjMQtKPe+DiO+LoiiiYJyn0OMPSyi/gDk73LeJKVMSp3ftVyshuHa9PUL dvCvyr+hcOivOzqDX3k6fpXqZoI8ZwYP0QBQRPzElYKFM+pOA+m/BkZIdSnZ4Lay k5mWdELTvPIaCTNixJ4nFi2XYbnpS19Z6kUojvGAy/BVLPTYpfUGieHBP1aov4df hHEQdgSK6iLZLcfveC0T+YnWjtBpVjZGjxb/3Bvs6MBrZk9JBLL4ppMLEw7xmolC ttKx2FMeaSfHOTHAfcy+KrSh9Sji6/cQAIUkSwZWkpzGkaCkiEK0kNZDpN41rt8e yW8iQWYNmiWaivYpfwHWIoxVQTfKfyXZk6FEFowMcU1W5dBAsWh7YAcQ+Hat+coY T706IJey+lN035MoIeVICyMCaXVLtCZmKGXMCv1ssddZRhrL6OhB7lJmYDKkDqYN CTH2559BXm1Tv1yO6Af9nL4VWkJmqnlyqWaVXTU4AVC8BY1WVO4uYGEP8DZ/Kvii glQgc79bnJHiYicr33yOC1/BsGnH5m4DKKwS+ZiAEA/lqIfwYxzALkJrb9hnyIB4 sXwZzGHA79lmO5o3WRgSp/WhB698+5pLKeckMqB6joUlOMzE3cC0RJF8kzpUs60n WoTVOH4TFvU30uFcVIei =lRxs -----END PGP SIGNATURE----- |