Commit 39e6e154 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

2.012.2: cleanup name of cache directory for clisp (remove trailing dash)

parent aefbd229
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
  :licence "MIT"
  :description "Another System Definition Facility"
  :long-description "ASDF builds Common Lisp software organized into defined systems."
  :version "2.012.1" ;; to be automatically updated by bin/bump-revision
  :version "2.012.2" ;; to be automatically updated by bin/bump-revision
  :depends-on ()
  :components
  ((:file "asdf")
+7 −7
Original line number Diff line number Diff line
;;; -*- mode: common-lisp; package: asdf; -*-
;;; This is ASDF 2.012.1: Another System Definition Facility.
;;; This is ASDF 2.012.2: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
@@ -83,7 +83,7 @@
         ;; "2.345.6" would be a development version in the official upstream
         ;; "2.345.0.7" would be your seventh local modification of official release 2.345
         ;; "2.345.6.7" would be your seventh local modification of development version 2.345.6
         (asdf-version "2.012.1")
         (asdf-version "2.012.2")
         (existing-asdf (fboundp 'find-system))
         (existing-version *asdf-version*)
         (already-there (equal asdf-version existing-version)))
@@ -2619,15 +2619,15 @@ located."
                            *implementation-features*))
          (os   (maybe-warn (first-feature *os-features*)
                            "No os feature found in ~a." *os-features*))
          (arch #+clisp "" #-clisp
          (arch (or #-clisp
                    (maybe-warn (first-feature *architecture-features*)
                                "No architecture feature found in ~a."
                            *architecture-features*))
                                *architecture-features*)))
          (version (maybe-warn (lisp-version-string)
                               "Don't know how to get Lisp implementation version.")))
      (substitute-if
       #\_ (lambda (x) (find x " /:\\(){}[]$#`'\""))
       (format nil "~(~@{~a~^-~}~)" lisp version os arch)))))
       (format nil "~(~a~@{~@[-~a~]~}~)" lisp version os arch)))))


;;; ---------------------------------------------------------------------------
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ cl-asdf (2:2.012-1) unstable; urgency=low
    fixed infinite loop when filesystem clock is in the future,
    extended the AOT DSL and made it more futureproof,
    fixed how clear-system interacts with map-systems,
    used of directory under old SBCLs,
    fixed use of directory under old SBCLs,
    fixed run-shell-command status and version string under clisp,
    fixed error messages.
  * Synchronized version of asdf.asd and asdf.lisp, automatically.