Skip to content
Snippets Groups Projects
Commit e5f945c6 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Update changelog, cleanup some ancillary files

parent 13f9c39f
No related branches found
No related tags found
No related merge requests found
cl-asdf (2:2.32.8-1) unstable; urgency=low
cl-asdf (2:2.33-1) unstable; urgency=low
ASDF 2.32.8 is a set of cleanups since 2.32.
ASDF 2.33 is a set of cleanups since 2.32.
Since previous release 2.32, it includes the following changes:
* deferred-warning receives yet more improvements for CCL.
......@@ -11,9 +11,23 @@ cl-asdf (2:2.32.8-1) unstable; urgency=low
* Packages have been tweaked to pass more tests,
notably wrt what symbols are exported.
* Image lifecycle support is improved, thanks to our application
* Image lifecycle support is improved, thanks to deploying ASDF3 for QRes.
More options for dump-image on CCL; handle reentrance in restore-image.
-- Francois-Rene Rideau <fare@tunes.org> Thu, 05 Mar 2013 14:35:43 -0500
* delete-directory-tree, delete-empty-directory, copy-file,
directory-exists-p, file-exists-p were added to UIOP,
also better strcat, with reduce/strcat, base-string-p, etc.
* Portability tweaks for Allegro, Clozure, CLISP, ECL, LispWorks, SBCL.
* Recompilation avoided for things already done by defsystem-depends-on.
* monolithic-fasl-op was fixed in cases when the main system has components.
* *uninteresting-conditions* was added as a common list of conditions
shared between the compile-time and load-time muffled conditions.
-- Francois-Rene Rideau <fare@tunes.org> Thu, 27 Mar 2013 13:30:26 -0500
cl-asdf (2:2.32-1) unstable; urgency=low
......
......@@ -6,30 +6,30 @@ body {
/* @group anchors */
a.none {
a.none {
text-decoration: none;
color:black }
a.none:visited { text-decoration: none; color:black }
a.none:active { text-decoration: none; color:black }
a.none:hover { text-decoration: none; color:black }
a {
text-decoration: none;
a {
text-decoration: none;
}
a:visited {
text-decoration: none;
a:visited {
text-decoration: none;
}
a:active {
text-decoration: underline;
a:active {
text-decoration: underline;
}
a:hover {
text-decoration: underline;
a:hover {
text-decoration: underline;
}
/* @end */
......@@ -76,7 +76,7 @@ a:hover {
position: relative;
left: 8px;
}
/* @end */
/* @group header-footer */
......@@ -126,9 +126,9 @@ a:hover {
text-decoration:underline;
}
#footer a:hover {
font-weight:bold;
color:#002244;
#footer a:hover {
font-weight:bold;
color:#002244;
text-decoration:underline;
}
......@@ -167,7 +167,7 @@ a:hover {
}
.function {
}
.documentation pre {
......@@ -183,7 +183,7 @@ a:hover {
border-top-style: solid;
border-top-width: 1pt;
padding-top: 4px;
margin-top: 2em;
margin-top: 2em;
font-size: inherit;
background-color: transparent;
color: black;
......
# overly complex boiletplate...
sourceDirectory := $(shell pwd)
clean_dirs = $(sourceDirectory)
clean_extensions = fasl dfsl cfsl fasl fas lib dx32fsl
clean: FORCE
@for dir in $(clean_dirs); do \
if test -d $$dir; then \
echo Cleaning $$dir; \
for ext in $(clean_extensions); do \
find $$dir \( -name "*.$$ext" \) \
-and -not -path \""*/.git/*"\" \
-and -not -path \""*/_darcs/*"\" \
-and -not -path \""*/tags/*"\" -print -delete; \
done; \
fi; \
done
FORCE:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment