Check-in [372ee60877]
Not logged in
Overview
Comment:Merge various recent fixes and enhancements to the package client toolset.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 372ee608771990f105afd5719bf0eb3bb03c9ae8
User & Date: mistachkin on 2022-03-02 20:43:51
Other Links: manifest | tags
Context
2022-05-27
20:15
Updates for Eagle beta 50 from upstream. check-in: c646eb6c1f user: mistachkin tags: trunk
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
18:20
Make sure that 'glob' command results are processed in a well-defined order. Closed-Leaf check-in: c469dd85b7 user: test tags: vNext
2021-11-11
15:23
Pickup the platform detection changes from upstream. check-in: fecb8511da user: mistachkin tags: trunk
Changes

Modified client/1.0/neutral/pkgd.eagle from [0aa315b515] to [82758d27ca].

575
576
577
578
579
580
581
582
583
584
585
586
587
588
589

    if {[file exists $pkgd(file)]} then {
      set dir $pkgd(dir); source $pkgd(file)
    }
  }

  eval lappend pkgd(dirs) \
      [glob -nocomplain -types {d} [file join $pkgd(dir) *]]
}

set dir $pkgd(savedDir); unset -nocomplain pkgd
    }]]

    return ""
  }







|







575
576
577
578
579
580
581
582
583
584
585
586
587
588
589

    if {[file exists $pkgd(file)]} then {
      set dir $pkgd(dir); source $pkgd(file)
    }
  }

  eval lappend pkgd(dirs) \
      [lsort [glob -nocomplain -types {d} [file join $pkgd(dir) *]]]
}

set dir $pkgd(savedDir); unset -nocomplain pkgd
    }]]

    return ""
  }
696
697
698
699
700
701
702




























703
704
705
706
707
708
709
      } else {
        return true
      }
    } else {
      return false
    }
  }





























  #
  # 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.
  #







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







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
      } else {
        return true
      }
    } else {
      return false
    }
  }

  #
  # NOTE: This procedure attempts to verify the specified OpenPGP signature
  #       file.  If the forcePgp parameter is non-zero verification will be
  #       attempted even when the specified file does not appear to be an
  #       OpenPGP signature file.  This procedure may raise script errors.
  #
  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.
  #
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
  #       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 } {
    set packageIndexFileName [getPackageIndexFileName $language]

    if {[string length $packageIndexFileName] > 0} then {
      foreach fileName $fileNames {
        set fileNameOnly [file tail $fileName]

        if {$fileNameOnly eq $packageIndexFileName} then {
          set directory [file dirname $fileName]

          if {[string length $directory] > 0} then {
            return [file tail $directory]
          }
        }
      }







|

|



|







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 } {
    set packageIndexFileNameOnly [getPackageIndexFileName $language]

    if {[string length $packageIndexFileNameOnly] > 0} then {
      foreach fileName $fileNames {
        set fileNameOnly [file tail $fileName]

        if {$fileNameOnly eq $packageIndexFileNameOnly} then {
          set directory [file dirname $fileName]

          if {[string length $directory] > 0} then {
            return [file tail $directory]
          }
        }
      }
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
    #
    writeFile $localFileName [getPackageFile $uri]

    #
    # NOTE: Is use of OpenPGP for signature verification enabled?  Also,
    #       did we just download an OpenPGP signature file?
    #
    if {$usePgp && ($forcePgp || \
        [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 \"]
      }
    }
  }

  #
  # 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







|
<

|
|

<
<
<
|
<
<
<







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?
    #
    if {$usePgp} then {

      #
      # NOTE: Maybe attempt to verify the OpenPGP signature.  If this
      #       fails, an error is raised.
      #



      maybeVerifyOpenPgpSignature $localFileName $forcePgp



    }
  }

  #
  # 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
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210















































































2211
2212
2213
2214
2215
2216
2217
        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 {
          foreach downloadDirectory $downloadDirectories {
            if {[file exists [file join \
                $downloadDirectory $packageIndexFileName]]} then {
              addToAutoPath $language $downloadDirectory
            }
          }
        }
      }
    }

    #
    # NOTE: Always return the list of directories that were actually added
    #       to the auto-path, if any.
    #
    return $downloadDirectories
  }
















































































  #
  # NOTE: This package requires the package repository client package.
  #
  package require Eagle.Package.Repository

  #







|

|


|













>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







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.
        #
        set packageIndexFileNameOnly [getPackageIndexFileName $language]

        if {[string length $packageIndexFileNameOnly] > 0} then {
          foreach downloadDirectory $downloadDirectories {
            if {[file exists [file join \
                $downloadDirectory $packageIndexFileNameOnly]]} then {
              addToAutoPath $language $downloadDirectory
            }
          }
        }
      }
    }

    #
    # NOTE: Always return the list of directories that were actually added
    #       to the auto-path, if any.
    #
    return $downloadDirectories
  }

  #
  # NOTE: This procedure adds temporary package directories to the auto-path
  #       of the specified language (i.e. native Tcl or Eagle).  Directories
  #       will not be added if already present.  The language argument must
  #       be the literal string "eagle" or the literal string "tcl".  The
  #       pattern argument is the optional pattern to match against each of
  #       the candidate temporary package directories.  If the pattern is an
  #       empty string then all candidate temporary package directories will
  #       be added to the auto-path; otherwise, the pattern will be matched
  #       against the final portion of the temporary package directory name
  #       and only those temporary package directories that actually match
  #       the pattern will be added to the auto-path.  The options argument
  #       must be a dictionary of name/value pairs.  This procedure does not
  #       currently support any options.  This procedure may raise script
  #       errors.  This procedure assumes the local temporary directory is
  #       writable only by applications that are implicitly trusted by the
  #       current user.  If this assumption does not hold on your platform,
  #       DO NOT USE THIS PROCEDURE AS IT MAY BE UNSAFE.
  #
  # <public>
  proc maybeAddTemporaryPackagesToAutoPath { language options {pattern ""} } {
    variable temporaryRootDirectory
    variable verboseTemporaryDirectory

    #
    # NOTE: Initially, no temporary package directories have been added
    #       to the auto-path.
    #
    set result [list]; set packageNames [list]

    #
    # NOTE: What is the package index file name for this language?  Each
    #       candidate temporary package directory will be checked to see
    #       if it contains this file; otherwise, it will not be added to
    #       the auto-path.
    #
    set packageIndexFileNameOnly [getPackageIndexFileName $language]

    #
    # HACK: Obtain the list of candidate temporary package directories
    #       that may need to be added to the auto-path.  The prefix we
    #       use here is considered "well-known" by this package.
    #
    set directories(1) [lsort [glob -nocomplain -types {d} \
        [file join $temporaryRootDirectory pkgd_lib_*]]]

    foreach directory(1) $directories(1) {
      set directories(2) [lsort [glob -nocomplain -types {d} \
          [file join $directory(1) *]]]

      foreach directory(2) $directories(2) {
        set directoryNameOnly(2) [file tail $directory(2)]
        set packageName $directoryNameOnly(2); # HACK: Well-known.

        if {[lsearch -exact $packageNames $packageName] == -1} then {
          if {[string length $pattern] == 0 || \
              [string match $pattern $directoryNameOnly(2)]} then {
            if {[string length $packageIndexFileNameOnly] == 0 || \
                [file exists [file join $directory(2) \
                    $packageIndexFileNameOnly]]} then {
              if {[maybeAddToAutoPath $language $directory(2)]} then {
                lappend packageNames $directoryNameOnly(2)
                lappend result $directory(2)

                if {$verboseTemporaryDirectory} then {
                  pkgLog [appendArgs \
                      "added temporary package directory named \"" \
                      $directory(2) "\" to auto-path..."]
                }
              }
            }
          }
        }
      }
    }

    return $result
  }

  #
  # NOTE: This package requires the package repository client package.
  #
  package require Eagle.Package.Repository

  #

