From 61d00892d6d66ade54a32b186d9f86da180a5da4 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Thu, 10 Jan 2013 14:54:45 -0500 Subject: [PATCH] 2.26.70: fix package breakage on ECL. --- asdf.asd | 2 +- header.lisp | 2 +- lisp-action.lisp | 2 +- lisp-build.lisp | 2 +- test/test-around-compile.script | 2 -- upgrade.lisp | 2 +- 6 files changed, 5 insertions(+), 7 deletions(-) diff --git a/asdf.asd b/asdf.asd index ba0f23e3..a84d9dbd 100644 --- a/asdf.asd +++ b/asdf.asd @@ -14,7 +14,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." - :version "2.26.69" ;; to be automatically updated by bin/bump-revision + :version "2.26.70" ;; to be automatically updated by bin/bump-revision :depends-on () :components ((:file "asdf"))) diff --git a/header.lisp b/header.lisp index e55e325e..8b964219 100644 --- a/header.lisp +++ b/header.lisp @@ -1,5 +1,5 @@ ;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; coding: utf-8 -*- -;;; This is ASDF 2.26.69: Another System Definition Facility. +;;; This is ASDF 2.26.70: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. diff --git a/lisp-action.lisp b/lisp-action.lisp index 73e97428..fc15a562 100644 --- a/lisp-action.lisp +++ b/lisp-action.lisp @@ -4,7 +4,7 @@ (asdf/package:define-package :asdf/lisp-action (:recycle :asdf/lisp-action :asdf) (:intern #:proclamations #:flags) - (:use :common-lisp :asdf/utility :asdf/lisp-build + (:use :common-lisp :asdf/implementation :asdf/utility :asdf/lisp-build :asdf/component :asdf/system :asdf/find-component :asdf/operation :asdf/action) (:export #:compile-error #:compile-failed #:compile-warned #:try-recompiling diff --git a/lisp-build.lisp b/lisp-build.lisp index 12d7a539..b93b19e3 100644 --- a/lisp-build.lisp +++ b/lisp-build.lisp @@ -3,7 +3,7 @@ (asdf/package:define-package :asdf/lisp-build (:recycle :asdf/lisp-build :asdf) - (:use :common-lisp :asdf/utility :asdf/pathname :asdf/os) + (:use :common-lisp :asdf/implementation :asdf/utility :asdf/pathname :asdf/os) (:fmakunbound #:compile-file*) (:export #:*compile-file-warnings-behaviour* #:*compile-file-failure-behaviour* diff --git a/test/test-around-compile.script b/test/test-around-compile.script index e6b93bed..885ac8a5 100644 --- a/test/test-around-compile.script +++ b/test/test-around-compile.script @@ -6,8 +6,6 @@ (let ((*read-base* 2)) (funcall thunk))) -(trace call-in-base-2 compile-file load asdf::around-compile-hook) - (quit-on-error (defsystem test-around-compile :around-compile call-in-base-2 diff --git a/upgrade.lisp b/upgrade.lisp index 0c09862a..c1fb63cb 100644 --- a/upgrade.lisp +++ b/upgrade.lisp @@ -24,7 +24,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.26.69") + (asdf-version "2.26.70") (existing-asdf (find-class (find-symbol* :component :asdf nil) nil)) (existing-version *asdf-version*) (already-there (equal asdf-version existing-version))) -- GitLab