Changeset 13034


Ignore:
Timestamp:
11/20/10 15:18:21 (13 years ago)
Author:
Mark Evenson
Message:

ASDF-INSTALL now uses the path search mechanism for 'gpg'.

Expand the searched paths to a more plausible set, adding
'/usr/local/bin' and '/opt/local/bin'.

Increment ASDF-INSTALL version to 0.6.10-ABCL.1 to note recent fixes.

Location:
trunk/abcl/contrib/asdf-install
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/contrib/asdf-install/asdf-install.asd

    r12487 r13034  
    1313  #+:sbcl :depends-on
    1414  #+:sbcl (sb-bsd-sockets)
    15   :version "0.6.10-ABCL.0"
     15  :version "0.6.10-ABCL.1"
    1616  :author "Dan Barlow <dan@telent.net>, Edi Weitz <edi@agharta.de> and many others. See the file COPYRIGHT for more details."
    1717  :maintainer "Gary Warren King <gwking@metabang.com>"
  • trunk/abcl/contrib/asdf-install/port.lisp

    r13030 r13034  
    385385    (values (download-url-to-file url tmp) tmp)))
    386386
     387(defun gpg-command ()
     388  (find-shell-command *gpg-command*))
     389
    387390(defun gpg-results (package signature)
    388391  (let ((tags nil))
     
    390393  (gpg-stream
    391394   (shell-command (format nil "~s --status-fd 1 --verify ~s ~s"
    392                                 *gpg-command*
     395                                (gpg-command)
    393396        (namestring signature) (namestring package))))
    394397      (loop for l = (read-line gpg-stream nil nil)
  • trunk/abcl/contrib/asdf-install/variables.lisp

    r13031 r13034  
    4949;; bin first
    5050(defvar *shell-search-paths* '((:absolute "bin")
    51                                (:absolute "usr" "bin"))
     51                               (:absolute "usr" "bin")
     52                               (:absolute "usr" "local" "bin")
     53                               (:absolute "opt" "local" "bin"))
    5254  "A list of places to look for shell commands.")
    5355
Note: See TracChangeset for help on using the changeset viewer.