Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Moringen
asdf
Commits
b0564f92
Commit
b0564f92
authored
14 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
2.013: blessing 2.012.12 as our new release.
Fix documentation typo and update debian metadata.
parent
bfd04963
Branches
Branches containing commit
Tags
2.013
debian/2.013-1
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
asdf.asd
+1
-1
1 addition, 1 deletion
asdf.asd
asdf.lisp
+2
-2
2 additions, 2 deletions
asdf.lisp
debian/changelog
+15
-0
15 additions, 0 deletions
debian/changelog
debian/control
+1
-1
1 addition, 1 deletion
debian/control
doc/asdf.texinfo
+1
-1
1 addition, 1 deletion
doc/asdf.texinfo
with
20 additions
and
5 deletions
asdf.asd
+
1
−
1
View file @
b0564f92
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
:licence
"MIT"
:licence
"MIT"
:description
"Another System Definition Facility"
:description
"Another System Definition Facility"
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:version
"2.01
2.12
"
;; to be automatically updated by bin/bump-revision
:version
"2.01
3
"
;; to be automatically updated by bin/bump-revision
:depends-on
()
:depends-on
()
:components
:components
((
:file
"asdf"
)
((
:file
"asdf"
)
...
...
This diff is collapsed.
Click to expand it.
asdf.lisp
+
2
−
2
View file @
b0564f92
;;; -*- mode: common-lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
;;; -*- mode: common-lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
;;; This is ASDF 2.01
2.12
: Another System Definition Facility.
;;; This is ASDF 2.01
3
: Another System Definition Facility.
;;;
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
;;; please mail to <asdf-devel@common-lisp.net>.
...
@@ -83,7 +83,7 @@
...
@@ -83,7 +83,7 @@
;; "2.345.6" would be a development version in the official upstream
;; "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.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
;; "2.345.6.7" would be your seventh local modification of development version 2.345.6
(
asdf-version
"2.01
2.12
"
)
(
asdf-version
"2.01
3
"
)
(
existing-asdf
(
fboundp
'find-system
))
(
existing-asdf
(
fboundp
'find-system
))
(
existing-version
*asdf-version*
)
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
(
already-there
(
equal
asdf-version
existing-version
)))
...
...
This diff is collapsed.
Click to expand it.
debian/changelog
+
15
−
0
View file @
b0564f92
cl-asdf (2:2.013-1) unstable; urgency=low
* Blessing 2.012.12: many small improvements since 2.012.
* Fixes and cleanups for CLISP, ECL, SBCL.
* Added support for two legacy platforms: (R)MCL, Genera
* Cleanup features: now using #+asdf-unix and #+asdf-window
* Many cleanups and improvements regarding our portable pathname layer
* Fixes a regression in source-registry scanning from 2.011.4
* Remember *source-registry-parameter* and *output-translations-parameter*
* Export and document coerce-pathname (f.k.a merge-component-name-type)
* allow description and long-description for all components
* Several documentation updates
-- Francois-Rene Rideau <fare@tunes.org> Sat, 19 Mar 2011 20:01:34 -0400
cl-asdf (2:2.012-1) unstable; urgency=low
cl-asdf (2:2.012-1) unstable; urgency=low
* Blessing 2.011.9: more fixes to corner cases.
* Blessing 2.011.9: more fixes to corner cases.
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
1
−
1
View file @
b0564f92
...
@@ -7,7 +7,7 @@ Uploaders: Peter Van Eynde <pvaneynd@debian.org>,
...
@@ -7,7 +7,7 @@ Uploaders: Peter Van Eynde <pvaneynd@debian.org>,
Francois-Rene Rideau <fare@tunes.org>
Francois-Rene Rideau <fare@tunes.org>
Build-Depends: debhelper (>> 7)
Build-Depends: debhelper (>> 7)
Build-Depends-Indep: texinfo, texlive-extra-utils, texlive, texlive-generic-recommended
Build-Depends-Indep: texinfo, texlive-extra-utils, texlive, texlive-generic-recommended
Standards-Version: 3.9.1
Standards-Version: 3.9.1
.0
Homepage: http://common-lisp.net/project/asdf/
Homepage: http://common-lisp.net/project/asdf/
Vcs-Git: git://git.debian.org/git/pkg-common-lisp/cl-asdf.git
Vcs-Git: git://git.debian.org/git/pkg-common-lisp/cl-asdf.git
...
...
This diff is collapsed.
Click to expand it.
doc/asdf.texinfo
+
1
−
1
View file @
b0564f92
...
@@ -2709,7 +2709,7 @@ If the argument @var{name} is a pathname or @code{nil}, it is passed through;
...
@@ -2709,7 +2709,7 @@ If the argument @var{name} is a pathname or @code{nil}, it is passed through;
if it's a symbol, it's interpreted as a string by downcasing it;
if it's a symbol, it's interpreted as a string by downcasing it;
if it's a string, it is first separated using @code
{
/
}
into substrings;
if it's a string, it is first separated using @code
{
/
}
into substrings;
the leading substrings denote subdirectories of a relative pathname.
the leading substrings denote subdirectories of a relative pathname.
If @var
{
type
}
is @code
{
:directory
}
or the string ends with @cod
E
{
/
}
,
If @var
{
type
}
is @code
{
:directory
}
or the string ends with @cod
e
{
/
}
,
the last substring is also a subdirectory;
the last substring is also a subdirectory;
if @var
{
type
}
is a string, it is used as the type of the pathname, and
if @var
{
type
}
is a string, it is used as the type of the pathname, and
the last substring is the name component of the pathname;
the last substring is the name component of the pathname;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment