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
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
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
06c00c10
Commit
06c00c10
authored
Mar 21, 2011
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test for upgrades!
parent
72fb0094
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
4 deletions
+21
-4
Makefile
Makefile
+17
-3
doc/index.html
doc/index.html
+4
-1
No files found.
Makefile
View file @
06c00c10
...
...
@@ -61,8 +61,17 @@ clean: FORCE
mrproper
:
clean
rm
-rf
.pc/ build-stamp debian/patches/ debian/debhelper.log debian/cl-asdf/
# debian crap
test-forward-references
:
FORCE
test-upgrade
:
if
[
-f
/usr/lib/sbcl/sbcl-dist.core
]
;
then
\
SBCL
=
"/usr/bin/sbcl --core /usr/lib/sbcl/sbcl-dist.core"
;
fi
;
\
for
tag
in
1.37 1.97 1.369
`
git tag
-l
'2.0??'
`
;
do
\
echo
"Testing upgrade from ASDF
$
${tag}
"
;
\
git show
$
${tag}
:asdf.lisp
>
tmp/asdf-
$
${tag}
.lisp
;
\
$
${
SBCL
:-
sbcl
}
--noinform
--eval
\
'(progn (handler-bind ((t #'
"'"
'muffle-warning)) (load "tmp/asdf-'
$
${tag}
'.lisp")) (handler-bind ((sb-kernel:redefinition-warning #'
"'"
'muffle-warning)((or warning error) (lambda (c) (format t "~A~%" c) #|(defparameter *c* c) (break)|# (sb-ext:quit :unix-status 1)))) (load "asdf.lisp") (format t "Successfully upgraded from '
$
${tag}
'~%") (sb-ext:quit :unix-status 0)))'
||
\
{
echo
"FAILED"
;
exit
1
;
}
;
done
test-forward-references
:
if
[
-f
/usr/lib/sbcl/sbcl-dist.core
]
;
then
SBCL
=
"/usr/bin/sbcl --core /usr/lib/sbcl/sbcl-dist.core"
;
fi
;
$
${
SBCL
:-
sbcl
}
--noinform
--load
~/cl/asdf/asdf.lisp
--eval
'(sb-ext:quit)'
2>&1 | cmp - /dev/null
test
:
test-forward-references
...
...
@@ -96,4 +105,9 @@ fix-local-git-tags:
fix-remote-git-tags
:
for
i
in
${WRONGFUL_TAGS}
;
do
git push
$
${
REMOTE
:-
cl
.net
}
:refs/tags/
$$
i
;
done
FORCE
:
.PHONY
:
install archive archive-copy push website clean mrproper
upgrade-test test-forward-references
test
test-all
\
debian-package
\
replace-sbcl-asdf replace-ccl-asdf
\
fix-local-git-tags fix-remote-git-tags
doc/index.html
View file @
06c00c10
...
...
@@ -130,17 +130,20 @@
with notable contributions from
Robert P. Goldman, Nikodemus Siivola, Christophe Rhodes, Daniel Herring.
Many small features and bug fixes,
making the project more maintanable,
making the project more mainta
i
nable,
moving to using git and common-lisp.net.
Last version: 1.369.
</dd>
<dt>
May 2004 to April 2006
</dt>
<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.
Last version: 1.97.
<dt>
August 2001 to May 2004
</dt>
<dd>
Developed by Daniel Barlow, with notable contributions from
Christophe Rhodes, Kevin Rosenberg, Edi Weitz, Rahul Jain.
Last version: 1.37.
<dt>
August 2001
</dt>
<dd>
Created by Daniel Barlow
</dd>
</dl>
...
...
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