diff --git a/Makefile b/Makefile index cbaf83a9da118342c252c8dc4615faeb5262929e..fb76b2d271ed7191fac854ddcc5bc396eefd74aa 100644 --- a/Makefile +++ b/Makefile @@ -200,13 +200,11 @@ extract-all-tagged-asdf: build/asdf.lisp # Note that the debian git at git://git.debian.org/git/pkg-common-lisp/cl-asdf.git is stale, # as we currently build directly from upstream at git://common-lisp.net/projects/asdf/asdf.git -debian-package: mrproper - : $${RELEASE:="$$(git tag -l '3.[0-9].[0-9]' | tail -n 1)"} ; echo building package version $$RELEASE ; \ - git-buildpackage --git-debian-branch=release --git-upstream-branch=release --git-upstream-tag=$$RELEASE --git-tag --git-retag --git-ignore-branch +debian-package: + ./bin/asdf-builder debian-package release -debian-package-from-master: mrproper - : $${RELEASE:="$$(git tag -l '3.[0-9].[0-9]' | tail -n 1)"} ; echo building package version $$RELEASE ; \ - git-buildpackage --git-debian-branch=master --git-upstream-branch=master --git-upstream-tag=$$RELEASE --git-tag --git-retag --git-ignore-branch +debian-package-from-master: + ./bin/asdf-builder debian-package master # Replace SBCL's ASDF with the current one. -- NOT recommended now that SBCL has ASDF2. diff --git a/TODO b/TODO index 3a76a9739d95cbba123a6ff089bc44306f18bd2c..84cfd0d7bc1a4a601c45697b7f636f14801bbc81 100644 --- a/TODO +++ b/TODO @@ -5,7 +5,7 @@ (as provided by the first 2011 iteration of Quicklisp), and I (fare) am pushing for swank-asdf to not support anything older than 2.019 (still used by LispWorks 6.1). - Hopefully, sometime in 2014, everyone will have adopted ASDF 3, or even 3.1.1. + Hopefully, sometime in 2014, everyone will have adopted ASDF 3.0.1, or even 3.1.2. Maybe remove old versions from upgrade tests; or maybe not: if we support old versions in any way, it should be for upgrade only, and "punt" is acceptable. diff --git a/asdf.asd b/asdf.asd index 7030d6ef6f91613cfd19650c8146018922c86b06..8f81840ef293669a6ee1a86af57a8babb006c741 100644 --- a/asdf.asd +++ b/asdf.asd @@ -75,7 +75,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." - :version "3.1.2" ;; to be automatically updated by make bump-version + :version "3.1.2.4" ;; to be automatically updated by make bump-version :depends-on () #+asdf3 :encoding #+asdf3 :utf-8 :class #.(if (find-class 'package-inferred-system nil) 'package-inferred-system 'system) diff --git a/bin/asdf-builder b/bin/asdf-builder index 3fc1c22639a3a19fe34ec94f582077a1220c495b..4f410e5f5488e681cee2e7b08ccf813ea99e5e64 100755 --- a/bin/asdf-builder +++ b/bin/asdf-builder @@ -8,7 +8,7 @@ ;;; ;;; Everything is MUCH simpler if you can assume your implementation has a recent-enough ASDF 3: ;;; just (require "asdf"), then configure in a subsequent eval-when form, -;;; so that you may use asdf: and uiop: prefix. +;;; in which you may then use asdf: and uiop: prefix. ;;; ;;; To use the user-configured ASDF rather than a deterministic self-contained project build, ;;; see instead how cl-launch 4.0.4 loads ASDF. @@ -146,29 +146,23 @@ (ensure-pathname (system-relative-pathname :asdf/defsystem ()) :want-physical t :want-absolute t :want-existing t :truename t)) -(defparameter /asdf-dir/ - (native-namestring *asdf-dir*)) -(defun apath (x &rest keys) (apply 'subpathname *asdf-dir* x keys)) +(defun pn (&rest x) + (subpathname *asdf-dir* (and x (uiop:resolve-relative-location x)))) +(defun nn (&rest x) + (native-namestring (apply 'pn x))) ;;; UIOP directory -(defvar *uiop-dir* (subpathname *asdf-dir* "uiop/")) -(defparameter /uiop-dir/ (native-namestring *uiop-dir*)) -(defun upath (x &rest keys) (apply 'subpathname *uiop-dir* x keys)) - +(defvar *uiop-dir* (pn "uiop/")) ;;; build directory -(defparameter *build-dir* - (ensure-pathname - "build/" :defaults *asdf-dir* - :want-relative t :ensure-absolute t - :ensure-subpath t)) -(defparameter /build-dir/ - (native-namestring *build-dir*)) +(defparameter *build-dir* (pn "build/")) +(defparameter /build-dir/ (nn "build/")) (defun bpath (x &rest keys) (apply 'subpathname *build-dir* x keys)) -(defparameter *version* - (safe-read-file-form - (subpathname *asdf-dir* "version.lisp-expr"))) +(defparameter *version-file* + (pn "version.lisp-expr")) + +(defparameter *version* (safe-read-file-form *version-file*)) (defun enough-namestring! (base pathname) (let ((e (enough-namestring base pathname))) @@ -201,40 +195,32 @@ (ensure-pathname base :want-absolute t :want-existing t :want-directory t) (dolist (f files) (check-type f string)) - (let* ((/base/ - (native-namestring - (ensure-pathname - base - :want-absolute t :want-directory t - :want-existing t :truename t))) + (let* ((base + (ensure-pathname + base + :want-absolute t :want-directory t + :want-existing t :truename t)) (destination (ensure-pathname name :defaults *build-dir* :want-relative t :ensure-absolute t :ensure-subpath t :ensure-directory t)) - (/destination/ - (native-namestring destination)) - (/tarball/ - (native-namestring - (ensure-pathname - (tarname name) - :defaults *build-dir* - :want-relative t :ensure-absolute t - :ensure-subpath t :want-file t - :ensure-directories-exist t))) - (/files/ - (mapcar 'native-namestring files))) + (tarball + (ensure-pathname + (tarname name) + :defaults *build-dir* + :want-relative t :ensure-absolute t + :ensure-subpath t :want-file t + :ensure-directories-exist t))) (assert (< 6 (length (pathname-directory destination)))) (when (probe-file* destination) (error "Destination ~S already exists, not taking chances - you can delete it yourself." destination)) (ensure-directories-exist destination) - (run (format nil "cd ~S && cp -pHux --parents ~{~S ~} ~S" - /base/ /files/ /destination/) :show t) - (run (format nil "tar zcfC ~S ~S ~S/" - /tarball/ /build-dir/ name) :show t) - (delete-directory-tree destination :validate (lambda (x) (equal (native-namestring x) /destination/))) + (run `(cp "-pHux" --parents ,@files ,destination) :directory base :show t) + (run `(tar "zcfC" ,tarball ,*build-dir* (,name /)) :show t) + (delete-directory-tree destination :validate (lambda (x) (equal x destination))) (values))) (defun driver-files () @@ -254,11 +240,12 @@ (make-tarball-under-build (asdf-defsystem-name) *asdf-dir* (asdf-defsystem-files))) (defun asdf-git-name () - (format nil "asdf-~A" *version*)) + (strcat "asdf-" *version*)) (defun make-git-tarball () (build-asdf) - (run (format nil "cd ~S && tar zcf build/~A.tar.gz build/asdf.lisp $(git ls-files)" - /asdf-dir/ (asdf-git-name)) :show t) + (with-current-directory ((pn)) + (run `(tar zcf ("build/" ,(asdf-git-name) ".tar.gz") build/asdf.lisp ,@(run/lines '(git ls-files))) + (asdf-git-name)) :show t) (values)) (defun asdf-lisp-name () @@ -266,8 +253,8 @@ (defun make-asdf-lisp () (build-asdf) - (concatenate-files (list (apath "build/asdf.lisp")) - (bpath (asdf-lisp-name)))) + (concatenate-files (list (pn "build/asdf.lisp")) + (pn "build/" (asdf-lisp-name)))) (defun make-archive () (make-driver-tarball) @@ -278,6 +265,7 @@ (defvar *clnet* "common-lisp.net") (defvar *clnet-asdf-public* "/project/asdf/public_html/") +(defun public-path (x) (strcat *clnet-asdf-public* x)) (defun publish-archive () (let ((tarballs (mapcar 'tarname (list (driver-name) (asdf-defsystem-name) (asdf-git-name))))) @@ -291,13 +279,13 @@ (defun link-archive () (run (format nil "ln -sf ~S ~S ; ln -sf ~S ~S ; ln -sf ~S ~S ; ln -sf ~S ~S" (tarname (driver-name)) - (strcat *clnet-asdf-public* "archives/uiop.tar.gz") + (public-path "archives/uiop.tar.gz") (tarname (asdf-defsystem-name)) - (strcat *clnet-asdf-public* "archives/asdf-defsystem.tar.gz") + (public-path "archives/asdf-defsystem.tar.gz") (tarname (asdf-git-name)) - (strcat *clnet-asdf-public* "archives/asdf.tar.gz") + (public-path "archives/asdf.tar.gz") (asdf-lisp-name) - (strcat *clnet-asdf-public* "archives/asdf.lisp")) + (public-path "archives/asdf.lisp")) :show t :host *clnet*) (values)) @@ -312,9 +300,6 @@ ("header.lisp" "This is ASDF " ": Another System Definition Facility.") ("upgrade.lisp" " (asdf-version \"" "\")"))) -(defparameter *version-file* - (apath "version.lisp-expr")) - (defparameter *old-version* nil) (defparameter *new-version* nil) @@ -376,13 +361,13 @@ (values new-text foundp))))) (defun transform-file (new-version file prefix suffix) - (maybe-replace-file (apath file) (version-transformer new-version file prefix suffix))) + (maybe-replace-file (pn file) (version-transformer new-version file prefix suffix))) (defun transform-files (new-version) (loop :for f :in *versioned-files* :do (apply 'transform-file new-version f))) (defun test-transform-file (new-version file prefix suffix) - (let ((lines (read-file-lines (apath file)))) + (let ((lines (read-file-lines (pn file)))) (dolist (l lines (progn (warn "Couldn't find a match in ~A" file) nil)) (multiple-value-bind (new-text foundp) (funcall (version-transformer new-version file prefix suffix t) l) @@ -402,9 +387,53 @@ (a "Rebuilding ASDF with bumped version") (build-asdf))) -(defun git-version () - (first (run/lines '("git" "describe" "--tags" "--match" "[0-9].[0-9][0-9]") :show t))) +(defparameter *version-tag-glob* "[0-9][.][0-9]*") + +(defun version-from-tag (&optional commit) + (first (run/lines `("git" "describe" "--tags" "--match" ,*version-tag-glob*) :show t))) + +(defun version-from-file (&optional commit) + (if commit + (run `("git" "show" (,commit":version.lisp-expr")) :output :form) + (read-file-form *version-file*))) + +(defun debian-version-from-file (&optional commit) + (let ((line + (if commit + (run `("git" "show" (,commit":debian/changelog")) :output :line) + (read-file-line "debian/changelog")))) + (cl-ppcre:register-groups-bind (ver) ("^cl-asdf [(]([0-9.:-]+)[)] " line) + ver))) + +(defun clean () + (with-current-directory ((pn)) + (run '(git clean -xfd))) + (values)) +(defun debian-package (&optional (release "release")) + (let* ((debian-version (debian-version-from-file release)) + (version (version-from-file release))) + (unless (cl-ppcre:register-groups-bind (x epoch ver rel) + ("^(([0-9]+):)?([0-9.]+)-([0-9]+)$" debian-version) + (declare (ignorable x epoch rel)) + (equal ver version)) + (error "Debian version ~A doesn't match asdf version ~A" debian-version version)) + (clean) + (format t "building package version ~A~%" (debian-version-from-file)) + (run `(git-buildpackage + ;; --git-ignore-new ;; for testing purpose + (--git-debian-branch= ,release) + (--git-upstream-tag="%(version)s") + ;;--git-upstream-tree=tag ;; if the changelog says 3.1.2, looks at that tag + ;;(--git-upstream-branch= ,version) ;; if the changelog says 3.1.2, looks at that tag + --git-tag --git-retag + ;; --git-no-pristine-tar + --git-force-create + --git-ignore-branch) + :directory (pn) :show t))) + +(defun re (arg) + (eval (read-from-string arg))) ;;;; Main entry point (defun main (args) diff --git a/build.xcvb b/build.xcvb index 3f8d65db364e49788f3644b893c9361ea12c22d3..689eec44a7c55434939a502b148029f5f42a56b3 100644 --- a/build.xcvb +++ b/build.xcvb @@ -5,6 +5,29 @@ :licence "MIT" ;; MIT-style license. See asdf.lisp :description "ASDF" :long-description "Another System Definition Facility." - :depends-on ("asdf") + :build-depends-on ("/uiop") :supersedes-asdf ("asdf") - :build-image nil)) + :build-image nil + :depends-on + ("upgrade" + "component" + "system" + "cache" + "find-system" + "find-component" + "operation" + "action" + "lisp-action" + "plan" + "operate" + "output-translations" + "source-registry" + "backward-internals" + "parse-defsystem" + "bundle" + "concatenate-source" + "backward-interface" + "package-inferred-system" + "interface" + "user" + "footer"))) diff --git a/bundle.lisp b/bundle.lisp index 654a77647ddad8cd3f073160bb8ca2cca86590f4..5a119471c498066698a2b448e660a8ba6586df9d 100644 --- a/bundle.lisp +++ b/bundle.lisp @@ -529,7 +529,7 @@ To continue, push :asdf-use-unsafe-mac-bundle-op onto *FEATURES*.~%~T~ Please report to ASDF-DEVEL if this works for you."))) -;;; Backward compatibility with pre-3.1.1 names +;;; Backward compatibility with pre-3.1.2 names (defclass fasl-op (selfward-operation) ((selfward-operation :initform 'compile-bundle-op :allocation :class))) (defclass load-fasl-op (selfward-operation) diff --git a/contrib/detect-multiply-used-files.lisp b/contrib/detect-multiply-used-files.lisp index a8f0909f608f6fc8c8d39029158d5908324d9ab6..c25424d559004840e1063644293fd4e821da2da6 100644 --- a/contrib/detect-multiply-used-files.lisp +++ b/contrib/detect-multiply-used-files.lisp @@ -26,5 +26,6 @@ :do (format t "~&~S =>~{ ~S~}~%" p l))) #| ;; Use it like that: +(asdf:load-systems system1 system2 ...) (detect-multiply-used-files:find-fishy-components) |# diff --git a/debian/control b/debian/control index ea971eda72ead5e8b4548f2ba34476209da75656..9ff5cff326244772044d8fbdb40b0854731663a1 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ Uploaders: Peter Van Eynde <pvaneynd@debian.org>, Robert P. Goldman <rpgoldman@sift.info> Build-Depends: debhelper (>> 7) Build-Depends-Indep: texinfo, texlive-extra-utils, texlive, texlive-generic-recommended -Standards-Version: 3.9.4 +Standards-Version: 3.9.5 Homepage: http://common-lisp.net/project/asdf/ Vcs-Git: git://common-lisp.net/projects/asdf/asdf.git diff --git a/debian/copyright b/debian/copyright index ebe292ffb0a957af99fdf788e56a581dd9b6a461..b7ed5c60dd1eec51d97418a45d4205d331e5b679 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,24 +1,20 @@ -This package was debianized by Robert P. Goldman <rpgoldman@sift.net> in May -2014. - -The source is available using git from common-lisp.net: - git clone git://common-lisp.net/projects/asdf/asdf.git -The package should conform +This package was initially debianized by Kevin M. Rosenberg <kmr@debian.org> on +Fri, 16 Aug 2002 23:14:49 -0600. +Peter Van Eynde took over in 2005. Then from 2010 to 2014, Francois-Rene Rideau +maintained the debian package as part of the upstream git repository at + git://common-lisp.net/projects/asdf/asdf.git The debian related changes and files are licensed according to the GPL-v2, see /usr/share/common-licenses/GPL-2 - Upstream Authors: Dan Barlow <dan@telent.net>, Francois-Rene Rideau (fare@tunes.org), Robert P. Goldman (rpgoldman@sift.net) & Contributors. -The original Debian packaging was done by Kevin M. Rosenberg <kmr@debian.org>, -in 2002. - Copyright: (This is the MIT / X Consortium license as taken from - http://www.opensource.org/licenses/mit-license.html) + http://www.opensource.org/licenses/mit-license.html on or about + Monday; July 13, 2009) Copyright (c) 2001-2014 Daniel Barlow, Francois-Rene Rideau, Robert P. Goldman, and contributors @@ -41,4 +37,3 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - diff --git a/debian/rules b/debian/rules index c03cc4db011452218f1f850528f80d379f03e2dc..fdf2a03aacdfb1edf45a023fc71903e484359f4b 100755 --- a/debian/rules +++ b/debian/rules @@ -30,7 +30,6 @@ binary-indep: build dh_testdir -i dh_testroot -i dh_prep -i - chmod +x test/run-tests.sh dh_installdirs -i dh_install -i #dh_lisp -i diff --git a/debian/watch b/debian/watch index 806cbdbbb5a42a784860d92c28ffe6649c730bc8..087c393fcc2a38bdbd7a40bb6ebd8f786850a884 100644 --- a/debian/watch +++ b/debian/watch @@ -2,4 +2,4 @@ # I can maintain the debian package directly in the upstream git. # But when I'm gone, anything goes. version=3 -http://common-lisp\.net/project/asdf/archives/asdf-([0-9]+(\.[0-9]+)*)\.tar\.gz +http://common-lisp.net/project/asdf/archives/ asdf-([0-9.]+)\.tar\.gz diff --git a/doc/Makefile b/doc/Makefile index f1f68bd0ecefb61fb08f3da6c4f9fc5046fd4b18..0afd36b0a630ac24605aa274c871d76f85d01fcb 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -8,7 +8,7 @@ website:=${userat}common-lisp.net:/project/asdf/public_html/ output = asdf.html asdf asdf.pdf asdf.info webfiles = index.html .htaccess style.css cclan.png lisp-logo120x80.png favicon.ico ${output} intermediate = asdf.cps asdf.log asdf.vr asdf.aux asdf.fn asdf.toc asdf.vrs \ - asdf.cp asdf.fns asdf.ky asdf.pg asdf.tp + asdf.cp asdf.fns asdf.ky asdf.pg asdf.tp asdf.tps all: asdf.html asdf.info asdf.pdf manual-html diff --git a/doc/asdf-manual-marked-up.pdf b/doc/asdf-manual-marked-up.pdf deleted file mode 100644 index 3fc98f6e769d1e4cda95a891ae5a770abd5994c8..0000000000000000000000000000000000000000 Binary files a/doc/asdf-manual-marked-up.pdf and /dev/null differ diff --git a/doc/asdf.texinfo b/doc/asdf.texinfo index 2639a8a7e88c13c47722b948ea492306b985b103..a26dfa8f2e85e276f92aec11698a611d0901b81e 100644 --- a/doc/asdf.texinfo +++ b/doc/asdf.texinfo @@ -310,7 +310,7 @@ If you want to download software from version control instead of tarballs, so you may more easily modify it, we recommend clbuild (@uref{http://common-lisp.net/project/clbuild/}). We recommend @file{~/common-lisp/} as a place into which to install Common Lisp software; -starting with ASDF 3.1.1, it is included in the default source-registry configuration. +starting with ASDF 3.1.2, it is included in the default source-registry configuration. @node Quick start summary, Loading ASDF, Introduction, Top @chapter Quick start summary @@ -331,7 +331,7 @@ Make sure ASDF can find system definitions through proper source-registry configuration. For more details, @xref{Configuring ASDF to find your systems}. The simplest way is simply to put all your lisp code in subdirectories of -@file{~/common-lisp/} (starting with ASDF 3.1.1), +@file{~/common-lisp/} (starting with ASDF 3.1.2), or @file{~/.local/share/common-lisp/source/} (for ASDF 2 and later, or if you want to keep source in a hidden directory). Such code will automatically be found. @@ -655,7 +655,7 @@ of If you install software there, you don't need further configuration.@footnote{@file{~/common-lisp/} is only included in the default configuration -starting with ASDF 3.1.1 or later.} +starting with ASDF 3.1.2 or later.} @item If you're using some tool to install software (e.g. Quicklisp), @@ -1728,7 +1728,7 @@ of output from ASDF operations. @node The package-inferred-system extension, , Other code in .asd files, Defining systems with defsystem @section The package-inferred-system extension -Starting with release 3.1.1, +Starting with release 3.1.2, ASDF supports a one-package-per-file style of programming, whereby each file is its own system, and dependencies are deduced from the @code{defpackage} form @@ -1783,7 +1783,7 @@ In the code above, the @code{:defsystem-depends-on (:asdf-package-system)} is for compatibility with older versions of ASDF 3 (ASDF 2 is not supported), and requires the @code{asdf-package-system} library to be present -(it is implicitly provided by ASDF starting with release 3.1.1, +(it is implicitly provided by ASDF starting with release 3.1.2, which can be detected with the feature @code{:asdf3.1}). The function @code{register-system-packages} has to be called to register @@ -1969,13 +1969,13 @@ If @var{force-not} is @code{:all}, then all systems are forced not to be recompiled even if modified since last compilation. If @var{force-not} is @code{t}, then all systems but the system being loaded are forced not to be recompiled even if modified since last compilation -(note: this was changed in ASDF 3.1.1). +(note: this was changed in ASDF 3.1.2). If @var{force-not} is a list, then it specifies a list of systems that are forced not to be recompiled even if modified since last compilation. Both @var{force} and @var{force-not} apply to systems that are dependencies and were already compiled. @var{force-not} takes precedences over @var{force}, -as it should, really, but unhappily only since ASDF 3.1.1. +as it should, really, but unhappily only since ASDF 3.1.2. Moreover, systems the name of which is member of the set @var{*immutable-systems*} (represented as an equal hash-table) are always considered @var{forced-not}, and even their @file{.asd} is not refreshed from the filesystem. @@ -2903,7 +2903,7 @@ if it exists. @item The source registry will be configured from default user configuration trees -@file{~/common-lisp/} (since ASDF 3.1.1 only), +@file{~/common-lisp/} (since ASDF 3.1.2 only), @file{~/.sbcl/systems/} (on SBCL only), @file{$XDG_DATA_HOME/common-lisp/systems/} (no recursion, link farm) @file{$XDG_DATA_HOME/common-lisp/source/}. @@ -4632,7 +4632,7 @@ we recommend you upgrade to ASDF 3 ASDF 2.27, released on Feb 1st 2013, and further 2.x releases up to 2.33, count as pre-releases of ASDF 3, and define the @code{:asdf3} feature; still, please use the latest release). -Release ASDF 3.1.1 and later also define the @code{:asdf3.1} feature. +Release ASDF 3.1.2 and later also define the @code{:asdf3.1} feature. @menu @@ -4674,7 +4674,7 @@ Releases starting with ASDF 2 push @code{:asdf2} onto @code{*features*}. Releases starting with ASDF 3 (including 2.27 and later pre-releases) push @code{:asdf3} onto @code{*features*}. -Furthermore, releases starting with ASDF 3.1.1 (April 2014), +Furthermore, releases starting with ASDF 3.1.2 (May 2014), though they count as ASDF 3, include enough progress that they push @code{:asdf3.1} onto @code{*features*}. You may depend on the presence or absence of these features diff --git a/doc/index.html b/doc/index.html index 6a82f05de7ccbe03c497a7409969a9d294275765..eab82071909c72711134d720daa8e437dfb692f5 100644 --- a/doc/index.html +++ b/doc/index.html @@ -36,9 +36,10 @@ <p>ASDF 3 is the current successor to Daniel Barlow's ASDF. It was rewritten for improved portability, robustness, usability, extensibility, configurability, internal consistency, - and the ability to create standalone executables. + and the ability to deliver standalone executables. It was pre-released as 2.27 on February 1st 2013, - released as 3.0.0 on May 15th 2013, with further stable releases since. + released as 3.0.0 on May 15th 2013, + and again as 3.1.2 on May 6th 2014. </p> <a id="what_it_is"></a> <h3>What it is</h3> @@ -210,22 +211,23 @@ (ASDF 3 does that automatically). </p> <!-- Note to self: - The maintainers of the following implementations follow asdf-announce: - clisp (sds) + asdf-announce may have been a casualty of some recent mailing-list reorganization. Check. +sds, maintainer of CLISP, used to listen to it. The maintainers of the following implementations require direct notification: - abcl ccl cmucl gcl lispworks sbcl mkcl scl xcl + abcl allegro ccl clisp cmucl ecl gcl lispworks mkcl sbcl scl xcl Armed Bear <armedbear-devel@common-lisp.net>, -openmcl-devel@clozure.com, -cmucl-imp@cmucl.cons.org, -gcl-devel@gnu.org, -lisp-support@lispworks.com, -bugs@franz.com, (allegro) -ecls-list@lists.sourceforge.net -SBCL Devel-list <sbcl-devel@lists.sourceforge.net>, -Jean-Claude Beaudoin <jean.claude.beaudoin@gmail.com>, (MKCL) -Douglas Crosher <dtc3@scieneer.com>, (Scieneer CL) -Peter Graves <gnooth@gmail.com> (XCL). +Allegro <bugs@franz.com>, +Clozure CL <openmcl-devel@clozure.com>, +GNU CLISP <clisp-list@lists.sourceforge.net> (sds) +CMU CL <cmucl-imp@cmucl.cons.org>, +ECL <ecls-list@lists.sourceforge.net>, +GCL <gcl-devel@gnu.org>, +LispWorks <lisp-support@lispworks.com>, +MKCL <jean.claude.beaudoin@gmail.com>, +SBCL <sbcl-devel@lists.sourceforge.net>, +Scieneer CL (Douglas Crosher) <dtc3@scieneer.com>, +XCL (Peter Graves) <gnooth@gmail.com> --> <p> If there is an old or new implementation that we are missing, @@ -252,7 +254,7 @@ Peter Graves <gnooth@gmail.com> (XCL). and the work we did on ASDF 3, see the extended version (26 pages) of our paper <cite><a href="http://fare.tunes.org/files/asdf3/asdf3-2014.html" - >ASDF3, or Why Lisp is Now an Acceptable Scripting Language</a></cite> + >ASDF 3, or Why Lisp is Now an Acceptable Scripting Language</a></cite> (<a href="http://fare.tunes.org/files/asdf3/asdf3-2014.pdf">PDF</a>, <a href="http://github.com/fare/asdf3-2013">git</a>). The shorter version (8 pages), submitted to @@ -262,7 +264,7 @@ Peter Graves <gnooth@gmail.com> (XCL). <a href="http://fare.tunes.org/files/asdf3/asdf3-2014.html">HTML</a>). Regarding ASDF 3, see also the slides of the <a href="https://github.com/fare/asdf3-2013/blob/master/els-slides.org" - >ASDF3 tutorial</a> presented at ELS 2013, + >ASDF 3 tutorial</a> presented at ELS 2013, and for an introduction to the source code, this video: <a href="https://www.youtube.com/watch?v=Qqqbc31ZZ-U">ASDF 3.1 walkthrough</a>. For more details about our work on ASDF 2, @@ -417,20 +419,15 @@ Peter Graves <gnooth@gmail.com> (XCL). <a id="news"></a> <h3>What is happening</h3> <dl> - <dt>May 2014</dt> - <dd>Version 3.1.2 of ASDF 3 has been released. - In addition to many significant improvements and bug fixes, - it notably sports the <tt>package-inferred-system</tt> extension. - </dd> - <dt>October 2013</dt> - <dd>Version 3.0.3 of ASDF 3 has been released. - It contains many bug fixes, including notably better Windows support. - </dd> - <dt>Since July 2013</dt> + <dt>July 2013 to May 2014</dt> <dd>François-René Rideau has resigned as maintainer - after releasing ASDF 3.0.1, but remains an active developer. + but remained an active developer. Robert P. Goldman is interim maintainer until someone more gifted, charming, dedicated, and better-looking can be secured to fill the role. + ASDF 3.0.2 was released in July 2013, 3.0.3 in October 2013, and 3.1.2 in May 2014. + In addition to significant improvements and bug fixes, + notably better Windows support, + ASDF 3.1.2 notably sports the <tt>package-inferred-system</tt> extension. </dd> <dt>November 2012 to June 2013</dt> <dd> @@ -470,7 +467,7 @@ Peter Graves <gnooth@gmail.com> (XCL). <dd>Christophe Rhodes is de facto maintainer, with notable contributions from Nikodemus Siivola, Peter Van Eynde, Edi Weitz, Kevin Rosenberg. - The system made more robust, a few more features. + The system made slightly more robust, a few more features. Last version: 1.97. </dd> <dt>August 2001 to May 2004</dt> @@ -487,7 +484,7 @@ Peter Graves <gnooth@gmail.com> (XCL). <a class="nav" href="http://common-lisp.net/" title="Common-Lisp.net"> <img src="http://common-lisp.net/project/cl-containers/shared/buttons/lisp-lizard.png" width="80" height="15" title="Common-Lisp.net" alt="Common-Lisp.net button" /></a> <p><span class="copyright"Copyright © 2001-2014 Daniel Barlow and contributors</span></p> <p>ASDF has an <a href="http://www.opensource.org/licenses/mit-license.php">MIT style</a> license</p> - <div id="timestamp">Last updated 2014-03-27</div> + <div id="timestamp">Last updated 2014-05-09</div> </div> </body> </html> diff --git a/header.lisp b/header.lisp index f320f940d74de75c7b6ee600e727b3f522cb7e69..5bf8851951e28255db6a9996089b4702cf2773b3 100644 --- a/header.lisp +++ b/header.lisp @@ -1,5 +1,5 @@ ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; buffer-read-only: t; -*- -;;; This is ASDF 3.1.2: Another System Definition Facility. +;;; This is ASDF 3.1.2.4: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. diff --git a/operate.lisp b/operate.lisp index 74aa5c539f5fc26102e07d076068fa286c1c160a..9562165a41591af4eb698faa269dd0547e79d43b 100644 --- a/operate.lisp +++ b/operate.lisp @@ -226,8 +226,8 @@ the implementation's REQUIRE rather than by internal ASDF mechanisms.")) (defun restart-upgraded-asdf () ;; If we're in the middle of something, restart it. (when *asdf-cache* - (let ((l (loop* :for (x y) :being :the hash-keys :of *asdf-cache* - :when (eq x 'find-system) :collect y))) + (let ((l (loop :for k :being :the hash-keys :of *asdf-cache* + :when (eq (first k) 'find-system) :collect (second k)))) (clrhash *asdf-cache*) (dolist (s l) (find-system s nil))))) (register-hook-function '*post-upgrade-restart-hook* 'restart-upgraded-asdf)) diff --git a/package-inferred-system.lisp b/package-inferred-system.lisp index 553dfc7154ff2577e90cb0269fa883b3be6c5c85..1ac8a3b82360a81a49ebdff7745c43ef1dd31037 100644 --- a/package-inferred-system.lisp +++ b/package-inferred-system.lisp @@ -14,7 +14,7 @@ (in-package :asdf/package-inferred-system) (with-upgradability () - (defparameter *defpackage-forms* '(cl:defpackage uiop:define-package)) + (defparameter *defpackage-forms* '(defpackage define-package)) (defun initial-package-inferred-systems-table () (let ((h (make-hash-table :test 'equal))) diff --git a/test/run-tests.sh b/test/run-tests.sh index ca0855ea1e01e22c9c775e17b8f48bc080e295e9..37b88001eebfc6420fea793ca9899f99ee40bec0 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -331,19 +331,21 @@ upgrade_tags () { # # The 3.0 series is a stable release of ASDF 3 # with Robert Goldman taking over maintainership at 3.0.2. - # 3.0.0 was 2.33.10 promoted, but version-satisfies meant it was suddenly + # 3.0.0 was just 2.33.10 promoted, but version-satisfies meant it was suddenly # not compatible with ASDF2 anymore, so we immediately released 3.0.1 # 3.0.1 (2013-05-16) is the first stable ASDF 3 release - # 3.0.2 (2013-07-02) was the first ASDF 3 in SBCL - # 3.0.3 (2013-10-22) was the last in the ASDF 3.0 series + # 3.0.2 (2013-07-02) is the first ASDF 3 in SBCL + # 3.0.3 (2013-10-22) is the last in the ASDF 3.0 series # # The 3.1 series provides the 3.1 feature, meaning users can rely on # all the stabilization work done in 3.0 so far, plus extra developments # in UIOP, package-inferred-system, and more robustification. + # 3.1.2 (2014-05-06) is the first ASDF 3.1 release # # We return the above designated versions in order of decreasing relevance, # which pretty much means REQUIRE and most recent first. echo REQUIRE + echo 3.1.2 echo 3.0.3 3.0.2 3.0.1 echo 2.32 2.27 echo 2.26 2.22 2.20 2.019 2.014.6 2.011 2.008 2.000 @@ -409,7 +411,7 @@ valid_upgrade_test_p () { cmucl:1.*|cmucl:2.*) : ;; # Skip many ECL tests, for various ASDF issues ecl*:1.*|ecl*:2.0[01]*|ecl*:2.20:*) : ;; - # GCL 2.7.0 from late November 2013 is required, with ASDF 3.1.1 + # GCL 2.7.0 from late November 2013 is required, with ASDF 3.1.2 gcl:REQUIRE:*|gcl:1.*|gcl:2.*|gcl:3.0*) : ;; # MKCL is only supported starting with specific versions 2.24, 2.26.x, 3.0.3.0.x, so skip. mkcl:[12]*|mkcl:3.0*) : ;; diff --git a/uiop/build.xcvb b/uiop/build.xcvb new file mode 100644 index 0000000000000000000000000000000000000000..6965ec1d2d0372f0fd206979b4c2fef51151e5b5 --- /dev/null +++ b/uiop/build.xcvb @@ -0,0 +1,23 @@ +#+xcvb +(module + (:fullname "/uiop" + :author ("Francois-Rene Rideau and contributors") + :licence "MIT" ;; MIT-style license. See asdf.lisp + :description "UIOP" + :long-description "Utilities for Implementation- and OS- Portability" + :supersedes-asdf ("uiop") + :build-image nil + :depends-on + ("package" + "common-lisp" + "utility" + "os" + "pathname" + "filesystem" + "stream" + "image" + "run-program" + "lisp-build" + "configuration" + "backward-driver" + "driver"))) diff --git a/uiop/common-lisp.lisp b/uiop/common-lisp.lisp index 4e156063b5947c1bccb888b86d87549a28b47322..514ee388ed76181314b0410f71d0b0261af46e49 100644 --- a/uiop/common-lisp.lisp +++ b/uiop/common-lisp.lisp @@ -8,8 +8,8 @@ (uiop/package:define-package :uiop/common-lisp (:nicknames :uoip/cl :asdf/common-lisp :asdf/cl) - (:use #-genera :common-lisp #+genera :future-common-lisp :uiop/package) - (:reexport :common-lisp) + (:use :uiop/package) + (:use-reexport #-genera :common-lisp #+genera :future-common-lisp) (:recycle :uiop/common-lisp :uoip/cl :asdf/common-lisp :asdf/cl :asdf) #+allegro (:intern #:*acl-warn-save*) #+cormanlisp (:shadow #:user-homedir-pathname) @@ -18,7 +18,7 @@ #:logical-pathname #:translate-logical-pathname #:make-broadcast-stream #:file-namestring) #+genera (:shadowing-import-from :scl #:boolean) - #+genera (:export #:boolean #:ensure-directories-exist) + #+genera (:export #:boolean #:ensure-directories-exist #:read-sequence #:write-sequence) #+mcl (:shadow #:user-homedir-pathname)) (in-package :uiop/common-lisp) @@ -98,9 +98,20 @@ #+genera (eval-when (:load-toplevel :compile-toplevel :execute) + (unless (fboundp 'lambda) + (defmacro lambda (&whole form &rest bvl-decls-and-body) + (declare (ignore bvl-decls-and-body)(zwei::indentation 1 1)) + `#',(cons 'lisp::lambda (cdr form)))) (unless (fboundp 'ensure-directories-exist) (defun ensure-directories-exist (path) - (fs:create-directories-recursively (pathname path))))) + (fs:create-directories-recursively (pathname path)))) + (unless (fboundp 'read-sequence) + (defun read-sequence (sequence stream &key (start 0) end) + (scl:send stream :string-in nil sequence start end))) + (unless (fboundp 'write-sequence) + (defun write-sequence (sequence stream &key (start 0) end) + (scl:send stream :string-out sequence start end) + sequence))) #.(or #+mcl ;; the #$ doesn't work on other lisps, even protected by #+mcl, so we use this trick (read-from-string diff --git a/uiop/driver.lisp b/uiop/driver.lisp index f36e02df060d0a1466a309ff82ef350b08da53fc..d05152823cc8fa9674af5b06125328405e0e37c9 100644 --- a/uiop/driver.lisp +++ b/uiop/driver.lisp @@ -14,4 +14,5 @@ :uiop/run-program :uiop/lisp-build :uiop/configuration :uiop/backward-driver)) -#+mkcl (provide :uiop) +;; Provide both lowercase and uppercase, to satisfy more people. +(provide "uiop") (provide "UIOP") diff --git a/uiop/filesystem.lisp b/uiop/filesystem.lisp index 392bb3956d512d1d8ba8896f504467f639dc70a9..0317c380631e23d6ca04f9db283499632c64efb6 100644 --- a/uiop/filesystem.lisp +++ b/uiop/filesystem.lisp @@ -592,13 +592,14 @@ in an atomic way if the implementation allows." directory-pathname (unix:get-unix-error-msg errno)))) #+cormanlisp (win32:delete-directory directory-pathname) #+ecl (si:rmdir directory-pathname) + #+genera (fs:delete-directory directory-pathname) #+lispworks (lw:delete-directory directory-pathname) #+mkcl (mkcl:rmdir directory-pathname) #+sbcl #.(if-let (dd (find-symbol* :delete-directory :sb-ext nil)) `(,dd directory-pathname) ;; requires SBCL 1.0.44 or later `(progn (require :sb-posix) (symbol-call :sb-posix :rmdir directory-pathname))) #+xcl (symbol-call :uiop :run-program `("rmdir" ,(native-namestring directory-pathname))) - #-(or abcl allegro clisp clozure cmu cormanlisp digitool ecl gcl lispworks mkcl sbcl scl xcl) + #-(or abcl allegro clisp clozure cmu cormanlisp digitool ecl gcl genera lispworks mkcl sbcl scl xcl) (error "~S not implemented on ~S" 'delete-empty-directory (implementation-type))) ; genera (defun delete-directory-tree (directory-pathname &key (validate nil validatep) (if-does-not-exist :error)) @@ -632,7 +633,7 @@ If you're suicidal or extremely confident, just use :VALIDATE T." (error "~S was asked to delete ~S but the directory does not exist" 'delete-filesystem-tree directory-pathname)) (:ignore nil))) - #-(or allegro cmu clozure sbcl scl) + #-(or allegro cmu clozure genera sbcl scl) ((os-unix-p) ;; On Unix, don't recursively walk the directory and delete everything in Lisp, ;; except on implementations where we can prevent DIRECTORY from following symlinks; ;; instead spawn a standard external program to do the dirty work. @@ -642,7 +643,7 @@ If you're suicidal or extremely confident, just use :VALIDATE T." #+allegro (symbol-call :excl.osi :delete-directory-and-files directory-pathname :if-does-not-exist if-does-not-exist) #+clozure (ccl:delete-directory directory-pathname) - #+genera (error "~S not implemented on ~S" 'delete-directory-tree (implementation-type)) + #+genera (fs:delete-directory directory-pathname :confirm nil) #+sbcl #.(if-let (dd (find-symbol* :delete-directory :sb-ext nil)) `(,dd directory-pathname :recursive t) ;; requires SBCL 1.0.44 or later '(error "~S requires SBCL 1.0.44 or later" 'delete-directory-tree)) diff --git a/uiop/image.lisp b/uiop/image.lisp index cb562c43823f5ca18c04901a7ad8e61ce18e8b5f..ca8a1ffb1cf56bd92d0590c9a854565e9d319c19 100644 --- a/uiop/image.lisp +++ b/uiop/image.lisp @@ -71,7 +71,7 @@ This is designed to abstract away the implementation specific quit forms." #+(or cmu scl) (unix:unix-exit code) #+ecl (si:quit code) #+gcl (system:quit code) - #+genera (error "You probably don't want to Halt the Machine. (code: ~S)" code) + #+genera (error "~S: You probably don't want to Halt Genera. (code: ~S)" 'quit code) #+lispworks (lispworks:quit :status code :confirm nil :return nil :ignore-errors-p t) #+mcl (progn code (ccl:quit)) ;; or should we use FFI to call libc's exit(3) ? #+mkcl (mk-ext:quit :exit-code code) diff --git a/uiop/run-program.lisp b/uiop/run-program.lisp index bae693bf8044d93baf9093c55b85fdf17279b3cc..c622339da96fdfcf56776adac709f6eee31561bf 100644 --- a/uiop/run-program.lisp +++ b/uiop/run-program.lisp @@ -773,7 +773,7 @@ It returns a process-info plist with possible keys: #+(or allegro clozure cmu (and lispworks os-unix) sbcl scl) (%wait-process-result (apply '%run-program (%normalize-system-command command) :wait t keys)) - #+(or abcl cormanlisp clisp ecl gcl (and lispworks os-windows) mkcl xcl) + #+(or abcl cormanlisp clisp ecl gcl genera (and lispworks os-windows) mkcl xcl) (let ((%command (%redirected-system-command command input output error-output directory))) #+(and lispworks os-windows) (system:call-system %command :current-directory directory :wait t) @@ -790,6 +790,8 @@ It returns a process-info plist with possible keys: (*error-output* *stderr*)) (ext:system %command)) #+gcl (system:system %command) + #+genera (error "~S not supported on Genera, cannot run ~S" + '%system %command) #+mcl (ccl::with-cstrs ((%%command %command)) (_system %%command)) #+mkcl (mkcl:system %command) #+xcl (system:%run-shell-command %command)))) diff --git a/uiop/stream.lisp b/uiop/stream.lisp index bd0f8c318ca98b0f17394caf89d1d35880b95100..7103dbdf800c33e88ad65c26939363ca80748db7 100644 --- a/uiop/stream.lisp +++ b/uiop/stream.lisp @@ -632,7 +632,9 @@ Upon success, the KEEP form is evaluated and the file is is deleted unless it ev (beforef (gensym "BEFORE")) (afterf (gensym "AFTER"))) `(flet (,@(when before - `((,beforef (,@(when streamp `(,stream)) ,@(when pathnamep `(,pathname))) ,@before))) + `((,beforef (,@(when streamp `(,stream)) ,@(when pathnamep `(,pathname))) + ,@(when after `((declare (ignorable ,pathname)))) + ,@before))) ,@(when after (assert pathnamep) `((,afterf (,pathname) ,@after)))) diff --git a/uiop/utility.lisp b/uiop/utility.lisp index aac6a3a62cc0602203baf43f514c1ac491719c1e..74780f1e1033495707a84a980ba1a2a322a61ad3 100644 --- a/uiop/utility.lisp +++ b/uiop/utility.lisp @@ -195,7 +195,7 @@ Returns two values: \(A B C\) and \(1 2 3\)." ;;; Characters (with-upgradability () ;; base-char != character on ECL, LW, SBCL, Genera. LW also has SIMPLE-CHAR. - (defconstant +non-base-chars-exist-p+ (not (subtypep 'character 'base-char))) + (defconstant +non-base-chars-exist-p+ #.(not (subtypep 'character 'base-char))) #-scl ;; In SCL, all characters seem to be 16-bit base-char, but this flag gets set somehow??? (when +non-base-chars-exist-p+ (pushnew :non-base-chars-exist-p *features*))) @@ -372,7 +372,7 @@ and EVAL that in a (FUNCTION ...) context." (etypecase fun (function fun) ((or boolean keyword character number pathname) (constantly fun)) - (hash-table (lambda (x) (gethash x fun))) + (hash-table #'(lambda (x) (gethash x fun))) (symbol (fdefinition fun)) (cons (if (eq 'lambda (car fun)) (eval fun) diff --git a/upgrade.lisp b/upgrade.lisp index b7afd97825620e9d121831de2b3ca5b5f53946b7..c83266f4f774ce7b3ee60903135d2b778e0165a9 100644 --- a/upgrade.lisp +++ b/upgrade.lisp @@ -67,7 +67,7 @@ previously-loaded version of ASDF." ;; "3.4.5.67" would be a development version in the official branch, on top 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 "3.1.2") + (asdf-version "3.1.2.4") (existing-version (asdf-version))) (setf *asdf-version* asdf-version) (when (and existing-version (not (equal asdf-version existing-version))) diff --git a/user.lisp b/user.lisp index e78731de141f9ba87a0871822a4dde86aff134b8..6b04887436c5f5c06b3128c28ee8ae5fc86f545c 100644 --- a/user.lisp +++ b/user.lisp @@ -3,7 +3,7 @@ (uiop/package:define-package :asdf/user (:nicknames :asdf-user) - ;; NB: releases before 3.1.1 this :use'd only uiop/package instead of uiop below. + ;; NB: releases before 3.1.2 this :use'd only uiop/package instead of uiop below. ;; They also :use'd uiop/common-lisp, that reexports common-lisp and is not included in uiop. ;; ASDF3 releases from 2.27 to 2.31 called uiop asdf-driver and asdf/foo uiop/foo. ;; ASDF1 and ASDF2 releases (2.26 and earlier) create a temporary package diff --git a/version.lisp-expr b/version.lisp-expr index fe343d0349f442f5cd3a585d78939171c153960a..ecf9a58b0b3f0a442805428938692d75b2c6e47c 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1,2 +1,2 @@ -"3.1.2" +"3.1.2.4"