Modified client/1.0/neutral/pkgd.eagle.asc from [c775a3d41d] to [73e11be02c].

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

iQIcBAABCAAGBQJfmOuGAAoJEFAslq9JXcLZt6cP/1DdL0KePk0n0/wrFT6gpGd1
Ky5MvMsmJcLPbd7GhCO+DAU5sWicdtWuR76D5mCim3pLW4CqjpSHWEjeGLRB7uFD
JJVo/KehQpoqTfocOItBg3kfghqAOWW3mjxCvYvT2T0pKXth1SEupWBuQWSRueUK
Og/o7gUaQGbFZ+hnxQJLwCUJfZ3Ui0v+U9+1ieC29M1/d34qq25s/vz6mo3AjO8n
+eubw+uSiCBUh4Bd7mTXe1tn98Gdz4rvrOc5h8rxm99J4SaPr7so1h9kZgpDNLeH
CK095iF85Tgx/RMxYrf/3/k+pys78s3nTDdUzhJfmk5dlaHI2oxrNTYIMx/wCNVA
sX4bZ/OPryVlCxrXPZ5orxzGqpBH92+juaJJ228BRPu7iMXs56lzGOnZKBLRVqp3
xNTgK746PZWOtOlDIOQNwUxslBBqr22ftEsC7OT94GOMKlZvNXcd6vxyVQaHQjio
7q2qkZ+y1A+r61GwLvwfaPLKug/l1Jdzes+HvV0KP6Xq/bMtX4dXqKrKmH/0K5er
9uxoe2JD2VGzVi+25RBCG4No/yURkZD2slmjp/+5USqlswG/JSGKKO+t+b6D++tN
uRXYdTyG5Yrwk+WWEeHA/W3xAeRRy58ODhDDz1uRB8jLqat8DEruC4KEPTdtnLDd
kfdixTCCbcEwaSYFutyy
=EZ+Y
-----END PGP SIGNATURE-----




|
|
|
|
|
|
|
|
|
|
|
|
|

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

iQIcBAABCAAGBQJiH9alAAoJEFAslq9JXcLZvDAQAJriTZ+8ZrUEqWJIIBzrXNPl
/HN2Jr8+h8r9mSvZak7YPGbbe7u2+kyOQC/mn62HZodU5NEIMttVn4dDEjRCwxPB
v7HCbQxF71zG78/2BdE+Q2xeA7WIAwzvth5Tok+PVIXS3hPdTKA0lkvaPpB53nvg
rdZoxaA3/cv6lbPXnV7vOYLyFqLfkI1iuti473vUK4Bw5uzKgFCSXEkFNoxXND+8
5yojuugQG8k1fUcVtpvcc+lBZIGqaSxhM10mtFaZJJ8EYtxODdY7bPQVUH+qpYFs
vUHbJHB93nM/PrROzzxeINTO9jO2C6+0Rjii1qjs4i+Zn38cZkW8kd3/56E0KyzK
gxmQYRxysOO5FcJa5O1XLFz9DCzcyZkVwRaDf1oUYyrzRskAjznWV5JtTFKOpHsP
ufJ8BiR0cVudmVTcjvukPf6QgxTgUsfomGXGU9mA5avCMZaW7MFebFYJqSypx+UU
liRlDtjWfhcCPNy4j16MOJATreOJ22TR+KLTIvFdvZvdvx4VQ29BHm7R6cjIhMF3
PljM3U2cpEHqaEj1neu4egZnweaxdEsIpBhF+43xCwBsNGaV7PloJGHWGjRM4xIR
L6jj2gBenQS1Wm4uJBOcCUfbb0UwdWEuD9ezIdw8De/P3u+a4I+rHMqOtg5D3aLh
pwhUcHneF/0oW330szqh
=r+JH
-----END PGP SIGNATURE-----

Modified client/1.0/neutral/pkgd.eagle.harpy from [2f2cab99b1] to [38e4a4272a].

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>ad28ba31-12e3-4fd7-9341-c374f73653a4</Id>
  <HashAlgorithm>SHA512</HashAlgorithm>
  <EntityType>Script</EntityType>
  <TimeStamp>2020-10-28T03:53:27.4365302Z</TimeStamp>
  <Duration>-1.00:00:00</Duration>
  <Key>0x9559f6017247e3e2</Key>
  <Signature>
    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
  </Signature>
</Certificate>







|


|



|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|


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>96a5aa1a-3673-40b4-b18c-6d2b256cec0a</Id>
  <HashAlgorithm>SHA512</HashAlgorithm>
  <EntityType>Script</EntityType>
  <TimeStamp>2022-03-02T20:42:31.6851748Z</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 [33ee92f8a4] to [d60e9ff995].

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

iQIcBAABCAAGBQJfmOuHAAoJEFAslq9JXcLZf0oP/RCYv2oxRGQwox2apwbHFZRX
Rowam2k1Eejmq/bWlaXmPez5/vUxWB0RKr7ZJzkilvwg7tjyl3TABaw4NTJCVDrg
8gl9jqL0sus3SzfDHX/rFCrUkl1bSg0kBl66QvdT6KF37YNwBotGCujTg6g7hkPG
P5n3vh9H8IBI+faV9uvEBvQ8m58Wtv3RuvW/wE8tLCb3w046tuzi0MfauCJWvaLQ
gJ0r1jIO+slNKv8gvibYlELorY1w/eiY1Qo4ru2ahv77ze7BTweY3FvvK5cyENxa
MY18AaHcIjQZBtW5seWybUGAbu3+CU89GLCcMfWcXv2oNY/HMD5q+nHSmAmR0+MC
hZt/pcv2hkBi3vR+SCUYQeXII1ds4zyILo325JxFZt8QT56fpuDAsP2YoddreWW1
83a3qR+ec20fxjDKgZ3AbIDXfjV+UF5ha4yqtzyUjFvL+rGJqS1brwOMeBjGY2v1
ThIK+imu0EfD1wPrY6x5w2A1ICImVEz2skan9ZRuLp2qjBLp/pHnyWsi4Z3XxNzr
dpnvK6XlxHtiDyhSeDPzZOOr5q7Mdhn52Yr5nCCU2DSe6Ooxk5iJy1T+QBMKG11x
K903EVaFHwXw9q76g6Oo6SQ3eayRT7hxZtkWDtsWyv2syE2sYJYxL0+jbHLPKA+/
quJCm5rNsZ3VuEhbN1ZW
=nzTm
-----END PGP SIGNATURE-----




|
|
|
|
|
|
|
|
|
|
|
|
|

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

