66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#
# 2. Unset the "pkgr_path" (namespace) variable that was created by
# the auto-path adjustment script fragment (above).
#
if {[info exists pkgr_path]} then {
catch {
::Eagle::exportAndImportPackageCommands ::Eagle \
[list appendArgs getDictionaryValue isEagle \
isWindows readFile writeFile] false false
}
unset -nocomplain pkgr_path
}
#
# NOTE: This procedure is used to provide a TIP #194 compatible [apply]
|
|
|
|
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#
# 2. Unset the "pkgr_path" (namespace) variable that was created by
# the auto-path adjustment script fragment (above).
#
if {[info exists pkgr_path]} then {
catch {
::Eagle::exportAndImportPackageCommands ::Eagle \
[list addToPath appendArgs getDictionaryValue \
isEagle isWindows readFile writeFile] false false
}
unset -nocomplain pkgr_path
}
#
# NOTE: This procedure is used to provide a TIP #194 compatible [apply]
|
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
|
#
# NOTE: This is the name of the executable file used to invoke the
# OpenPGP implementation, without an extension.
#
variable openPgpInstalledFileName; # DEFAULT: gpg2
if {![info exists openPgpInstalledFileName]} then {
set openPgpInstalledFileName gpg2
}
#
# NOTE: The command to use when attempting to import an OpenPGP key
# file. This must be configured according to the implementation
# of OpenPGP in use.
#
|
>
>
>
|
>
|
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
|
#
# NOTE: This is the name of the executable file used to invoke the
# OpenPGP implementation, without an extension.
#
variable openPgpInstalledFileName; # DEFAULT: gpg2
if {![info exists openPgpInstalledFileName]} then {
if {[isWindows]} then {
set openPgpInstalledFileName gpg2.exe
} else {
set openPgpInstalledFileName gpg2
}
}
#
# NOTE: The command to use when attempting to import an OpenPGP key
# file. This must be configured according to the implementation
# of OpenPGP in use.
#
|