~ubuntu-branches/ubuntu/precise/cl-asdf/precise

« back to all changes in this revision

Viewing changes to bin/asdf-version

  • Committer: Bazaar Package Importer
  • Author(s): Francois-Rene Rideau
  • Date: 2011-03-21 16:24:27 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20110321162427-fc3c1hwhq53odw9a
Tags: 2:2.013.3-1
* Packaging 2.013.3 because 2.013 had important issues.
* Fix important upgradability issue with 2.013 (unable to upgrade from
versions 2.00[0-8] that have a separate ASDF-UTILITIES)
* Fix minor verbosity issue (forward reference makes sbcl noisy
when loading asdf.lisp directly as does quicklisp.)
* Also, enhance support for SCL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# write the highest tag to standard output
 
4
# exit code is 1 if it cannot be found
 
5
 
 
6
tag=`git describe --tags --match '[0-9].[0-9][0-9][0-9]'`
 
7
if [ "$tag" == "" ]; then
 
8
    exit 1
 
9
fi
 
10
echo $tag
 
11
exit 0