iQIcBAABCAAGBQJiH9bTAAoJEFAslq9JXcLZkDAQAJSSCeqSlLzTIcPppkunzdp+
RPpc1xMTlq5lRD8jbRDELllEiFpbbSVn6bVKovFjY5mGf/6PO9mSjvC4dT2MU9bO
K6GckyhadHN3ycokJHudIhM3ZZSz+znrW1+XXdCm/8Lh/JLoJpwQQe1CoUhttgoo
dPRU5kE8RtOe1mz5H/zW5auCymdq6qXuy+4C3APYY2nQbLSAvWrtIQE9sIB5hxKV
Zql5e3WJFJ+zP0How1sKa7gHbwpN1sZjMVwTUKPw2AiAxXAMdsYnl50aM+gA6NFF
qXBfSIsXkmzSmKfOBey/ARNCPBcD6K8chHwOz6Jki35kgsNVswyNT2MXFdSAULc1
0ydQHa/H2Jf8DaZmSOzWV24ICjQOehDctrAMa1t7zbJNSknbS2N62mTDuW0RFq48
UmdulN92hoQrlclL1/LcwMSggTSjeUS8aO5E+4qSgzxZAHpKFciYwFzq+orSC8u+
PwyusnwBF+Vf2y4kBcZ/9kRtQZJfI1RyBt779hXQZe71WsanQOJ8QHuJUEgOq/5T
RurQyuLuNe2200Rtde8vQi6iUI4aekOc+4Mn/KYGJoM4nsCslodvPhV6l40oALrr
znrbZCXuD4RLbwrYNuD0a3GkQmgL5HDvQjKXCrDVJAe0PNvENd09T8ckN4dAeA4G
6ItkVrBdj0AcZFaqw/3G
=bRnf
-----END PGP SIGNATURE-----

Modified client/1.0/neutral/pkgr.eagle from [8a55e06b77] to [96aebd6a2c].

451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
        set subDirectory $directory
      }

      if {[file isdirectory $subDirectory]} then {
        foreach fileNameOnly $openPgpFileNamesOnly {
          set fileName [file join $subDirectory $fileNameOnly]

          if {[file exists $fileName] && [file isfile $fileName]} then {
            pkgLog [appendArgs \
                "the OpenPGP directory is being initialized to \"" \
                $subDirectory "\" based on OpenPGP file name \"" \
                $fileNameOnly \"]

            return [addToPath $subDirectory]
          }







|







451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
        set subDirectory $directory
      }

      if {[file isdirectory $subDirectory]} then {
        foreach fileNameOnly $openPgpFileNamesOnly {
          set fileName [file join $subDirectory $fileNameOnly]

          if {[file exists $fileName]} then {
            pkgLog [appendArgs \
                "the OpenPGP directory is being initialized to \"" \
                $subDirectory "\" based on OpenPGP file name \"" \
                $fileNameOnly \"]

            return [addToPath $subDirectory]
          }
2198
2199
2200
2201
2202
2203
2204



































2205
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
      #       value here is ignored.
      #
      isPackagePresent $package $version
    }
  }

  #



































  # NOTE: This procedure evaluates the package repository client settings
  #       script file, if it exists.  Any script errors raised are not
  #       masked.  The script argument must be the fully qualified path
  #       and file name for the primary package repository client script
  #       file.
  #
  # <public>
  proc maybeReadSettingsFiles { script } {
    global env
    global tcl_platform

    if {[string length $script] == 0 || \
        ![file exists $script] || ![file isfile $script]} then {
      return -1
    }


    set scriptTail [file tail $script]
    set scriptRootName [file rootname $scriptTail]
    set scriptExtension [file extension $scriptTail]
    set scriptUpperName [string toupper $scriptRootName]
    set scriptLowerName [string tolower $scriptRootName]

    if {[info exists [appendArgs \
        env(NO_SETTINGS_ $scriptUpperName )]]} then {
      return -2
    }

    set count 0
    set prefixes [list]

    if {[info exists tcl_platform(user)]} then {
      lappend prefixes $tcl_platform(user)

    }

    if {[catch {info hostname} hostName] == 0 && \
        [string length $hostName] > 0} then {
      lappend prefixes $hostName
    }



    lappend prefixes $scriptLowerName

    if {[info exists [appendArgs \
        env(DEBUG_ $scriptUpperName )]]} then {
      lappend prefixes debug
    }

    lappend prefixes ""


    foreach prefix $prefixes {
      if {[string length $prefix] > 0} then {
        set prefix [appendArgs . $prefix]
      }

      set fileName [appendArgs \
          $scriptRootName .settings $prefix $scriptExtension]





      if {[file exists $fileName] && [file isfile $fileName]} then {
        uplevel 1 [list source $fileName]; incr count
      }
    }

    if {$count == 0} then {
      set pattern [file join [file normalize [file dirname $script]] \
          [appendArgs $scriptRootName .settings.* $scriptExtension]]

      foreach fileName [glob -nocomplain -- $pattern] {









        if {[file exists $fileName] && [file isfile $fileName]} then {
          uplevel 1 [list source $fileName]; incr count

        }
      }
    }

    return $count
  }








>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
|
|
<
|






|
<



>












|

<
|
>
|
|
<
|
|
|

>
>
|

<
<
|


|
>

|




|
|
>

>
>
>
|





|
|

|
>
>
>
>
>
>
>
>
>
|
|
>







2198
2199
2200
2201
2202
2203
2204
2205
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
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
      #       value here is ignored.
      #
      isPackagePresent $package $version
    }
  }

  #
  # NOTE: This procedure returns the list of possible prefixes that should be
  #       considered for settings files.  The scriptName parameter is the name
  #       of the script being evaluated, if any.  The envVarName parameter is
  #       the name of an environment variable associated with the script being
  #       evaluated, if any.  The all parameter should be non-zero to include
  #       all available prefixes, even if they are inapplicable to the current
  #       configuration.  This procedure may raise script errors.
  #
  proc getSettingsPrefixes { scriptName envVarName all } {
    global env

    set result [list]

    if {[info exists tcl_platform(user)]} then {
      lappend result $tcl_platform(user)
    }

    if {[catch {info hostname} hostName] == 0 && \
        [string length $hostName] > 0} then {
      lappend result $hostName
    }

    if {[string length $scriptName] > 0} then {
      lappend result $scriptName
    }

    if {$all || ([string length $envVarName] > 0 && \
        [info exists [appendArgs env(DEBUG_ $envVarName )]])} then {
      lappend result debug
    }

    lappend result ""; return $result
  }

  #
  # NOTE: This procedure evaluates package repository client settings script
  #       files, if they exists.  Any script errors raised are not masked.
  #       The script argument must be the fully qualified path and file name

  #       for a package client toolset script file.
  #
  # <public>
  proc maybeReadSettingsFiles { script } {
    global env
    global tcl_platform

    if {[string length $script] == 0 || ![file exists $script]} then {

      return -1
    }

    set scriptPath [file normalize [file dirname $script]]
    set scriptTail [file tail $script]
    set scriptRootName [file rootname $scriptTail]
    set scriptExtension [file extension $scriptTail]
    set scriptUpperName [string toupper $scriptRootName]
    set scriptLowerName [string tolower $scriptRootName]

    if {[info exists [appendArgs \
        env(NO_SETTINGS_ $scriptUpperName )]]} then {
      return -2
    }

    set count 0
    set allFileNamesOnly [list]


    set allPrefixes [getSettingsPrefixes \
        $scriptLowerName $scriptUpperName true]

    foreach prefix $allPrefixes {

      if {[string length $prefix] > 0} then {
        set prefix [appendArgs . $prefix]
      }

      set fileNameOnly [appendArgs \
          $scriptRootName .settings $prefix \
          $scriptExtension]



      lappend allFileNamesOnly $fileNameOnly
    }

    set scriptPrefixes [getSettingsPrefixes \
        $scriptLowerName $scriptUpperName false]

    foreach prefix $scriptPrefixes {
      if {[string length $prefix] > 0} then {
        set prefix [appendArgs . $prefix]
      }

      set fileNameOnly [appendArgs \
          $scriptRootName .settings $prefix \
          $scriptExtension]

      set fileName [file join \
          $scriptPath $fileNameOnly]

      if {[file exists $fileName]} then {
        uplevel 1 [list source $fileName]; incr count
      }
    }

    if {$count == 0} then {
      set pattern [file join $scriptPath [appendArgs \
          $scriptRootName .settings.* $scriptExtension]]

      foreach fileName [lsort [glob -nocomplain -- $pattern]] {
        #
        # BUGFIX: Do not consider any settings script file
        #         that may have already been evaluated via
        #         the above list(s) of script prefixes.
        #
        set fileNameOnly [file tail $fileName]

        if {[lsearch -exact \
            $allFileNamesOnly $fileNameOnly] == -1} then {
          if {[file exists $fileName]} then {
            uplevel 1 [list source $fileName]; incr count
          }
        }
      }
    }

    return $count
  }

2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
    if {[info exists env(PKGR_NO_API_KEYS_FILE)]} then {
      return
    }

    if {[info exists env(PKGR_API_KEYS_FILE)]} then {
      set fileName $env(PKGR_API_KEYS_FILE)

      if {[file exists $fileName] && [file isfile $fileName]} then {
        uplevel 1 [list source $fileName]
      }
    }
  }

  #
  # NOTE: This procedure sets up the default values for all configuration







