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
42ab6ca5
Commit
42ab6ca5
authored
12 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Update release infrastructure
parent
521f0a68
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+3
-11
3 additions, 11 deletions
Makefile
bin/asdf-builder
+9
-2
9 additions, 2 deletions
bin/asdf-builder
bin/link-tarball
+0
-25
0 additions, 25 deletions
bin/link-tarball
with
12 additions
and
38 deletions
Makefile
+
3
−
11
View file @
42ab6ca5
...
...
@@ -53,7 +53,7 @@ build/asdf.lisp: $(all_lisp)
load
:
build/asdf.lisp
./test/run-tests.sh
-t
$l
$(
all_lisp
)
install
:
archive
-copy
install
:
archive
bump
:
bump-version
bump-version
:
build/asdf.lisp
...
...
@@ -70,14 +70,6 @@ archive: build/asdf.lisp
# --eval "
(
rewrite-license
)
" --eval "
(
quit
)
"
./bin/asdf-builder make-and-publish-archive
archive-copy
:
archive build/asdf.lisp
git checkout release
bin/rsync-cp build/asdf
*
.tar.gz
$(
webhome_private
)
/archives
bin/link-tarball
$(
clnet_home
)
bin/rsync-cp build/asdf.lisp
$(
webhome_private
)
${
MAKE
}
push
git checkout master
### Count lines separately for asdf-driver and asdf itself:
wc
:
@
wc
$(
driver_lisp
)
|
sort
-n
;
echo
;
\
...
...
@@ -194,7 +186,7 @@ TODO:
release
:
TODO test-all test-on-other-machines-too debian-changelog debian-package send-mail-to-mailing-lists
.PHONY
:
install archive
archive-copy
push doc website clean mrproper
\
.PHONY
:
install archive push doc website clean mrproper
\
test-forward-references test test-lisp test-upgrade test-forward-references
\
test-all test-all-lisps test-all-no-upgrade
\
debian-package release
\
...
...
@@ -206,7 +198,7 @@ release: TODO test-all test-on-other-machines-too debian-changelog debian-packag
# make test-load-systems s=fare-all
# make bump v=3.0
# edit debian/changelog
# make release-push archive
-copy
website debian-package
# make release-push archive website debian-package
# dput mentors ../*.changes
# send debian mentors request
# send announcement to asdf-announce, asdf-devel, etc.
This diff is collapsed.
Click to expand it.
bin/asdf-builder
+
9
−
2
View file @
42ab6ca5
...
...
@@ -159,8 +159,15 @@
(values))
(defun link-archive ()
(run `(ln -sf ,(tarname (driver-name))
(,*clnet-asdf-public* "archives/asdf-driver.tar.gz"))
(run (format nil "ln -sf ~S ~S ; ln -sf ~S ~S ; ln -sf ~S ~S ; ln -sf ~S ~S"
(tarname (driver-name))
(strcat *clnet-asdf-public* "archives/asdf-driver.tar.gz")
(tarname (asdf-defsystem-name))
(strcat *clnet-asdf-public* "archives/asdf-defsystem.tar.gz")
(tarname (asdf-git-name))
(strcat *clnet-asdf-public* "archives/asdf.tar.gz")
(asdf-lisp-name)
(strcat *clnet-asdf-public* "archives/asdf.lisp"))
:show t :host *clnet*)
(values))
...
...
This diff is collapsed.
Click to expand it.
bin/link-tarball
deleted
100755 → 0
+
0
−
25
View file @
521f0a68
#!/bin/sh
if
[
-n
$1
]
;
then
clnet_home
=
"
$1
"
else
echo
"Remote directory must be specified."
exit
2
fi
if
[
-n
"
$2
"
]
;
then
user
=
"
${
2
}
@"
else
echo
"Remote username not specified"
echo
"Assuming remote user is same as local"
echo
"and/or you configured your .ssh/config with:"
echo
"Host common-lisp.net"
echo
" User = foo"
fi
tarball
=
`
ls
tmp/asdf
*
.tar.gz
`
tarball
=
`
basename
$tarball
`
latest
=
"asdf.tar.gz"
echo
"Link
$tarball
to
$latest
"
ssh
${
user
}
common-lisp.net
"rm -f
$clnet_home$latest
;
\
ln -s
$clnet_home
/archives/
$tarball
$clnet_home$latest
"
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