From 1888f45d49675f139101052b05b81223835608f1 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <fare@tunes.org> Date: Sun, 16 Oct 2016 20:22:23 -0400 Subject: [PATCH] Fix release symlinks to make Quicklisp happy I investigated why Quicklisp still hadn't picked up release 3.1.7 or uiop. It looks like the Makefile was creating symlinks in the wrong directory. Update index.html to link to the symlinks in archives/ --- Makefile | 4 ++-- doc/index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 3f139b905..aa1716d41 100644 --- a/Makefile +++ b/Makefile @@ -134,8 +134,8 @@ archive: build/asdf.lisp publish-archive: rsync --times --chmod=a+rX,ug+w "build/uiop-${version}.tar.gz" "build/asdf-defsystem-${version}.tar.gz" \ -"build/asdf-${version}.tar.gz" "build/asdf-${version}.lisp" common-lisp.net:/project/asdf/public_html/archives - ssh common-lisp.net "cd /project/asdf/public_html; ln -sf archives/uiop-${version}.tar.gz uiop.tar.gz; ln -sf archives/asdf-defsystem-${version}.tar.gz asdf-defsystem.tar.gz; ln -sf archives/asdf-${version}.tar.gz asdf.tar.gz; ln -sf archives/asdf-${version}.lisp asdf.lisp" +"build/asdf-${version}.tar.gz" "build/asdf-${version}.lisp" common-lisp.net:/project/asdf/public_html/archives/ + ssh common-lisp.net "cd /project/asdf/public_html/archives/; ln -sf uiop-${version}.tar.gz uiop.tar.gz; ln -sf asdf-defsystem-${version}.tar.gz asdf-defsystem.tar.gz; ln -sf asdf-${version}.tar.gz asdf.tar.gz; ln -sf asdf-${version}.lisp asdf.lisp" ### Count lines separately for asdf-driver and asdf itself: wc: diff --git a/doc/index.html b/doc/index.html index e809e4569..ff72e7020 100644 --- a/doc/index.html +++ b/doc/index.html @@ -381,10 +381,10 @@ Corman Common Lisp <admin@cormanlisp.com> </p> <ul> <li>download just the latest <em>release</em> source for - <a href="https://common-lisp.net/project/asdf/asdf.lisp">asdf.lisp</a>; + <a href="https://common-lisp.net/project/asdf/archives/asdf.lisp">asdf.lisp</a>; </li> <li>download the latest <em>release</em> - <a href="https://common-lisp.net/project/asdf/asdf.tar.gz">tarball</a> + <a href="https://common-lisp.net/project/asdf/archives/asdf.tar.gz">tarball</a> to get all bells and whistles; </li> <li>pull the latest <em>development</em> tree from our git repository -- GitLab