|







2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
    if {[info exists env(PKGR_NO_API_KEYS_FILE)]} then {
      return
    }

    if {[info exists env(PKGR_API_KEYS_FILE)]} then {
      set fileName $env(PKGR_API_KEYS_FILE)

      if {[file exists $fileName]} then {
        uplevel 1 [list source $fileName]
      }
    }
  }

  #
  # NOTE: This procedure sets up the default values for all configuration

Modified client/1.0/neutral/pkgr.eagle.asc from [8fce6fa462] to [da76e0e616].

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

iQIcBAABCAAGBQJfmOuKAAoJEFAslq9JXcLZm/AQAIl9DXolT5cpPRH2+qBOV+ig
1ygyra3ocrUrkDekBioCxCzUTkw89xpszRrWNPCVQkhKvfTiN1ssuNdqIMIW7FJO
ntYylcscy97eklTGQyaiq5z99U0Qb5I7Yw7h8fEG3OtFjh46uUQH0kMApz31ahMd
Ziyh7WV1Nf7H9+4XCQ/+OQEhgJySiBf7BR5VEhO7sbcaIVg4OAfovric7eOoRyEo
3b5jZq/vbbn1kN/T+3TZskh3ikbwKLBWtMYw/WdQQrrsT+uZItJEUO9qeiBbJdWv
ljSNCr4Y+WY4D7KXHl0jdcpcKeujeWnz49PbwpY6Og0t4qNMolvkgUIuxlc3l2fu
n1prHuYBa09cmjuGjHw4GS4VQS+Gaxnh2C0XPWEkFDufcrYwhudbjNejCovojkAI
xbpMRqixcBamv+zCv4zi8bwkh10YwoSpWaRcVJFI+ophoEHSlcy/1rY66+ZB0XrW
g/RXxJO1WQXcr/iZzS0osBuTvJkl2tD2AE6RUDzUtYDKJPLz40D3hfnPQYi90NSM
NTFj+URLSSXyLVcokhvpkdf9O26hY5yErTUQl4ygFSAIiDKDxXCz3vTcBkCVbWKt
9D8vqZOj3lEYFky/MGRZTrVbGyJabC9JCKHKpv4HQY4dGg0l8eqYxDz4TdZLYKVO
BswCIvJH3l0+ryPh0hCn
=AnTt
-----END PGP SIGNATURE-----




|
|
|
|
|
|
|
|
|
|
|
|
|

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

iQIcBAABCAAGBQJiH9aoAAoJEFAslq9JXcLZ+CQP/03yBpQ2wWY9eEZGrNc/4dPI
ULtgK/8VNNC0ZHuaq9vJi9sF8bLnJM0GPV1vp+6oDRs7UYkQ+kaFqB96my8mOaJH
v6StcGjHW2m0UILnDSOHpJUhn21UwUa0YLoLYtJfuqMlB0Td7g/W3/bMMAk/xm1M
GFju172kc1m0t2Bd+UJ/zVSei9eRAiNEVNms84ZbCCyLRxmNEIrZWcNGrZ7yM93I
MJfxN1SpF/Qk6DPnF8vILN29XpRXo+OglE/6OcgQwL0S8K9EhTXabqTPUyB+TTCW
BdEQkaBwWXhk6vv2c/BYWSk9Dju5s5T2zgCCUR22sCPAQELezIYSOI0eYHehF2NE
kAgwg5/Rm3esMTZugTsmi0z2E4YCC/3IKr69h2TtqYboBKAmsAR4wJ06bn/61EFI
iKEzYLmOYuMWtoOkjQ404YQGi7NsMCVcUEkXBoA+XHSQxz6XglCpHA/A6Yj/lJAT
KH1ELvwFzulTkPJGcCPqx1N2+aroGZTIZfIP9Brx/be7nnHiLzbmSNTUW6TReccX
7YhnbjjULuFkkZId+LpRlVoUuBBSRzO4Ijd0JaMiEjHccl8V7HT0YLbjGf9XDu/Y
bbu5Dw/Z4OonMh52WcMdxjWlkHgRx65B3J87oSw5fZO5RJStHO6dMH1UBTaSIpFA
eUQlIfMxtoLi2EgprI5M
=epAs
-----END PGP SIGNATURE-----

Modified client/1.0/neutral/pkgr.eagle.harpy from [998facdd6a] to [8a15dd9c18].

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>c069d248-48c5-4532-ba32-e7e95265bdb7</Id>
  <HashAlgorithm>SHA512</HashAlgorithm>
  <EntityType>Script</EntityType>
  <TimeStamp>2020-10-28T03:53:42.0703672Z</TimeStamp>
  <Duration>-1.00:00:00</Duration>
  <Key>0x9559f6017247e3e2</Key>
  <Signature>
    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
  </Signature>
</Certificate>







|


|



|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|


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>86b6a2cf-3f86-4c4d-84f9-9a06d338bf08</Id>
  <HashAlgorithm>SHA512</HashAlgorithm>
  <EntityType>Script</EntityType>
  <TimeStamp>2022-03-02T20:42:46.6230292Z</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 [839728d3be] to [31fb22cc19].

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

