Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Didier Verna
asdf
Commits
2a1fec10
Commit
2a1fec10
authored
Jan 18, 2013
by
Francois-Rene Rideau
Browse files
2.26.113: export file-component.
parent
8914d4b5
Changes
7
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
2a1fec10
...
...
@@ -53,6 +53,7 @@ load: build/asdf.lisp
install
:
archive-copy
bump
:
bump-version
bump-version
:
build/asdf.lisp
./bin/asdf-builder bump-version
...
...
asdf.asd
View file @
2a1fec10
...
...
@@ -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.11
2
"
;; to be automatically updated by bin/bump-revision
:version
"2.26.11
3
"
;; 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
))))
...
...
bin/asdf-builder
View file @
2a1fec10
...
...
@@ -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*)))
...
...
header.lisp
View file @
2a1fec10
;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; coding: utf-8 -*-
;;; This is ASDF 2.26.11
2
: Another System Definition Facility.
;;; This is ASDF 2.26.11
3
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
interface.lisp
View file @
2a1fec10
...
...
@@ -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
...
...
upgrade.lisp
View file @
2a1fec10
...
...
@@ -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.11
2
"
)
(
asdf-version
"2.26.11
3
"
)
(
existing-asdf
(
find-class
(
find-symbol*
:component
:asdf
nil
)
nil
))
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
...
...
version.lisp-expr
View file @
2a1fec10
"2.26.11
2
"
"2.26.11
3
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment