Changeset 13038
- Timestamp:
- 11/20/10 15:41:55 (11 years ago)
- Location:
- branches/0.23.x/abcl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.23.x/abcl/CHANGES
r13037 r13038 14 14 * [svn r12994] New java-interop macros: CHAIN and JMETHOD-LET 15 15 16 * [svn r13031] Ensure that the ASDF registry contains the ASDF-INSTALL locations. 16 * [svn r13030-31,r13034] ASDF-INSTALL improvements: Ensure that the 17 ASDF registry contains the ASDF-INSTALL locations. Better 18 resolution mechanism for 'gpg' binary. 17 19 18 20 Fixes -
branches/0.23.x/abcl/contrib/asdf-install/asdf-install.asd
r12487 r13038 13 13 #+:sbcl :depends-on 14 14 #+:sbcl (sb-bsd-sockets) 15 :version "0.6.10-ABCL. 0"15 :version "0.6.10-ABCL.1" 16 16 :author "Dan Barlow <dan@telent.net>, Edi Weitz <edi@agharta.de> and many others. See the file COPYRIGHT for more details." 17 17 :maintainer "Gary Warren King <gwking@metabang.com>" -
branches/0.23.x/abcl/contrib/asdf-install/port.lisp
r13037 r13038 385 385 (values (download-url-to-file url tmp) tmp))) 386 386 387 (defun gpg-command () 388 (find-shell-command *gpg-command*)) 389 387 390 (defun gpg-results (package signature) 388 391 (let ((tags nil)) … … 390 393 (gpg-stream 391 394 (shell-command (format nil "~s --status-fd 1 --verify ~s ~s" 392 *gpg-command*395 (gpg-command) 393 396 (namestring signature) (namestring package)))) 394 397 (loop for l = (read-line gpg-stream nil nil) -
branches/0.23.x/abcl/contrib/asdf-install/variables.lisp
r13037 r13038 49 49 ;; bin first 50 50 (defvar *shell-search-paths* '((:absolute "bin") 51 (:absolute "usr" "bin")) 51 (:absolute "usr" "bin") 52 (:absolute "usr" "local" "bin") 53 (:absolute "opt" "local" "bin")) 52 54 "A list of places to look for shell commands.") 53 55
Note: See TracChangeset
for help on using the changeset viewer.