iQIcBAABCAAGBQJfmOuLAAoJEFAslq9JXcLZ+y0P/RYTYjLHPVtYxdOVLN7P5JSm
0b0AvNRhGg3Lz7klWp2CbmIxgCOP36RrH3/b23FERZ/5i4DKUrhbEFngXEwP5tNW
abH3DKZDBR8YIaG0mic5ziWhEs6E9GaDT0L0ll/x4wa3tvSRp7F0/OfQTv+NzQ/6
hDpBLEqXpwi8Bv+62uYTwSPgmejb1G/OAznfBYY01PTrquqXrzBw2GwfSTkFB3S2
jRUAw57xajzNEhciPhzML303FvrLi4ZTD3RaQ21UZ0Ch70KEu9jB6I0Ib7Wsw3HZ
ETOnKNst7AO1DN59ge7kvWJL11/U+7+w8nyKzdyla6M1ZQkNkQqzNTPHVo/dVhnx
bw25pdfuzHEe465uC1Gazp7blDKKu3bc0CNK/X2WgYrLq+FOezi4OCxMrY4LB9gU
RB4auCny2HZE0s4g+g3/2UFl+JjFXHM4awhnOKvBgy1UNoEZ0x/GyMStXq6InMaV
d+m/h+HSHBCDlw+27tIzeGpVtY4ucpMKItSZe58dt9WGa55KtFKCbTDgvfXyCNfl
zYMAmDZVDz/1N5KLscqTVxQFU6aV68W52YYasWAKF6B48di/RaxMJsx9y04uPwqW
4qFBtqMgh+r0VkdWbyL/FpnfoDxSb7G9KtNySmv1zWBFNNaZtXokktv+wyabln65
WpuOT8wNgJfkgHCwHLIh
=RKmR
-----END PGP SIGNATURE-----




|
|
|
|
|
|
|
|
|
|
|
|
|

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

iQIcBAABCAAGBQJiH9bXAAoJEFAslq9JXcLZD6YQAKxzjoxObdOgEF7FbUXR8Jw2
ihJ0l4xOa0HGE1TBcvOXsMiCoDz7yEgMY7FfrsButnjqbxl+LZSzTiJKdECH8TLl
iODosNQnnrl3JOt6obVXc0Z499OK7YaynTl24Qk43xV5wn9V4BAtZgYRnbE9unGl
xlF899yENubTXX406BXqtOAc54KQaiN2SqZ4HVKVxZol/HcW7x6DSWxbCWVIQFOk
UELKMQZKSFfP/Z2tvId8OaMtgYKakB5jRZOdg76bKJSUBg9Rk4IM86QCkXCwTT4m
cszTef4z0Hc/ShjFvSm+b4Fc5ONfZP4jI2GqR8rc9mfBIw90EZh+fVUo/23sZ1Tt
WwCDVDHvRLfo0JMZo3FVAJmWTZCHaToAVMTtLhHXX4obfTN/dyEV/W5nbmDXDG8I
VyKPs+ZQZQN/8khZRhM4l1PqfBDcEtkfs4lJPLkYBhnkf79lxiH2edXdhZAZ8Gv8
0En7mzBhfckHc1thG66vnmQylCt0Ltg84TtVyD6jF9MK9SRUJdWtqgeVEooh3Yll
59VVaWZy+jJs/HzRgfRRLKtBBYLW4ZZVR7fhNDgHJvdh9B4kyvg1T3TrXowJMx+o
sz+ADI8m32PxyGnMebOXntD1HqereetbFMdu/7sJ/9nuJvojrN+3au+0Pu1cLTZg
DTP0BRcJWybSoVRg6AUW
=/dBR
-----END PGP SIGNATURE-----

Modified doc/v1.html from [5df56b91d8] to [6c84fa6206].

100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151

<blockquote style="font-family: monospace;"><br>
This procedure modifies the version variables used by the package<br>
downloader client so that a specific version will be used.  The<br>
versionId argument must consist only of hexadecimal characters.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1355">::PackageDownloader::resetCookieAndLoginSimple</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure resets the currently configured login cookie, if<br>
any, and then attempts to login using the configured package<br>
repository server API key -OR- using the public access account.<br>
Upon success, it will set the login cookie to the one from the<br>
raw response data.  Upon failure, a script error will be raised.<br>
There are no arguments.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1405">::PackageDownloader::resetCookieAndLogin</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;userName&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;password&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure resets the currently configured login cookie, if<br>
any, and then attempts to login using the specified user name and<br>
password.  Upon success, it will set the login cookie to the one<br>
from the raw response data.  Upon failure, a script error will be<br>
raised.  The userName argument must be the name of a package file<br>
server user with at least Fossil Check-Out (o) permissions on the<br>
package file server.  The password argument must be the plaintext<br>
password that is associated with the specified user name.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1458">::PackageDownloader::logoutAndResetCookie</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to logout using the currently configured<br>
login cookie, if any, and then resets the login cookie.  There<br>
are no arguments.  This procedure may raise a script error.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1691">::PackageDownloader::checkForHigherVersion</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;platform&quot;</span></big><br>







|










|

















|







|







100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151

<blockquote style="font-family: monospace;"><br>
This procedure modifies the version variables used by the package<br>
downloader client so that a specific version will be used.  The<br>
versionId argument must consist only of hexadecimal characters.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1383">::PackageDownloader::resetCookieAndLoginSimple</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure resets the currently configured login cookie, if<br>
any, and then attempts to login using the configured package<br>
repository server API key -OR- using the public access account.<br>
Upon success, it will set the login cookie to the one from the<br>
raw response data.  Upon failure, a script error will be raised.<br>
There are no arguments.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1433">::PackageDownloader::resetCookieAndLogin</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;userName&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;password&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure resets the currently configured login cookie, if<br>
any, and then attempts to login using the specified user name and<br>
password.  Upon success, it will set the login cookie to the one<br>
from the raw response data.  Upon failure, a script error will be<br>
raised.  The userName argument must be the name of a package file<br>
server user with at least Fossil Check-Out (o) permissions on the<br>
package file server.  The password argument must be the plaintext<br>
password that is associated with the specified user name.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1486">::PackageDownloader::logoutAndResetCookie</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to logout using the currently configured<br>
login cookie, if any, and then resets the login cookie.  There<br>
are no arguments.  This procedure may raise a script error.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1719">::PackageDownloader::checkForHigherVersion</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;platform&quot;</span></big><br>
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
not require a specific platform.  The packageName argument is a<br>
directory name relative to the language and version-specific<br>
directory on the package file server and may be an empty string.<br>
The usePgp argument should be non-zero when an OpenPGP signature<br>
file needs to be downloaded and verified for the downloaded file.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=2006">::PackageDownloader::downloadFiles</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;platform&quot;</span></big><br>







|







167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
not require a specific platform.  The packageName argument is a<br>
directory name relative to the language and version-specific<br>
directory on the package file server and may be an empty string.<br>
The usePgp argument should be non-zero when an OpenPGP signature<br>
file needs to be downloaded and verified for the downloaded file.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=2027">::PackageDownloader::downloadFiles</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;platform&quot;</span></big><br>
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
when an OpenPGP signature file needs to be downloaded and verified<br>
for each downloaded file.  The -useAutoPath option should be<br>
non-zero to modify the auto-path to include the temporary or<br>
persistent directories containing the downloaded files.  The<br>
-allowUpdate option should be non-zero to allow existing package<br>
files to be overwritten.<br>
</blockquote><br><hr><br>






























<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=600">::PackageDownloader::downloadAndSaveOpenPgpKeyFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;fileName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to download the Package Signing Keys from<br>
the remote server and save it to a local file.  This procedure may<br>
raise script errors.  The fileName argument is the name of the file<br>
where the downloaded data should be written.  This procedure is only<br>
intended to be used from the &quot;pkgr_setup.eagle&quot; tool script and may<br>
go away in later versions of this package.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=971">::PackageDownloader::verifyPackageName</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;packageName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure verifies that the specified value is indeed a valid<br>
package name.  The packageName argument is the value to verify.<br>
This procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=984">::PackageDownloader::verifyPackagePatchLevel</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;patchLevel&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure verifies that the specified value is indeed a valid<br>
patch level.  The patchLevel argument is the value to verify.  This<br>
procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1005">::PackageDownloader::verifyLanguageAndVersion</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;varName&quot;</span></big><br>







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>















