~ubuntu-branches/ubuntu/vivid/cl-asdf/vivid

« back to all changes in this revision

Viewing changes to .pc/debian-changes-2:2.014.3-1/asdf.asd

  • Committer: Bazaar Package Importer
  • Author(s): Francois-Rene Rideau
  • Date: 2011-05-07 14:34:40 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20110507143440-3m8xtoo6w01048x5
Tags: 2:2.015-1
Promoting 2.014.17 as 2.015. Since 2.014, we have the following improvements:
* Portability: support cormanlisp, xcl;
  fixes for cmucl, ecl; tweaks for abcl, allegro, clisp, genera, lispworks.
* Feature: un-cerror and actually fix the :force '(sys1 sys2 sys3) feature,
  introduced in 2002 and never working before.
* Feature: classes asdf:cl-source-file.cl and asdf:cl-source-file.lsp
  for people who use these file type extensions.
* Semantic change: the source-registry eagerly gathers a list of .asd,
  rather than querying the filesystem over and over again.
* API change: exposing function asdf:search-for-system-definition as looking
  through asdf:*system-definition-search-functions* for either pathnames *or*
  (new feature) system objects. Should make quicklisp happier.
* Better support for asdf upgrading itself, with new function
  asdf:upgrade-asdf that knows to invalidate old systems when necessary,
  and is magically invoked before to build any system that :depends-on asdf.
  Make upgrade smoother some cases that were previously broken.
* More robust handling of version strings.
* Declaring function asdf:system-definition-pathname obsolete, but still
  supporting it for now, as an alias for asdf:system-source-file.
* Various refactorings of internals. Splitting a function asdf::perform-plan
  out of the default asdf:operate method.
  asdf::register-system now takes only one argument.
* Tests to prevent the regressions experienced during this development cycle
* Tried and reverted: attempts to make asdf more verbose when it's verbose,
  but not verbose by default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
;;; -*- mode: lisp -*-
2
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3
 
;;;                                                                  ;;;
4
 
;;; Free Software available under an MIT-style license.              ;;;
5
 
;;;                                                                  ;;;
6
 
;;; Copyright (c) 2001-2010 Daniel Barlow and contributors           ;;;
7
 
;;;                                                                  ;;;
8
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
9
 
 
10
 
(asdf:defsystem :asdf
11
 
  :author ("Daniel Barlow")
12
 
  :licence "MIT"
13
 
  :description "Another System Definition Facility"
14
 
  :long-description "ASDF builds Common Lisp software organized into defined systems."
15
 
  :version "2.014" ;; to be automatically updated by bin/bump-revision
16
 
  :depends-on ()
17
 
  :components
18
 
  ((:file "asdf")
19
 
   #+ecl (:file "asdf-ecl" :depends-on ("asdf"))))