Bug#431683: emcast: AM_PATH_EMCAST is underquoted. All invocations of aclocal generate a warning

2007-07-04 Thread William Pursell
Package: emcast
Version: 0.3.2-5
Severity: normal
Tags: patch

With emcast installed, any invocation of aclocal will generate
the warning:

/usr/share/aclocal/emcast.m4:9: warning: underquoted definition of 
AM_PATH_EMCAST
/usr/share/aclocal/emcast.m4:9:   run info '(automake)Extending aclocal'
/usr/share/aclocal/emcast.m4:9:   or see 
http://sources.redhat.com/automake/automake.html#Extending-aclocal

The solution is trivial:

--- emcast.m4   2007-07-04 09:43:07.0 +0100
+++ /tmp/emcast.m4  2007-07-04 09:44:40.0 +0100
@@ -6,7 +6,7 @@
 dnl AM_PATH_EMCAST([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND 
[, MODULES)
 dnl Test for EMCAST, and define EMCAST_CFLAGS and EMCAST_LIBS
 dnl
-AC_DEFUN(AM_PATH_EMCAST,
+AC_DEFUN([AM_PATH_EMCAST],
 [dnl
 dnl Get the cflags and libraries from the emcast-config script
 dnl





-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-486
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages emcast depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libglib1.2  1.2.10-17The GLib library of C routines

emcast recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#431789: Feature request: complete treeish names (sha1 hashes)

2007-07-04 Thread William Pursell
Package: git-completion
Version: 0+20060817-1
Severity: wishlist
Tags: patch


When referencing commits by hash name, it is convenient
to have a completion.  Here is a working concept, which
needs to be polished, but works effectively:


--- /etc/bash_completion.d/git-common   2006-09-11 17:36:22.0 +0100
+++ git-common  2007-07-04 21:46:37.0 +0100
@@ -49,6 +49,7 @@
 {
__git_heads
__git_tags
+   __git_ents
 echo HEAD
 }

@@ -64,3 +65,9 @@
 $REVERTGLOB
 }

+__git_ents()
+{
+REVERTGLOB=`shopt -p nullglob`
+find .git -wholename '*/objects/??/*' -print | cut -c 14,15,17-
+$REVERTGLOB
+}
w

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-486
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]