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
ee8620c7
Commit
ee8620c7
authored
9 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Update uiop.asd
parent
a23fbf31
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
uiop/uiop.asd
+14
-9
14 additions, 9 deletions
uiop/uiop.asd
with
14 additions
and
9 deletions
uiop/uiop.asd
+
14
−
9
View file @
ee8620c7
;;; -*- mode: lisp -*-
(
in-package
:asdf
)
(
unless
(
or
(
member
:asdf3
*features*
)
(
and
(
member
:asdf2
*features*
)
(
version-satisfies
(
asdf:asdf-version
)
"2.11.4"
))
)
#-
asdf3
(
unless
(
or
#+
asdf2
(
version-satisfies
(
asdf:asdf-version
)
"2.11.4"
))
(
error
"UIOP requires ASDF 2.011.4 or later."
))
(
defun
call-without-redefinition-warnings
(
thunk
)
...
...
@@ -14,15 +14,20 @@
#'
muffle-warning
))
(
funcall
thunk
)))
(
defsystem
:uiop
(
defsystem
"uiop"
#+
asdf3
:long-name
#+
asdf3
"Utilities for Implementation- and OS- Portability"
:description
"Portability library for Common Lisp programs"
:long-description
"UIOP provides runtime support for Common Lisp programs:
Basic general-purpose utilities that are in such a need that you can't portably construct a
complete program without using some of them. UIOP replaces ASDF/DRIVER and ASDF-UTILS, and offers a
superset of the functionality provided by CL-FAD, EXTERNAL-PROGRAM, TRIVIAL-SHELL, TRIVIAL-BACKTRACE
and a lot of the functionality formerly provided by CL-LAUNCH, XCVB-DRIVER, TRIVIAL-FEATURES,
plus a tiny subset of functionality from ALEXANDRIA and FARE-UTILS.
It is transcluded into asdf.lisp together with ASDF/DEFSYSTEM, so if you did (require \"asdf\")
you already have a matching UIOP loaded."
:author
"Francois-Rene Rideau"
:licence
"MIT"
:class
#.
(
if
(
find-class
'package-system
nil
)
'package-system
'system
)
#+
asdf3
:long-name
#+
asdf3
"Utilities for Implementation- and OS- Portability"
:description
"Runtime support for Common Lisp programs"
:long-description
"Basic general-purpose utilities that are in such a need
that you can't portably construct a complete program without using them.
UIOP is also known as ASDF/DRIVER or ASDF-UTILS,
being transcluded into asdf.lisp together with ASDF/DEFSYSTEM."
#+
asdf3
:version
#+
asdf3
(
:read-file-form
"version.lisp-expr"
)
#+
asdf-unicode
:encoding
#+
asdf-unicode
:utf-8
#+
asdf3
:around-compile
#+
asdf3
call-without-redefinition-warnings
...
...
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