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

Makefile munging:

* remove -k ${keyid} from git-buildpackage, instead inserted in ~/.devscripts:
	DEBSIGN_KEYID=4D822AA2
* remove user from ssh specifications. If local and remote users differ,
  you HAVE to have an entry in your ~/.ssh/config like:
	Host common-lisp.net
	  User frideau
parent a1289764
No related branches found
No related tags found
No related merge requests found
system := "asdf" system := "asdf"
#user := $(shell basename `echo "$home"`) webhome_private := common-lisp.net:/project/asdf/public_html/
ifeq (${user},)
userat :=
else
userat := ${user}@
endif
webhome_private := ${userat}common-lisp.net:/project/asdf/public_html/
webhome_public := "http://common-lisp.net/project/asdf/" webhome_public := "http://common-lisp.net/project/asdf/"
clnet_home := "/project/asdf/public_html/" clnet_home := "/project/asdf/public_html/"
gpg := gpg
sourceDirectory := $(shell pwd) sourceDirectory := $(shell pwd)
keyid ?= 4D822AA2
lisps ?= ccl clisp sbcl ecl abcl xcl scl allegro lisps ?= ccl clisp sbcl ecl abcl xcl scl allegro
## not tested by me: allegromodern cmucl lispworks ## not tested by me: allegromodern cmucl lispworks
...@@ -31,7 +23,7 @@ archive: ...@@ -31,7 +23,7 @@ archive:
archive-copy: archive archive-copy: archive
git checkout release git checkout release
bin/rsync-cp tmp/asdf*.tar.gz $(webhome_private)/archives bin/rsync-cp tmp/asdf*.tar.gz $(webhome_private)/archives
bin/link-tarball $(clnet_home) ${user} bin/link-tarball $(clnet_home)
bin/rsync-cp tmp/asdf.lisp $(webhome_private) bin/rsync-cp tmp/asdf.lisp $(webhome_private)
${MAKE} push ${MAKE} push
...@@ -93,7 +85,7 @@ test-all: test-forward-references test-upgrade do-test-all ...@@ -93,7 +85,7 @@ test-all: test-forward-references test-upgrade do-test-all
debian-package: mrproper debian-package: mrproper
: $${RELEASE:="$$(git tag -l '2.0[0-9][0-9]' | tail -n 1)"} ; \ : $${RELEASE:="$$(git tag -l '2.0[0-9][0-9]' | tail -n 1)"} ; \
git-buildpackage --git-debian-branch=release --git-upstream-branch=$$RELEASE --git-tag --git-retag --git-ignore-branch -s${gpg} -k${keyid} git-buildpackage --git-debian-branch=release --git-upstream-branch=$$RELEASE --git-tag --git-retag --git-ignore-branch
# Replace SBCL's ASDF with the current one. # Replace SBCL's ASDF with the current one.
# not recommended: just use (asdf:load-system :asdf) # not recommended: just use (asdf:load-system :asdf)
......
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