|










|










|







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
when an OpenPGP signature file needs to be downloaded and verified<br>
for each downloaded file.  The -useAutoPath option should be<br>
non-zero to modify the auto-path to include the temporary or<br>
persistent directories containing the downloaded files.  The<br>
-allowUpdate option should be non-zero to allow existing package<br>
files to be overwritten.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=2253">::PackageDownloader::maybeAddTemporaryPackagesToAutoPath</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;options&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Optional argument &quot;pattern&quot; with default value &quot;&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure adds temporary package directories to the auto-path<br>
of the specified language (i.e. native Tcl or Eagle).  Directories<br>
will not be added if already present.  The language argument must<br>
be the literal string &quot;eagle&quot; or the literal string &quot;tcl&quot;.  The<br>
pattern argument is the optional pattern to match against each of<br>
the candidate temporary package directories.  If the pattern is an<br>
empty string then all candidate temporary package directories will<br>
be added to the auto-path; otherwise, the pattern will be matched<br>
against the final portion of the temporary package directory name<br>
and only those temporary package directories that actually match<br>
the pattern will be added to the auto-path.  The options argument<br>
must be a dictionary of name/value pairs.  This procedure does not<br>
currently support any options.  This procedure may raise script<br>
errors.  This procedure assumes the local temporary directory is<br>
writable only by applications that are implicitly trusted by the<br>
current user.  If this assumption does not hold on your platform,<br>
DO NOT USE THIS PROCEDURE AS IT MAY BE UNSAFE.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=600">::PackageDownloader::downloadAndSaveOpenPgpKeyFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;fileName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to download the Package Signing Keys from<br>
the remote server and save it to a local file.  This procedure may<br>
raise script errors.  The fileName argument is the name of the file<br>
where the downloaded data should be written.  This procedure is only<br>
intended to be used from the &quot;pkgr_setup.eagle&quot; tool script and may<br>
go away in later versions of this package.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=999">::PackageDownloader::verifyPackageName</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;packageName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure verifies that the specified value is indeed a valid<br>
package name.  The packageName argument is the value to verify.<br>
This procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1012">::PackageDownloader::verifyPackagePatchLevel</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;patchLevel&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure verifies that the specified value is indeed a valid<br>
patch level.  The patchLevel argument is the value to verify.  This<br>
procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1033">::PackageDownloader::verifyLanguageAndVersion</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;varName&quot;</span></big><br>
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
match the major and minor portions of &quot;1.0&quot; and any remaining<br>
portions must be numeric.  The varName argument is the name of a<br>
scalar variable in the context of the immediate caller that will<br>
receive a boolean value indicating if the specified language is<br>
actually a reference to the package downloader client itself.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1038">::PackageDownloader::getPlatform</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure returns the name of the current platform.  There are<br>
no arguments.  An empty string will be returned if the name of the<br>
current platform cannot be determined for any reason.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1119">::PackageDownloader::verifyVersionId</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;versionId&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure verifies that the specified value is indeed a valid<br>
version identifier.  The versionId argument is the value to verify.<br>
This procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1138">::PackageDownloader::verifyPlatform</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;platform&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;varName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure verifies the platform specified by the caller.  The<br>
platform argument must be an empty string -OR- one of the literal<br>
strings &quot;msil&quot; or &quot;neutral&quot;, or one of the values returned by the<br>
[getPlatform] procedure.  An empty string means that the associated<br>
entity does not require a specific platform.  The varName argument<br>
is the name of a variable in the context of the immediate caller<br>
that will receive a modified platform name, if applicable.  Upon<br>
failure, a script error will be raised.  The return value is<br>
undefined.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1382">::PackageDownloader::maybeResetCookieAndLoginSimple</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to login using the configured package<br>
repository server API key -OR- using the public access account,<br>
if not already logged in.  Upon success, it will set the login<br>
cookie to the one from the raw response data.  Upon failure, a<br>
script error will be raised.  There are no arguments.<br>







|







|










|


















|







293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
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
match the major and minor portions of &quot;1.0&quot; and any remaining<br>
portions must be numeric.  The varName argument is the name of a<br>
scalar variable in the context of the immediate caller that will<br>
receive a boolean value indicating if the specified language is<br>
actually a reference to the package downloader client itself.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1066">::PackageDownloader::getPlatform</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure returns the name of the current platform.  There are<br>
no arguments.  An empty string will be returned if the name of the<br>
current platform cannot be determined for any reason.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1147">::PackageDownloader::verifyVersionId</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;versionId&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure verifies that the specified value is indeed a valid<br>
version identifier.  The versionId argument is the value to verify.<br>
This procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1166">::PackageDownloader::verifyPlatform</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;platform&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;varName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure verifies the platform specified by the caller.  The<br>
platform argument must be an empty string -OR- one of the literal<br>
strings &quot;msil&quot; or &quot;neutral&quot;, or one of the values returned by the<br>
[getPlatform] procedure.  An empty string means that the associated<br>
entity does not require a specific platform.  The varName argument<br>
is the name of a variable in the context of the immediate caller<br>
that will receive a modified platform name, if applicable.  Upon<br>
failure, a script error will be raised.  The return value is<br>
undefined.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Internal API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1410">::PackageDownloader::maybeResetCookieAndLoginSimple</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to login using the configured package<br>
repository server API key -OR- using the public access account,<br>
if not already logged in.  Upon success, it will set the login<br>
cookie to the one from the raw response data.  Upon failure, a<br>
script error will be raised.  There are no arguments.<br>
440
441
442
443
444
445
446
447














448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
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
616
617
618
619
620
621
622
623
624
<blockquote style="font-family: monospace;"><br>
This procedure returns non-zero if the specified file seems to be<br>
an OpenPGP signature file.  The fileName argument is the name of<br>
the file to check, which may or may not exist.  The nameOnly<br>
argument should be non-zero to ignore the contents of the file.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=710">::PackageDownloader::getAutoPath</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>














