diff --git a/Makefile b/Makefile index ef4890bf8e0ae092a37285cdf7d8d82e9b7841d7..d5060d37f519af88afb09b447fb95de4b6788282 100644 --- a/Makefile +++ b/Makefile @@ -53,6 +53,7 @@ load: build/asdf.lisp install: archive-copy +bump: bump-version bump-version: build/asdf.lisp ./bin/asdf-builder bump-version diff --git a/asdf.asd b/asdf.asd index b8967bb6863a1d0ffc1828a0754094caa3ebcf32..77e9deea1fa836d1db7eadde17d1a0d705983252 100644 --- a/asdf.asd +++ b/asdf.asd @@ -15,7 +15,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." - :version "2.26.112" ;; to be automatically updated by bin/bump-revision + :version "2.26.113" ;; to be automatically updated by bin/bump-revision :depends-on () :components ((:module "build" :components ((:file "asdf")))) :in-order-to (#+asdf2.27 (compile-op (monolithic-load-concatenated-source-op generate-asdf)))) diff --git a/bin/asdf-builder b/bin/asdf-builder index c6f4470e9e8e6d99d39439babee9beeff4865d1c..90d779b19d02250aaec5b2f6aef331e18a6df582 100755 --- a/bin/asdf-builder +++ b/bin/asdf-builder @@ -11,7 +11,8 @@ (defun build-asdf () ;; Make sure asdf.lisp is built. - (asdf:build-system :asdf/generate)) + (build-system :asdf/generate) + (load-system :asdf)) ;;; ASDF directory @@ -53,7 +54,7 @@ (system-source-directory sys) :want-absolute t :want-directory t)) (components - (operated-components + (asdf::operated-components sys :other-systems nil :goal-operation 'load-op :keep-operation 'load-op @@ -116,14 +117,16 @@ (make-tarball-under-build (driver-name) *asdf-dir* (driver-files))) (defun asdf-only-files () - (list* "asdf.asd" "version.lisp-expr" "header.lisp" + (list* "asdf.asd" "build/asdf.lisp" "version.lisp-expr" "header.lisp" (system-source-files :asdf/generate))) (defun asdf-only-name () (format nil "asdf-only-~A" *version*)) (defun make-asdf-only-tarball () + (build-asdf) (make-tarball-under-build (asdf-only-name) *asdf-dir* (asdf-only-files))) (defun make-git-tarball () + (build-asdf) (run-program* (format nil "cd ~S && tar zcf build/asdf-~A.tar.gz build/asdf.lisp $(git ls-files)" /asdf-dir/ *version*))) diff --git a/header.lisp b/header.lisp index 8fd81e6714e730dc2389431591c92a8926726d5d..0489cb02b4b0a62a55d59ed892c1669390cdedab 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.112: Another System Definition Facility. +;;; This is ASDF 2.26.113: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. diff --git a/interface.lisp b/interface.lisp index ee6eb48ddff94f77f294f7cecdcf9dae9ef77b39..d379a8a048f96336ee1c1941d83d67e7b1e6d93f 100644 --- a/interface.lisp +++ b/interface.lisp @@ -49,7 +49,7 @@ #:operation-monolithic-p #:component #:parent-component #:child-component #:system #:module - #:source-file #:c-source-file #:java-source-file + #:file-component #:source-file #:c-source-file #:java-source-file #:cl-source-file #:cl-source-file.cl #:cl-source-file.lsp #:static-file #:doc-file #:html-file :text-file #:source-file-type diff --git a/upgrade.lisp b/upgrade.lisp index 37b4cc9269b42e4b10b3b602e0303f5d459f0714..76f38f3f9ac1db19af3401a9522390c07ab5b3df 100644 --- a/upgrade.lisp +++ b/upgrade.lisp @@ -45,7 +45,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.112") + (asdf-version "2.26.113") (existing-asdf (find-class (find-symbol* :component :asdf nil) nil)) (existing-version *asdf-version*) (already-there (equal asdf-version existing-version))) diff --git a/version.lisp-expr b/version.lisp-expr index 5e357126982a5a8d15e936215478f4bdd1bb1760..9fa3492caa42fe8652ade0aac8753d249630a145 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -1 +1 @@ -"2.26.112" +"2.26.113"