From 4259517c869da503ea15021505c010b33935bab3 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau Date: Thu, 7 Mar 2013 15:26:52 -0500 Subject: [PATCH] 2.32.1: try to make upgrade smoother on old SBCL 1.0.40 with old ASDF 2.011. Another issue with (setf output-translations). --- asdf.asd | 2 +- header.lisp | 2 +- output-translations.lisp | 5 ++++- upgrade.lisp | 2 +- version.lisp-expr | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/asdf.asd b/asdf.asd index 4a3edb18..2e3afda6 100644 --- a/asdf.asd +++ b/asdf.asd @@ -74,7 +74,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." - :version "2.32" ;; to be automatically updated by make bump-version + :version "2.32.1" ;; 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. diff --git a/header.lisp b/header.lisp index 65882688..2a25dac4 100644 --- a/header.lisp +++ b/header.lisp @@ -1,5 +1,5 @@ ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- -;;; This is ASDF 2.32: Another System Definition Facility. +;;; This is ASDF 2.32.1: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to . diff --git a/output-translations.lisp b/output-translations.lisp index 583bfe09..2b916939 100644 --- a/output-translations.lisp +++ b/output-translations.lisp @@ -48,7 +48,10 @@ and the order is by decreasing length of namestring of the source pathname.") (let ((directory (pathname-directory (car x)))) (if (listp directory) (length directory) 0)))))))) new-value) - (defsetf output-translations set-output-translations) ; works with gcl 2.6 + #-gcl2.6 + (defun* ((setf output-translations)) (new-value) (set-output-translations new-value)) + #+gcl2.6 + (defsetf output-translations set-output-translations) (defun output-translations-initialized-p () (and *output-translations* t)) diff --git a/upgrade.lisp b/upgrade.lisp index c6fe75cb..460fe039 100644 --- a/upgrade.lisp +++ b/upgrade.lisp @@ -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.32") + (asdf-version "2.32.1") (existing-version (asdf-version))) (setf *asdf-version* asdf-version) (when (and existing-version (not (equal asdf-version existing-version))) diff --git a/version.lisp-expr b/version.lisp-expr index 30158755..f6739636 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"2.32" +"2.32.1" -- GitLab