Commit 8cc46b8e authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

2.29.6: some filesystem tweaks to accommodate Genera (!)

parent 921be307
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@
  :licence "MIT"
  :description "Another System Definition Facility"
  :long-description "ASDF builds Common Lisp software organized into defined systems."
  :version "2.29.5" ;; to be automatically updated by make bump-version
  :version "2.29.6" ;; to be automatically updated by make bump-version
  :depends-on ()
  #+asdf3 :encoding #+asdf3 :utf-8
  ;; For most purposes, asdf itself specially counts as a builtin system.
+40 −39
Original line number Diff line number Diff line
@@ -88,6 +88,7 @@ or the original (parsed) pathname if it is false (the default)."
        (null nil)
        (string (probe-file* (parse-namestring p) :truename truename))
        (pathname
         (and (not (wild-pathname-p p))
              (handler-case
                  (or
                   #+allegro
@@ -95,14 +96,14 @@ or the original (parsed) pathname if it is false (the default)."
                   #-(or allegro clisp gcl2.6)
                   (if truename
                       (probe-file p)
                  (and (not (wild-pathname-p p))
                       (ignore-errors
                        (let ((pp (translate-logical-pathname p)))
                          (and
                           #+(or cmu scl) (unix:unix-stat (ext:unix-namestring pp))
                           #+(and lispworks unix) (system:get-file-stat pp)
                           #+sbcl (sb-unix:unix-stat (sb-ext:native-namestring pp))
                          #-(or cmu (and lispworks unix) sbcl scl) (file-write-date pp)))
                       p))
                           #-(or cmu (and lispworks unix) sbcl scl) (file-write-date pp)
                           p))))
                   #+(or clisp gcl2.6)
                   #.(flet ((probe (probe)
                              `(let ((foundtrue ,probe))
@@ -128,7 +129,7 @@ or the original (parsed) pathname if it is false (the default)."
                                  ,resolve
                                  (and (ignore-errors (,fs p)) p))
                             (probe resolve)))))
           (file-error () nil))))))
                (file-error () nil)))))))

  (defun directory* (pathname-spec &rest keys &key &allow-other-keys)
    (apply 'directory pathname-spec
+1 −1
Original line number Diff line number Diff line
;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
;;; This is ASDF 2.29.5: Another System Definition Facility.
;;; This is ASDF 2.29.6: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
+4 −3
Original line number Diff line number Diff line
@@ -31,9 +31,9 @@ Some constraints:

(in-package :asdf-test)

(declaim (optimize (speed 2) (safety 3) #-(or allegro gcl) (debug 3)
(declaim (optimize (speed 2) (safety 3) #-(or allegro gcl genera) (debug 3)
		   #+(or cmu scl) (c::brevity 2)))
(proclaim '(optimize (speed 2) (safety 3) #-(or allegro gcl) (debug 3)
(proclaim '(optimize (speed 2) (safety 3) #-(or allegro gcl genera) (debug 3)
		     #+(or cmu scl) (c::brevity 2)))

(defvar *trace-symbols*
@@ -154,7 +154,8 @@ Some constraints:
(defparameter *test-directory*
  (truename
   (make-pathname :name nil :type nil :version nil
                  :defaults (or *load-pathname* *compile-file-pathname*))))
                  :defaults (or *load-pathname* *compile-file-pathname* *default-pathname-defaults*))))
(format t "bye, world~%")
(defun make-sub-pathname (&rest keys &key defaults &allow-other-keys)
  (merge-pathnames (apply 'make-pathname keys) defaults))
(defun relative-dir (&rest dir) #-gcl (cons ':relative dir) #+gcl dir)
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO
         ;; "3.4.5.67" would be a development version in the official upstream of 3.4.5.
         ;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5
         ;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67
         (asdf-version "2.29.5")
         (asdf-version "2.29.6")
         (existing-version (asdf-version)))
    (setf *asdf-version* asdf-version)
    (when (and existing-version (not (equal asdf-version existing-version)))
Loading