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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Tarn Burton
asdf
Commits
7882d131
Commit
7882d131
authored
9 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into minimakefile
parents
84cebea0
4a7c25cb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/index.html
+1
-1
1 addition, 1 deletion
doc/index.html
tools/release.lisp
+5
-5
5 additions, 5 deletions
tools/release.lisp
with
6 additions
and
6 deletions
doc/index.html
+
1
−
1
View file @
7882d131
...
@@ -216,7 +216,7 @@ Allegro <bugs@franz.com>,
...
@@ -216,7 +216,7 @@ Allegro <bugs@franz.com>,
Clozure CL <openmcl-devel@clozure.com>,
Clozure CL <openmcl-devel@clozure.com>,
GNU CLISP <clisp-list@lists.sourceforge.net> (sds),
GNU CLISP <clisp-list@lists.sourceforge.net> (sds),
CMU CL <cmucl-imp@cmucl.cons.org>,
CMU CL <cmucl-imp@cmucl.cons.org>,
ECL <ecl
s-list@lists.sourceforge
.net>,
ECL <ecl
-devel@common-lisp
.net>,
GCL <gcl-devel@gnu.org>,
GCL <gcl-devel@gnu.org>,
LispWorks <lisp-support@lispworks.com>,
LispWorks <lisp-support@lispworks.com>,
MKCL <jean.claude.beaudoin@gmail.com>,
MKCL <jean.claude.beaudoin@gmail.com>,
...
...
This diff is collapsed.
Click to expand it.
tools/release.lisp
+
5
−
5
View file @
7882d131
...
@@ -60,11 +60,11 @@
...
@@ -60,11 +60,11 @@
destination
))
destination
))
(
ensure-directories-exist
destination
)
(
ensure-directories-exist
destination
)
(
run*
`
(
cp
"-pHux"
--parents
,@
files
,
destination
)
:directory
base
:show
t
)
(
run*
`
(
cp
"-pHux"
--parents
,@
files
,
destination
)
:directory
base
:show
t
)
(
run*
`
(
tar
"zcf
C
"
,
tarball
,
*build-dir*
(
run*
`
(
tar
"zcf"
,
tarball
"-C"
,
*build-dir*
;; TODO: Have better autodetection for which tar is being used,
;; TODO: Have better autodetection for which tar is being used,
;; and fall back to no option if not recognized.
;; and fall back to no option if not recognized.
#+
linux
(
*
:owner
root
:group
root
)
;; assume GNU tar on Linux.
;;
#+linux (* :owner root :group root) ;; assume GNU tar on Linux.
#+
darwin
(
*
:uid
0
:gid
0
)
;; assume BSD tar on Darwin.
;;
#+darwin (* :uid 0 :gid 0) ;; assume BSD tar on Darwin.
(
,
name
/
))
:show
t
)
(
,
name
/
))
:show
t
)
(
delete-directory-tree
destination
:validate
#'
(
lambda
(
x
)
(
equal
x
destination
)))
(
delete-directory-tree
destination
:validate
#'
(
lambda
(
x
)
(
equal
x
destination
)))
(
success
)))
(
success
)))
...
...
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