<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure returns the auto-path for the language specified by<br>
the language argument.  An empty list is returned if the auto-path<br>
does not exist in the target language.  This procedure may raise<br>
script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=758">::PackageDownloader::addToAutoPath</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;directory&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure adds a directory to the auto-path of the specified<br>
language (i.e. native Tcl or Eagle).  The directory will not be<br>
added if it is already present.  The language argument must be the<br>
literal string &quot;eagle&quot; or the literal string &quot;tcl&quot;.  The directory<br>
argument is the fully qualified path for the directory to add to<br>
the auto-path.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=807">::PackageDownloader::maybeAddToAutoPath</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;directory&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure adds a directory to the auto-path of the specified<br>
language (i.e. native Tcl or Eagle).  The directory will not be<br>
added if it is already present.  The language argument must be the<br>
literal string &quot;eagle&quot; or the literal string &quot;tcl&quot;.  The directory<br>
argument is the fully qualified path for the directory to add to<br>
the auto-path.  The directory will not be added if it falls under<br>
a directory already in the auto-path.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=880">::PackageDownloader::isMonoInstalled</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to verify that an instance of Mono and its<br>
associated runtimes are installed locally.  There are no arguments.<br>
The return value is non-zero if Mono appears to be installed and<br>
available for use; otherwise, the return value is zero.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=914">::PackageDownloader::isDotNetCoreInstalled</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to verify that an instance of .NET Core<br>
and its associated runtimes are installed locally.  There are no<br>
arguments.  The return value is non-zero if Mono appears to be<br>
installed and available for use; otherwise, the return value is<br>
zero.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=948">::PackageDownloader::canUseMsilPlatform</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to verify that some runtime is available to<br>
run CLR applications locally (e.g. the .NET Framework or Mono JIT).<br>
There are no arguments.  The return value is non-zero if it appears<br>
that CLR applications should be runnable locally; otherwise, the<br>
return value is zero.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1272">::PackageDownloader::getPackageFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;uri&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Optional argument &quot;allowHtml&quot; with default value &quot;false&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure issues a request to an HTTP(S) server.  It returns<br>
the raw response data verbatim.  It may raise a script error.  It<br>
will always use the currently configured HTTP(S) login cookie, if<br>
any; therefore, it should really only be used for requests to the<br>
package file server.  The uri argument is the fully qualified URI<br>
to request.  The allowHtml argument should be non-zero if raw HTML<br>
should be allowed in the response data.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1342">::PackageDownloader::getDownloadVarNamePrefix</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure returns the prefix for fully qualified variable<br>
names that MAY be present in the global namespace.  There are<br>
no arguments.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1512">::PackageDownloader::getUniqueTempDirectory</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Optional argument &quot;prefix&quot; with default value &quot;&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure returns a unique temporary directory where one or<br>
more files may be saved.  The prefix argument is a prefix for the<br>
directory name and it may be an empty string.  There is no attempt<br>
to actually create the resulting directory.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1542">::PackageDownloader::createInterp</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;varName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure creates a new interpreter, which may be &quot;safe&quot;, and<br>
places a reference to it in a variable in the context of the caller<br>
identified by the varName argument.  The created interpreter has a<br>
fully functioning [package] command ensemble; all other commands do<br>
nothing and return nothing.  This procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1619">::PackageDownloader::getIfNeededVersions</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;interp&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;fileName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure evaluates a script file and attempts to determine the<br>
list of new [package ifneeded] scripts added by it.  When successful<br>
it returns a list-of-lists.  Each element of the outer list contains<br>
a package name and the list of its versions in descending order; in<br>
the event of failure, empty lists may be returned for the outer list<br>
or for a list of versions.  The interp argument is the interp to use<br>
when evaluating the file specified by the fileName argument.  This<br>
procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1642">::PackageDownloader::extractVersionsFromFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;fileName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to extract a package version information<br>
from the specified file.  The fileName argument is the local file<br>
name to read.  This procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1754">::PackageDownloader::guessPackageNameFromFileNames</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;fileNames&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to guess a package name based on a list of<br>
its files.  It relies upon the fact that all packages must include<br>
a package index file.  The language argument must be one of the<br>
literal strings &quot;eagle&quot;, &quot;tcl&quot;, or &quot;client&quot;.  The fileNames argument<br>
must be the list of file names to be downloaded.  The package name,<br>
if one can be detected, is returned; otherwise, an empty string will<br>
be returned.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1788">::PackageDownloader::downloadAllPlatforms</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;packageName&quot;</span></big><br>







|
>
>
>
>
>
>
>
>
>
>
>
>
>
>











|















|
















|








|









|









|
















|







|











|












|

















|










|
















|







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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
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
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
<blockquote style="font-family: monospace;"><br>
This procedure returns non-zero if the specified file seems to be<br>
an OpenPGP signature file.  The fileName argument is the name of<br>
the file to check, which may or may not exist.  The nameOnly<br>
argument should be non-zero to ignore the contents of the file.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=710">::PackageDownloader::maybeVerifyOpenPgpSignature</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;fileName&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;forcePgp&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to verify the specified OpenPGP signature<br>
file.  If the forcePgp parameter is non-zero verification will be<br>
attempted even when the specified file does not appear to be an<br>
OpenPGP signature file.  This procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=738">::PackageDownloader::getAutoPath</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure returns the auto-path for the language specified by<br>
the language argument.  An empty list is returned if the auto-path<br>
does not exist in the target language.  This procedure may raise<br>
script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=786">::PackageDownloader::addToAutoPath</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;directory&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure adds a directory to the auto-path of the specified<br>
language (i.e. native Tcl or Eagle).  The directory will not be<br>
added if it is already present.  The language argument must be the<br>
literal string &quot;eagle&quot; or the literal string &quot;tcl&quot;.  The directory<br>
argument is the fully qualified path for the directory to add to<br>
the auto-path.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=835">::PackageDownloader::maybeAddToAutoPath</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;directory&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure adds a directory to the auto-path of the specified<br>
language (i.e. native Tcl or Eagle).  The directory will not be<br>
added if it is already present.  The language argument must be the<br>
literal string &quot;eagle&quot; or the literal string &quot;tcl&quot;.  The directory<br>
argument is the fully qualified path for the directory to add to<br>
the auto-path.  The directory will not be added if it falls under<br>
a directory already in the auto-path.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=908">::PackageDownloader::isMonoInstalled</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to verify that an instance of Mono and its<br>
associated runtimes are installed locally.  There are no arguments.<br>
The return value is non-zero if Mono appears to be installed and<br>
available for use; otherwise, the return value is zero.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=942">::PackageDownloader::isDotNetCoreInstalled</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to verify that an instance of .NET Core<br>
and its associated runtimes are installed locally.  There are no<br>
arguments.  The return value is non-zero if Mono appears to be<br>
installed and available for use; otherwise, the return value is<br>
zero.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=976">::PackageDownloader::canUseMsilPlatform</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to verify that some runtime is available to<br>
run CLR applications locally (e.g. the .NET Framework or Mono JIT).<br>
There are no arguments.  The return value is non-zero if it appears<br>
that CLR applications should be runnable locally; otherwise, the<br>
return value is zero.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1300">::PackageDownloader::getPackageFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;uri&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Optional argument &quot;allowHtml&quot; with default value &quot;false&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure issues a request to an HTTP(S) server.  It returns<br>
the raw response data verbatim.  It may raise a script error.  It<br>
will always use the currently configured HTTP(S) login cookie, if<br>
any; therefore, it should really only be used for requests to the<br>
package file server.  The uri argument is the fully qualified URI<br>
to request.  The allowHtml argument should be non-zero if raw HTML<br>
should be allowed in the response data.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1370">::PackageDownloader::getDownloadVarNamePrefix</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure returns the prefix for fully qualified variable<br>
names that MAY be present in the global namespace.  There are<br>
no arguments.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1540">::PackageDownloader::getUniqueTempDirectory</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Optional argument &quot;prefix&quot; with default value &quot;&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure returns a unique temporary directory where one or<br>
more files may be saved.  The prefix argument is a prefix for the<br>
directory name and it may be an empty string.  There is no attempt<br>
to actually create the resulting directory.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1570">::PackageDownloader::createInterp</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;varName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure creates a new interpreter, which may be &quot;safe&quot;, and<br>
places a reference to it in a variable in the context of the caller<br>
identified by the varName argument.  The created interpreter has a<br>
fully functioning [package] command ensemble; all other commands do<br>
nothing and return nothing.  This procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1647">::PackageDownloader::getIfNeededVersions</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;interp&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;fileName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure evaluates a script file and attempts to determine the<br>
list of new [package ifneeded] scripts added by it.  When successful<br>
it returns a list-of-lists.  Each element of the outer list contains<br>
a package name and the list of its versions in descending order; in<br>
the event of failure, empty lists may be returned for the outer list<br>
or for a list of versions.  The interp argument is the interp to use<br>
when evaluating the file specified by the fileName argument.  This<br>
procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1670">::PackageDownloader::extractVersionsFromFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;fileName&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to extract a package version information<br>
from the specified file.  The fileName argument is the local file<br>
name to read.  This procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1782">::PackageDownloader::guessPackageNameFromFileNames</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;fileNames&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure attempts to guess a package name based on a list of<br>
its files.  It relies upon the fact that all packages must include<br>
a package index file.  The language argument must be one of the<br>
literal strings &quot;eagle&quot;, &quot;tcl&quot;, or &quot;client&quot;.  The fileNames argument<br>
must be the list of file names to be downloaded.  The package name,<br>
if one can be detected, is returned; otherwise, an empty string will<br>
be returned.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1816">::PackageDownloader::downloadAllPlatforms</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;packageName&quot;</span></big><br>
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
is a directory name relative to the language and version-specific<br>
directory on the package file server and may be an empty string.<br>
The fileNames argument is the list of file names to be downloaded.<br>
The usePgp argument should be non-zero when an OpenPGP signature<br>
needs to be verified for the downloaded file.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1892">::PackageDownloader::downloadOneUriToFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;localFileName&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;uri&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;usePgp&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;forcePgp&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure downloads a single URI from the package file server<br>
and writes the result to a local file.  The localFileName argument<br>
is the file name where the downloaded file should be written.  The<br>
The uri argument is the URI to download.  The usePgp argument should<br>
be non-zero when the OpenPGP signature file needs to be verified for<br>
the downloaded file.  The return value is undefined.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1940">::PackageDownloader::downloadOneFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;platform&quot;</span></big><br>







|



















|







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
is a directory name relative to the language and version-specific<br>
directory on the package file server and may be an empty string.<br>
The fileNames argument is the list of file names to be downloaded.<br>
The usePgp argument should be non-zero when an OpenPGP signature<br>
needs to be verified for the downloaded file.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1920">::PackageDownloader::downloadOneUriToFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;localFileName&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;uri&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;usePgp&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;forcePgp&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure downloads a single URI from the package file server<br>
and writes the result to a local file.  The localFileName argument<br>
is the file name where the downloaded file should be written.  The<br>
The uri argument is the URI to download.  The usePgp argument should<br>
be non-zero when the OpenPGP signature file needs to be verified for<br>
the downloaded file.  The return value is undefined.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle&amp;ln=1961">::PackageDownloader::downloadOneFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgd.eagle">pkgd.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;language&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;platform&quot;</span></big><br>
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
This procedure modifies the URN variables used by the package<br>
repository client so that one or more alternative (private?)<br>
backend repository servers may be used.  The serverId argument<br>
must consist only of alphanumeric characters and it must begin<br>
with a letter.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2212">::PackageRepository::maybeReadSettingsFiles</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;script&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure evaluates the package repository client settings<br>
script file, if it exists.  Any script errors raised are not<br>
masked.  The script argument must be the fully qualified path<br>
and file name for the primary package repository client script<br>
file.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2545">::PackageRepository::getPackageFromRepository</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;package&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;caller&quot;</span></big><br>







|





|
|
|
<
|


|







837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852

853
854
855
856
857
858
859
860
861
862
863
This procedure modifies the URN variables used by the package<br>
repository client so that one or more alternative (private?)<br>
backend repository servers may be used.  The serverId argument<br>
must consist only of alphanumeric characters and it must begin<br>
with a letter.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2246">::PackageRepository::maybeReadSettingsFiles</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;script&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure evaluates package repository client settings script<br>
files, if they exists.  Any script errors raised are not masked.<br>
The script argument must be the fully qualified path and file name<br>

for a package client toolset script file.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Public API Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2593">::PackageRepository::getPackageFromRepository</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;package&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;version&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;caller&quot;</span></big><br>
1365
1366
1367
1368
1369
1370
1371
1372



















1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
package being sought, it cannot be an empty string.  The version<br>
argument must be a specific version -OR- a package specification<br>
that conforms to TIP #268.  This version argument must be optional<br>
here, because Eagle does not add a version argument when one is<br>
not explicitly supplied to the [package require] sub-command.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2288">::PackageRepository::maybeReadApiKeysFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>




















<blockquote style="font-family: monospace;"><br>
This procedure evaluates a package repository client API keys<br>
script file, if it has been configured -AND- actually exists.<br>
Any script errors raised are not masked.  The evaluated script<br>
file should (normally) modify the &quot;::pkgr_api_keys&quot; variable<br>
in order to add API keys for use with the package repository<br>
client.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2310">::PackageRepository::setupRepositoryOpenPgpVars</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;force&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure sets up the default values for all configuration<br>
parameters used to interact with the OpenPGP implementation.<br>
If the force argument is non-zero, any existing values will be<br>
overwritten and set back to their default values.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2432">::PackageRepository::setupPackageUnknownVars</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;force&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure sets up the default values for all configuration<br>
parameters used by the package repository client.  If the force<br>







|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>










|











|







1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
package being sought, it cannot be an empty string.  The version<br>
argument must be a specific version -OR- a package specification<br>
that conforms to TIP #268.  This version argument must be optional<br>
here, because Eagle does not add a version argument when one is<br>
not explicitly supplied to the [package require] sub-command.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2213">::PackageRepository::getSettingsPrefixes</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;scriptName&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;envVarName&quot;</span></big><br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;all&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure returns the list of possible prefixes that should be<br>
considered for settings files.  The scriptName parameter is the name<br>
of the script being evaluated, if any.  The envVarName parameter is<br>
the name of an environment variable associated with the script being<br>
evaluated, if any.  The all parameter should be non-zero to include<br>
all available prefixes, even if they are inapplicable to the current<br>
configuration.  This procedure may raise script errors.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2336">::PackageRepository::maybeReadApiKeysFile</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure evaluates a package repository client API keys<br>
script file, if it has been configured -AND- actually exists.<br>
Any script errors raised are not masked.  The evaluated script<br>
file should (normally) modify the &quot;::pkgr_api_keys&quot; variable<br>
in order to add API keys for use with the package repository<br>
client.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2358">::PackageRepository::setupRepositoryOpenPgpVars</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;force&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure sets up the default values for all configuration<br>
parameters used to interact with the OpenPGP implementation.<br>
If the force argument is non-zero, any existing values will be<br>
overwritten and set back to their default values.<br>
</blockquote><br><hr><br>

<big><big><span style="font-family: monospace;">Private Procedure &quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle&amp;ln=2480">::PackageRepository::setupPackageUnknownVars</a>&quot;&nbsp;(from&nbsp;&quot;<a href="$ROOT/artifact?ci=trunk&amp;filename=client/1.0/neutral/pkgr.eagle">pkgr.eagle</a>&quot;)</span></big></big><br>
<br>

<big><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;Required argument &quot;force&quot;</span></big><br>

<blockquote style="font-family: monospace;"><br>
This procedure sets up the default values for all configuration<br>
parameters used by the package repository client.  If the force<br>