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
Hugo Ishimaru
asdf
Commits
440375fe
Commit
440375fe
authored
8 years ago
by
Robert Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Fix the archive task.
parent
4e95f928
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+17
-0
17 additions, 0 deletions
Makefile
with
17 additions
and
0 deletions
Makefile
+
17
−
0
View file @
440375fe
...
...
@@ -32,6 +32,10 @@ else
endif
endif
version
:=
$(
shell
cat
"version.lisp-expr"
)
#$(info $$version is [${version}])
version
:=
$(
patsubst
"%"
,%,
$(
version
))
#$(info $$version is [${version}])
## grep for #+/#- features in the test/ directory to see plenty of disabled tests on some platforms
## NOT SUPPORTED BY OUR AUTOMATED TESTS:
...
...
@@ -106,6 +110,19 @@ defsystem-files:
# FIXME: needs rewrite
#archive: build/asdf.lisp
# ./bin/asdf-builder make-and-publish-archive
archive
:
build/asdf.lisp
mkdir
-p
build/uiop
# UIOP tarball
cp
-pHux
uiop/README.md uiop/uiop.asd uiop/asdf-driver.asd
${
driver_lisp
}
build/uiop/
tar
zcf
"build/uiop-
${
version
}
.tgz"
-C
build uiop
rm
-r
build/uiop
mkdir
-p
build/asdf
# asdf-defsystem tarball
cp
-pHux
build/asdf.lisp asdf.asd version.lisp-expr header.lisp README.md
${
defsystem_lisp
}
build/asdf/
tar
zcf
"build/asdf-defsystem-
${
version
}
.tgz"
-C
build asdf
rm
-r
build/asdf
git archive
--worktree-attributes
--format
=
tar
-o
"build/asdf-
${
version
}
.tar"
${
version
}
#asdf-all tarball
gzip
"build/asdf-
${
version
}
.tar"
mv
"build/asdf-
${
version
}
.tar.gz"
"build/asdf-
${
version
}
.tgz"
cp
"build/asdf.lisp"
"build/asdf-
${
version
}
.lisp"
### Count lines separately for asdf-driver and asdf itself:
wc
:
...
...
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