Skip to content
Snippets Groups Projects
Commit 90f3c593 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Bump version after merge.

Merge branches 'master' and 'release' of http://common-lisp.net/project/asdf/asdf

Conflicts:
	asdf.lisp
No related branches found
No related tags found
No related merge requests found
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
(defvar *asdf-version* nil) (defvar *asdf-version* nil)
(defvar *upgraded-p* nil) (defvar *upgraded-p* nil)
(let* ((asdf-version ;; the 1+ helps the version bumping script discriminate (let* ((asdf-version ;; the 1+ helps the version bumping script discriminate
(subseq "VERSION:2.130" (1+ (length "VERSION")))) (subseq "VERSION:2.131" (1+ (length "VERSION"))))
(existing-asdf (fboundp 'find-system)) (existing-asdf (fboundp 'find-system))
(existing-version *asdf-version*) (existing-version *asdf-version*)
(already-there (equal asdf-version existing-version))) (already-there (equal asdf-version existing-version)))
...@@ -962,15 +962,13 @@ with given pathname and if it exists return its truename." ...@@ -962,15 +962,13 @@ with given pathname and if it exists return its truename."
;;;; methods: components ;;;; methods: components
(defmethod print-object ((c missing-component) s) (defmethod print-object ((c missing-component) s)
(format s "~@<component ~S not found~ (format s "~@<component ~S not found~@[ in ~A~]~@:>"
~@[ in ~A~]~@:>"
(missing-requires c) (missing-requires c)
(when (missing-parent c) (when (missing-parent c)
(component-name (missing-parent c))))) (component-name (missing-parent c)))))
(defmethod print-object ((c missing-component-of-version) s) (defmethod print-object ((c missing-component-of-version) s)
(format s "~@<component ~S does not match version ~A~ (format s "~@<component ~S does not match version ~A~@[ in ~A~]~@:>"
~@[ in ~A~]~@:>"
(missing-requires c) (missing-requires c)
(missing-version c) (missing-version c)
(when (missing-parent c) (when (missing-parent c)
...@@ -1194,8 +1192,7 @@ Going forward, we recommend new users should be using the source-registry. ...@@ -1194,8 +1192,7 @@ Going forward, we recommend new users should be using the source-registry.
(let* ((*print-circle* nil) (let* ((*print-circle* nil)
(message (message
(format nil (format nil
"~@<While searching for system ~S: ~S evaluated ~ "~@<While searching for system ~S: ~S evaluated to ~S which is not a directory.~@:>"
to ~S which is not a directory.~@:>"
system dir defaults))) system dir defaults)))
(error message)) (error message))
(remove-entry-from-registry () (remove-entry-from-registry ()
...@@ -1781,8 +1778,7 @@ recursive calls to traverse.") ...@@ -1781,8 +1778,7 @@ recursive calls to traverse.")
(defmethod perform ((operation operation) (c source-file)) (defmethod perform ((operation operation) (c source-file))
(sysdef-error (sysdef-error
"~@<required method PERFORM not implemented ~ "~@<required method PERFORM not implemented for operation ~A, component ~A~@:>"
for operation ~A, component ~A~@:>"
(class-of operation) (class-of c))) (class-of operation) (class-of c)))
(defmethod perform ((operation operation) (c module)) (defmethod perform ((operation operation) (c module))
...@@ -2062,8 +2058,7 @@ recursive calls to traverse.") ...@@ -2062,8 +2058,7 @@ recursive calls to traverse.")
(accept () (accept ()
:report :report
(lambda (s) (lambda (s)
(format s "~@<Continue, treating ~A as ~ (format s "~@<Continue, treating ~A as having been successful.~@:>"
having been successful.~@:>"
(operation-description op component))) (operation-description op component)))
(setf (gethash (type-of op) (setf (gethash (type-of op)
(component-operation-times component)) (component-operation-times component))
...@@ -2539,8 +2534,7 @@ located." ...@@ -2539,8 +2534,7 @@ located."
"No architecture feature found in ~a." "No architecture feature found in ~a."
*architecture-features*)) *architecture-features*))
(version (maybe-warn (lisp-version-string) (version (maybe-warn (lisp-version-string)
"Don't know how to get Lisp ~ "Don't know how to get Lisp implementation version.")))
implementation version.")))
(substitute-if (substitute-if
#\_ (lambda (x) (find x " /:\\(){}[]$#`'\"")) #\_ (lambda (x) (find x " /:\\(){}[]$#`'\""))
(format nil "~(~@{~a~^-~}~)" lisp version os arch))))) (format nil "~(~@{~a~^-~}~)" lisp version os arch)))))
......
cl-asdf (2:2.008-1) unstable; urgency=low
* new upstream: removes unwanted exports,
plays nicer with sbcl, cmucl, old clisp.
-- Francois-Rene Rideau <fare@tunes.org> Fri, 10 Sep 2010 17:16:06 -0400
cl-asdf (2:2.007-1) unstable; urgency=low
* new upstream, fixes lp#623992 introduced in 2.006, allows upgrade on SBCL.
-- Francois-Rene Rideau <fare@tunes.org> Wed, 25 Aug 2010 23:22:13 -0400
cl-asdf (2:2.006-1) unstable; urgency=low
* new upstream, with bug fixes and API changes.
-- Francois-Rene Rideau <fare@tunes.org> Tue, 24 Aug 2010 18:43:48 -0400
cl-asdf (2:2.005-1) unstable; urgency=low cl-asdf (2:2.005-1) unstable; urgency=low
* New upstream. * New upstream.
...@@ -23,7 +42,7 @@ cl-asdf (2:1.704-1) unstable; urgency=low ...@@ -23,7 +42,7 @@ cl-asdf (2:1.704-1) unstable; urgency=low
cl-asdf (2:1.627-1) unstable; urgency=low cl-asdf (2:1.627-1) unstable; urgency=low
* New upstream release. * New upstream release.
* Added dh_installinfo for info files. (Closes: #560290) * Added dh_installinfo for info files. (Closes: #560290)
* Incorporated run-shell-command patch for LispWorks. Thanks tianchun! * Incorporated run-shell-command patch for LispWorks. Thanks tianchun!
(Closes: #457919) (Closes: #457919)
...@@ -52,7 +71,7 @@ cl-asdf (1:20091221-1) unstable; urgency=low ...@@ -52,7 +71,7 @@ cl-asdf (1:20091221-1) unstable; urgency=low
cl-asdf (1:20090819-3) unstable; urgency=low cl-asdf (1:20090819-3) unstable; urgency=low
* Fixed the loop construct again. (Closes: #546205) * Fixed the loop construct again. (Closes: #546205)
-- Peter Van Eynde <pvaneynd@debian.org> Sat, 12 Sep 2009 10:08:23 +0100 -- Peter Van Eynde <pvaneynd@debian.org> Sat, 12 Sep 2009 10:08:23 +0100
...@@ -86,7 +105,7 @@ cl-asdf (1.111-1) unstable; urgency=low ...@@ -86,7 +105,7 @@ cl-asdf (1.111-1) unstable; urgency=low
* Fixed Vcs-Git field * Fixed Vcs-Git field
* Changed to group maintanance * Changed to group maintanance
* recreated upstream changelog with git2cl * recreated upstream changelog with git2cl
* Changed directory, so we depend on a newer clc * Changed directory, so we depend on a newer clc
-- Peter Van Eynde <pvaneynd@debian.org> Sat, 09 Feb 2008 10:07:21 +0100 -- Peter Van Eynde <pvaneynd@debian.org> Sat, 09 Feb 2008 10:07:21 +0100
...@@ -108,7 +127,7 @@ cl-asdf (1.109-1) unstable; urgency=low ...@@ -108,7 +127,7 @@ cl-asdf (1.109-1) unstable; urgency=low
a specific name and type. a specific name and type.
+ Removes inline component methods more carefully (and, I believe, correctly!). Helps keep LispWorks happy. + Removes inline component methods more carefully (and, I believe, correctly!). Helps keep LispWorks happy.
+ Reworked asdf tests to make them more robust and perhaps more flexible too. + Reworked asdf tests to make them more robust and perhaps more flexible too.
* Now use texlive to build. * Now use texlive to build.
-- Peter Van Eynde <pvaneynd@debian.org> Sun, 16 Sep 2007 14:45:57 +0200 -- Peter Van Eynde <pvaneynd@debian.org> Sun, 16 Sep 2007 14:45:57 +0200
...@@ -126,7 +145,7 @@ cl-asdf (1.106-1) experimental; urgency=low ...@@ -126,7 +145,7 @@ cl-asdf (1.106-1) experimental; urgency=low
+ Minor patch in class-for-type that evaluates only *package* at read + Minor patch in class-for-type that evaluates only *package* at read
time rather than (package-name *package*); this keeps case sensitive Lisps time rather than (package-name *package*); this keeps case sensitive Lisps
happy all the time and keeps case insensitive lisps happily insensitive. happy all the time and keeps case insensitive lisps happily insensitive.
+ A patch from Richard Kreuter that allows pathname defaulting to work + A patch from Richard Kreuter that allows pathname defaulting to work
better with *load-truename* and *default-pathname-defaults*; this makes it better with *load-truename* and *default-pathname-defaults*; this makes it
easier to work with defsystems in the REPL. easier to work with defsystems in the REPL.
...@@ -163,7 +182,7 @@ cl-asdf (1.99-2) unstable; urgency=low ...@@ -163,7 +182,7 @@ cl-asdf (1.99-2) unstable; urgency=low
* Move asdf.info files from sbcl to this package. * Move asdf.info files from sbcl to this package.
* move texinfo to BuildDependsIndep * move texinfo to BuildDependsIndep
* we build something build-indep * we build something build-indep
-- Peter Van Eynde <pvaneynd@debian.org> Fri, 30 Jun 2006 23:18:40 +0200 -- Peter Van Eynde <pvaneynd@debian.org> Fri, 30 Jun 2006 23:18:40 +0200
...@@ -201,14 +220,14 @@ cl-asdf (1.86-5) unstable; urgency=low ...@@ -201,14 +220,14 @@ cl-asdf (1.86-5) unstable; urgency=low
defsystem files. Now works again with McClim. Closes: #310640 defsystem files. Now works again with McClim. Closes: #310640
* Corrected dependencies. * Corrected dependencies.
* Added postinst rebuild of all clc-enabled lisps so the new version * Added postinst rebuild of all clc-enabled lisps so the new version
actually gets loaded. actually gets loaded.
-- Peter Van Eynde <pvaneynd@debian.org> Wed, 25 May 2005 08:22:17 +0200 -- Peter Van Eynde <pvaneynd@debian.org> Wed, 25 May 2005 08:22:17 +0200
cl-asdf (1.86-4) unstable; urgency=low cl-asdf (1.86-4) unstable; urgency=low
* My release script stripped the patch. So this should really contain the * My release script stripped the patch. So this should really contain the
patch. Damn. patch. Damn.
-- Peter Van Eynde <pvaneynd@debian.org> Tue, 10 May 2005 14:17:51 +0200 -- Peter Van Eynde <pvaneynd@debian.org> Tue, 10 May 2005 14:17:51 +0200
...@@ -338,7 +357,7 @@ cl-asdf (1.69) unstable; urgency=low ...@@ -338,7 +357,7 @@ cl-asdf (1.69) unstable; urgency=low
cl-asdf (1.68) unstable; urgency=low cl-asdf (1.68) unstable; urgency=low
* New upstream with 'asdf:test-op * New upstream with 'asdf:test-op
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 19 Mar 2003 10:16:01 -0700 -- Kevin M. Rosenberg <kmr@debian.org> Wed, 19 Mar 2003 10:16:01 -0700
...@@ -387,7 +406,7 @@ cl-asdf (1.57-1) unstable; urgency=low ...@@ -387,7 +406,7 @@ cl-asdf (1.57-1) unstable; urgency=low
cl-asdf (1.55-1) unstable; urgency=low cl-asdf (1.55-1) unstable; urgency=low
* New upstream.version (closes: 172074) * New upstream.version (closes: 172074)
-- Kevin M. Rosenberg <kmr@debian.org> Mon, 9 Dec 2002 10:23:21 -0700 -- Kevin M. Rosenberg <kmr@debian.org> Mon, 9 Dec 2002 10:23:21 -0700
...@@ -408,7 +427,7 @@ cl-asdf (1.49) unstable; urgency=low ...@@ -408,7 +427,7 @@ cl-asdf (1.49) unstable; urgency=low
* New upstream release, fixes run-shell-command for allegro. Code * New upstream release, fixes run-shell-command for allegro. Code
refactoring for run-shell-code. refactoring for run-shell-code.
* Support new CLC reregister command * Support new CLC reregister command
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 25 Sep 2002 23:57:23 -0600 -- Kevin M. Rosenberg <kmr@debian.org> Wed, 25 Sep 2002 23:57:23 -0600
cl-asdf (1.47) unstable; urgency=low cl-asdf (1.47) unstable; urgency=low
...@@ -534,7 +553,7 @@ cl-asdf (0.0+cvs.2002.08.18) unstable; urgency=low ...@@ -534,7 +553,7 @@ cl-asdf (0.0+cvs.2002.08.18) unstable; urgency=low
* Expand description in control file. * Expand description in control file.
* Change version numbering scheme since upstream has native debian * Change version numbering scheme since upstream has native debian
directory directory
-- Kevin M. Rosenberg <kmr@debian.org> Sat, 17 Aug 2002 14:25:33 -0600 -- Kevin M. Rosenberg <kmr@debian.org> Sat, 17 Aug 2002 14:25:33 -0600
cl-asdf (0.0+cvs.2002.08.15-1) unstable; urgency=low cl-asdf (0.0+cvs.2002.08.15-1) unstable; urgency=low
......
...@@ -11,7 +11,7 @@ usage () { ...@@ -11,7 +11,7 @@ usage () {
echo " - quit with exit status 0 on getting eof" echo " - quit with exit status 0 on getting eof"
echo " - quit with exit status >0 if an unhandled error occurs" echo " - quit with exit status >0 if an unhandled error occurs"
echo " you need to supply the .script in the second argument" echo " you need to supply the .script in the second argument"
echo " lisps include sbcl, clisp, allegro and allegromodern" echo " lisps include sbcl, clisp, cmucl, lispworks, clisp, allegro and allegromodern"
echo "OPTIONS:" echo "OPTIONS:"
echo " -d -- debug mode" echo " -d -- debug mode"
echo " -u -h -- show this message." echo " -u -h -- show this message."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment