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

2.33: bless 2.32.38 as release, with build updates.

parent f081332c
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -102,11 +102,12 @@ clean:
		done; \
	     fi; \
	done
	rm -rf build/ LICENSE test/try-reloading-dependency.asd
	rm -rf build/ LICENSE test/try-reloading-dependency.asd test/hello-world-example
	rm -rf .pc/ build-stamp debian/patches/ debian/debhelper.log debian/cl-asdf/ # debian crap
	${MAKE} -C doc clean

mrproper: clean
	rm -rf .pc/ build-stamp debian/patches/ debian/debhelper.log debian/cl-asdf/ # debian crap
mrproper:
	git clean -xfd

test-upgrade: build/asdf.lisp
	./test/run-tests.sh -u ${l}
+1 −0
Original line number Diff line number Diff line
* fix directory-files to not return directories on CCL, etc. Add tests.
* use cl-test-grid to see if asdf-user can :use most of UIOP.
  Unhappily, on SBCL, sb-grovel uses asdf and sb-ext,
  which causes a clash with run-program.
+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.32.38" ;; to be automatically updated by make bump-version
  :version "2.33" ;; 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.
+13 −10
Original line number Diff line number Diff line
@@ -3,7 +3,9 @@ cl-asdf (2:2.33-1) unstable; urgency=low
  ASDF 2.33 is a set of cleanups since 2.32.
  Since previous release 2.32, it includes the following changes:

  * deferred-warning receives yet more improvements for CCL.
  * Portability tweaks for ABCL, Allegro, CCL, CLISP, ECL, LispWorks, SBCL.

  * deferred-warning received yet more improvements for CCL.

  * upgrade is made more robust in many cases, notably for ECL, SBCL,
    or when using UIOP with an old ASDF<=2.26.
@@ -18,16 +20,17 @@ cl-asdf (2:2.33-1) unstable; urgency=low
    directory-exists-p, file-exists-p were added to UIOP,
    also better strcat, with reduce/strcat, base-string-p, etc.

  * Portability tweaks for Allegro, Clozure, CLISP, ECL, LispWorks, SBCL.

  * Recompilation avoided for things already done by defsystem-depends-on.

  * monolithic-fasl-op was fixed in cases when the main system has components.

  * fasl-op and monolithic-fasl-op now work on ABCL trunk and upcoming 1.2.0,
    and will eventually replace the ABCL-JAR contrib.

  * *uninteresting-conditions* was added as a common list of conditions
    shared between the compile-time and load-time muffled conditions.

 -- Francois-Rene Rideau <fare@tunes.org>  Thu, 27 Mar 2013 13:30:26 -0500
 -- Francois-Rene Rideau <fare@tunes.org>  Thu, 04 Apr 2013 01:54:26 -0400

cl-asdf (2:2.32-1) unstable; urgency=low

+1 −1
Original line number Diff line number Diff line
;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
;;; This is ASDF 2.32.38: Another System Definition Facility.
;;; This is ASDF 2.33: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
Loading