Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
8857658f
Commit
8857658f
authored
May 26, 2015
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into minimakefile
parents
51fcf8c3
66cc4db9
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
35 additions
and
16 deletions
+35
-16
asdf.asd
asdf.asd
+1
-1
debian/changelog
debian/changelog
+15
-0
doc/asdf.texinfo
doc/asdf.texinfo
+1
-0
doc/index.html
doc/index.html
+10
-6
ext/asdf-encodings
ext/asdf-encodings
+1
-1
ext/fare-mop
ext/fare-mop
+1
-1
ext/lisp-invocation
ext/lisp-invocation
+1
-1
header.lisp
header.lisp
+1
-1
test/test-run-program.script
test/test-run-program.script
+1
-2
uiop/lisp-build.lisp
uiop/lisp-build.lisp
+1
-1
upgrade.lisp
upgrade.lisp
+1
-1
version.lisp-expr
version.lisp-expr
+1
-1
No files found.
asdf.asd
View file @
8857658f
...
...
@@ -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.4.1
2
"
;; to be automatically updated by make bump-version
:version
"3.1.4.1
3
"
;; to be automatically updated by make bump-version
:depends-on
()
#+
asdf3
:encoding
#+
asdf3
:utf-8
:class
#+
asdf3.1
package-inferred-system
#-
asdf3.1
system
...
...
debian/changelog
View file @
8857658f
cl-asdf (2:3.1.5-1) unstable; urgency=low
Bug fix release:
* Add CLASP support.
* Many miscellaneous fixes for issues on individual implementations.
* Added OS-COND to UIOP to paper over some incompatibilities about when
and how operating system can be detected on different implementations.
* Fixes to XDG configuration directory handling. Try to stick to the
XDG spec, rather than guessing what it should be on different platforms.
To recognize this, change UIOP functions about XDG files to "XDG-"
prefixes.
* Documentation improvements.
-- François-René Rideau <fare@tunes.org> Mon, 25 May 2015 09:52:54 -0400
cl-asdf (2:3.1.4-1) unstable; urgency=low
[ Robert P. Goldman ]
...
...
doc/asdf.texinfo
View file @
8857658f
...
...
@@ -1281,6 +1281,7 @@ system-option := :homepage string
| :mailto string
| :long-name string
| :source-control source-control
| :version version-specifier
source-control := (keyword string)
...
...
doc/index.html
View file @
8857658f
...
...
@@ -310,9 +310,6 @@ XCL (Peter Graves) <gnooth@gmail.com>
<h3>
Extensions
</h3>
<p>
Known extensions to ASDF include:
</p>
<ul>
<li><a
href=
"https://gitlab.common-lisp.net/asdf/asdf-contrib"
><tt>
asdf-contrib
</tt></a>
,
a collection of most of the below.
</li>
<li><a
href=
"https://gitlab.common-lisp.net/asdf/asdf-encodings"
><tt>
asdf-encodings
</tt></a>
,
to compile Lisp source files with character encodings other than UTF-8.
</li>
...
...
@@ -337,14 +334,17 @@ XCL (Peter Graves) <gnooth@gmail.com>
</ul>
<p>
Former extensions, now superseded, include:
</p>
<ul>
<li><tt>
asdf-binary-locations
</tt>
used to allow one to redirect where ASDF 1 created its output files,
<li><tt>
asdf-binary-locations
</tt>
used to allow one to redirect where ASDF 1 created its output files,
so they don't clash between implementations and don't pollute source directories.
It is superseded by
<tt>
asdf/defsystem
</tt>
's builtin
<tt>
asdf-output-translations
</tt>
mechanism;
a limited compatibility mode is available to easily convert
your former ABL configuration into an AOT configuration.
<tt>
common-lisp-controller
</tt>
and
<tt>
cl-launch
</tt>
used to provide similar mechanisms,
and have also been superseded by
<tt>
asdf-output-translations
</tt>
.
<tt>
common-lisp-controller
</tt>
and
<tt>
cl-launch
</tt>
used to provide similar mechanisms,
and have also been superseded by
<tt>
asdf-output-translations
</tt>
(built into ASDF 2 and later).
</li>
<li><tt>
asdf-bundle
</tt>
, n
é
e
<tt>
asdf-ecl
</tt>
,
allowed you to create a single-file bundle out of a system,
...
...
@@ -358,6 +358,10 @@ XCL (Peter Graves) <gnooth@gmail.com>
allowed you to muffle uninteresting conditions during compilation.
Is now superseded by equivalent functionality in
<tt>
uiop
</tt>
.
</li>
<li><a
href=
"https://gitlab.common-lisp.net/asdf/asdf-contrib"
><tt>
asdf-contrib
</tt></a>
,
an empty package that used to collect dependencies on other systems
in the list above and below.
</li>
<li><a
href=
"http://gitlab.common-lisp.net/asdf/asdf-package-system"
><tt>
asdf-package-system
</tt></a>
,
to compile Lisp source files with one package per file
...
...
asdf-encodings
@
698ea4a1
Compare
41a46874
...
698ea4a1
Subproject commit
41a46874671111c6a04c9a7c284cd9d8b37b1d4e
Subproject commit
698ea4a16b11dd419d683744ac59b06bee07b853
fare-mop
@
f96da46f
Compare
39b7ed60
...
f96da46f
Subproject commit
39b7ed607894c101ccf92cf95c307120ae18f004
Subproject commit
f96da46f50c1abe7c91c629312f27cb433d146af
lisp-invocation
@
fa472195
Compare
d7899694
...
fa472195
Subproject commit
d789969405e7c39b58647672940c75e611ba4347
Subproject commit
fa472195ba35ab1268634c3ed0bd5aca4557869d
header.lisp
View file @
8857658f
;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; buffer-read-only: t; -*-
;;; This is ASDF 3.1.4.1
2
: Another System Definition Facility.
;;; This is ASDF 3.1.4.1
3
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
test/test-run-program.script
View file @
8857658f
...
...
@@ -37,8 +37,7 @@
#+os-unix
(progn
(with-expected-failure (#+xcl "no chdir")
(chdir *test-directory*))
(chdir *test-directory*)
(DBG "Testing good shell command in current directory via run-shell-command")
(assert-equal 0 (run-shell-command "./good-shell-command"))
...
...
uiop/lisp-build.lisp
View file @
8857658f
...
...
@@ -92,7 +92,7 @@ This can help you produce more deterministic output for FASLs."))
(
case
x
(
compilation-speed
'c::cspeed
)
(
otherwise
x
)))
#+
lispworks
(
slot-value
compiler::*optimization-level*
x
)
#+
sbcl
(
cdr
(
assoc
x
sb-c::*policy*
)
))
#+
sbcl
(
sb-c::policy-quality
sb-c::*policy*
x
))
:when
y
:collect
(
list
x
y
))))
(
defun
proclaim-optimization-settings
()
"Proclaim the optimization settings in *OPTIMIZATION-SETTINGS*"
...
...
upgrade.lisp
View file @
8857658f
...
...
@@ -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.4.1
2
"
)
(
asdf-version
"3.1.4.1
3
"
)
(
existing-version
(
asdf-version
)))
(
setf
*asdf-version*
asdf-version
)
(
when
(
and
existing-version
(
not
(
equal
asdf-version
existing-version
)))
...
...
version.lisp-expr
View file @
8857658f
"3.1.4.1
2
"
"3.1.4.1
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