[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Freeze exception: common-lisp-controller 7.4



Hi all,

I have uploaded common-lisp-controller 7.4.  Please unblock it.

This version fix 3 bugs (593157, 593179 and another found by myself
but not reported).

The full diff is attached.

Please CC Christoph Egger <christoph@debian.org>.  He's my sponsor.
Don't CC me.

Thanks,
Des
diff --git a/clc-lisp b/clc-lisp
index 61813bf..54b9bfd 100644
--- a/clc-lisp
+++ b/clc-lisp
@@ -8,4 +8,4 @@ if [ "$EUID" == 0 ] ; then
 fi
 
 (cd /usr/share/common-lisp/clbuild 
- ./clbuild  slime "$@")
+ ./clbuild  lisp "$@")
diff --git a/debian/changelog b/debian/changelog
index d3728d0..b0c3243 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+common-lisp-controller (7.4) unstable; urgency=low
+
+  * clc-lisp should run 'clbuild lisp'. (Closes: #593157)
+  * unregister-common-lisp-{source,implementation} handle more characters
+  * debian/control:
+    + change Standards-Version to 3.9.1
+    + depends on cl-asdf (>= 2:2.004-1)
+
+ -- Desmond O. Chang <dochang@gmail.com>  Thu, 19 Aug 2010 23:37:48 +0800
+
 common-lisp-controller (7.3) unstable; urgency=low
 
   * update manpage (Closes: #589185)
diff --git a/debian/control b/debian/control
index 42c0e5a..905ee3e 100644
--- a/debian/control
+++ b/debian/control
@@ -5,13 +5,13 @@ Build-Depends: debhelper (>= 7), po-debconf
 Maintainer: Debian Common Lisp Team <pkg-common-lisp-devel@lists.alioth.debian.org>
 Uploaders: Peter Van Eynde <pvaneynd@debian.org>, Kevin M. Rosenberg <kmr@debian.org>,
  Luca Capello <luca@pca.it>, Desmond O. Chang <dochang@gmail.com>
-Standards-Version: 3.9.0
+Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/pkg-common-lisp/common-lisp-controller.git
 Vcs-Browser: http://git.debian.org/?p=pkg-common-lisp/common-lisp-controller.git;a=summary
 
 Package: common-lisp-controller
 Architecture: all
-Depends:  ${misc:Depends}, bash (>= 2.04-9), debianutils (>= 1.7), debconf (>= 1.0) | debconf-2.0, cl-asdf (>= 1.625), realpath, perl, adduser
+Depends:  ${misc:Depends}, bash (>= 2.04-9), debianutils (>= 1.7), debconf (>= 1.0) | debconf-2.0, cl-asdf (>= 2:2.004-1), realpath, perl, adduser
 Breaks: cmucl (<< 3.1.0), clisp (<< 1:2.48-1), cl-asdf (<< 1.501), sbcl (<< 1:1.0.29.0)
 Replaces: cmucl (<< 3.1.0)
 Suggests: sbcl
diff --git a/unregister-common-lisp-implementation b/unregister-common-lisp-implementation
index 659efaf..b3843c9 100644
--- a/unregister-common-lisp-implementation
+++ b/unregister-common-lisp-implementation
@@ -13,7 +13,7 @@ umask 0022
 
 implementation="$1"
 
-echo "$implementation" | grep -q '[^a-zA-Z0-9-]' && echo "Found special characters in $1!" && exit 42 
+echo "$implementation" | grep -q '[^a-zA-Z0-9._+-]' && echo "Found special characters in $1!" && exit 42
 echo "$implementation" | grep -q '\.\.' && echo "Found .. in $1!" && exit 1
 
 echo "$implementation" | grep -q '\/\/' && echo "Found // in $1!" && exit 2
diff --git a/unregister-common-lisp-source b/unregister-common-lisp-source
index 39ba17c..b555635 100644
--- a/unregister-common-lisp-source
+++ b/unregister-common-lisp-source
@@ -13,7 +13,7 @@ umask 0022
 
 library="$1"
 
-echo "$library" | grep -q '[^a-zA-Z0-9-]' && echo "Found special characters in $1!" && exit 42
+echo "$library" | grep -q '[^a-zA-Z0-9._+-]' && echo "Found special characters in $1!" && exit 42
 
 echo "$library" | grep -q '\.\.' && echo "Found .. in $1!" && exit 1
 

Reply to: