
Also see edit
In order to use the Package Repository Client, the following prerequisites must be met:
- The tls package available for use by the local Tcl installation; the IronTcl distribution already includes it.
- An implementation of the OpenPGP
standard that includes appropriate command-line tools (e.g. GPG
).
- The Package Client Toolset
, added to the auto_path of the local Tcl installation.
- The Package Signing Key
(dated "2003-06-09", with fingerprint C3C7 5138 83EE DD3A ED1F E425 502C 96AF 495D C2D9
) on your local OpenPGP key ring.

Important Notes
- The GPG executable ("gpg2") must reside along the PATH.
- When using Eagle, the Harpy packages and their associated license certificates must be available.
How to use with Eagle Beta 40 or later:
# NOTE: First, enable use of the [package unknown] handler... set iflags [object invoke -flags +NonPublic Interpreter.GetActive InterpreterFlags] object invoke -flags +NonPublic Interpreter.GetActive InterpreterFlags "$iflags -NoPackageUnknown" # NOTE: When troubleshooting, use the following commands before # loading the Package Client Toolset... namespace eval ::PackageRepository {variable verboseUnknownResult true; variable verboseUriDownload true} # NOTE: Download and load the Package Client Toolset... lappend auto_path [downloadAndExtractPackageClientToolset] package require Eagle.Package.Repository # NOTE: Test that the Package Client Toolset is working... package require ZZZ.Test; # NOTE: Should (eventually) result in "0.0"
How to use with IronTcl:
- Download the Package Client Toolset from here
.
- Extract the resulting ZIP file to a local directory.
- Add the local directory from the previous step joined with "client/1.0/neutral" to the auto_path.
- Evaluate the following commands:
# NOTE: When troubleshooting, use the following commands before # loading the Package Client Toolset... namespace eval ::PackageRepository {variable verboseUnknownResult true; variable verboseUriDownload true} # NOTE: Load the Package Client Toolset... package require Eagle.Package.Repository # NOTE: Test that the Package Client Toolset is working... package require ping; # NOTE: Should (eventually) result in "0.0"Other distributions of Tcl/Tk can also be used; however, they will need to have the http and tls packages already available as HTTPS is a hard-and-fast requirement.