Commit 5b7b8873 authored by Gary King's avatar Gary King
Browse files

* make sure to push tags to central repository

* incorporate ASDF-Binary-Locations in to ASDF.

    * new exports
    * added `*place-binaries-in-implementation-specific-directories*`

* simplify *asdf-revision* code

* add bin/bump-revision-and-tag.sh based on some of Robert Goldman's ideas
parent 8a6a66b5
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -17,7 +17,11 @@ endif

install: archive-copy

bump_revision: FORCE
	bin/bump-revision-and-tag.sh

archive: FORCE

	sbcl --userinit /dev/null --sysinit /dev/null --load bin/make-helper.lisp \
		--eval "(rewrite-license)" --eval "(quit)"
	bin/build-tarball.sh
+4 −1
Original line number Diff line number Diff line
@@ -145,7 +145,10 @@

(in-package #:asdf)

(defvar *asdf-revision* "REVISION:_asdf_revision")
(defvar *asdf-revision* 
  ;; the 1+ hair is to ensure that we don't do an inadvertant find and replace
  (subseq "REVISION:1.366" (1+ (length "REVISION"))))
  

(defvar *resolve-symlinks* t
  "Determine whether or not ASDF resolves symlinks when defining systems.
+0 −1
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@ if [ "$branch" != "* master" ]; then
  echo "error: git branch is $branch, not master"
  exit -1
fi 
exit 0

tag=`git describe --tag`
if [ "$tag" == "" ]; then