fax script doesn't process correctly filenames with white spaces

2005-03-17 Thread Marcos Lorenzo de Santiago
Package: efax
Version: 0.9a-15

When I try to send a Postscript file with the fax script command I get
the following error:


# echo "This is a test" | a2ps -o "My test file.ps"
[stdin (estándar): 1 página en 1 hoja]
[Total: 1 página en 1 hoja] guardado en el fichero 'My test file.ps'
# fax send  My\ test\ file.ps
can't read file My

I have patched this script (fax) to allow whitespaces on filenames.
The patch for fax script is attached to the email.

I hope this helps.

-- 
,--.
| Elegance and truth are inversely related.|
| -- Becker's Razor|
|--|
| Labs. Technician  |  |
| Department of Telematic Engineering   | Debian GNU/Linux Powered |
| Universidad Carlos III de Madrid  |  |
|---|.--.  |
|   |   |o_o | |
|  _|  .''`.|:_/ | |
| |~~  @| Marcos Lorenzo de Santiago| : :' :   //   \ \|
| |     | E-mail:  [EMAIL PROTECTED]| `. `'   (| | )   |
| |     | Telephone: (+34) 91-624-9959  |   `-   /'\_   _/`\   |
| |_| Web: www.it.uc3m.es/marcos|\___)=(___/   |
|   |  |
`--'
--- fax	2005-03-17 08:28:44.798188872 +
+++ fax_patched	2005-03-17 08:32:04.855458544 +
@@ -81,7 +81,7 @@
 # conventions. Protect with single quotes for delayed evaluation.
 # Add a leading '#' to the file name to use binary format.
 
-LOCK='-x /var/lock/LCK..$DEV' 			# modern systems
+LOCK='/var/lock/LCK..$DEV' 			# modern systems
 # LOCK='-x /usr/spool/uucp/LCK..$DEV'		# older systems
 # LOCK='-x /var/lock/LCK..$DEV -x /var/spool/uucp/LCK..$DEV' # both
 # LOCK='-x #/usr/spool/uucp/LCK..$DEV'		# binary format
@@ -417,6 +417,7 @@
 	fi
 done
 
+
 # --- set any variables given on command line
 
 while : ; do
@@ -542,7 +543,7 @@
 	while [ -f ${DEVN}.stop ] ; do sleep 15 ; done
 
 	exec $NICE $EFAX -v "" -v "$VERBLOG" -d/dev/$DEV $INIT $SPKR \
-	$CLASSINIT $FCINIT $RXINIT $LOCK \
+	$CLASSINIT $FCINIT $RXINIT -x $LOCK \
 	$RXCAP -l "$FROM" $RESET \
 	$DATAINIT -g "$DCMD" $VOICEINIT -e "$VCMD" \
 	-jS0=$ANSRINGS -w -s -r "$ANSFNAME" 2>$CONSOLE >${DEVN}.$$
@@ -759,28 +760,27 @@
 	m*)
 
 	case $# in 0) echo "No files specified" ; ERR=2 ; break ;; esac
-
-	if [ ! -r $1 ] ; then echo "Can't read $1" ; ERR=2 ; break ; fi
+	if [ ! -r "$1" ] ; then echo "Can't read '$1'" ; ERR=2 ; break ; fi
 
 
-	read x <$1
+	read x <"$1"
 	case $x in
 	%!*|?%!*)
 		echo "$1 is postscript..."
 		# GS can't deal with long paths so we 'cd' 
-		DIRNAME=`dirname $1` ; BASENAME=`basename $1`
-		( cd $DIRNAME ; \
+		DIRNAME=`dirname "$1"` ; BASENAME=`basename "$1"`
+		( cd "$DIRNAME" ; \
 		$GS -q -sDEVICE=tiffg3 -r$RES -dNOPAUSE -dSAFER \
-		-sOutputFile=$BASENAME.%03d \
+		-sOutputFile="$BASENAME".%03d \
 		-sPAPERSIZE=$PAGE \
-		$BASENAME /dev/null )
+		"$BASENAME" /dev/null )
 		;;
 	II*|MM*|P4*)
 		echo "$1 is an image file..."
-		$EFIX -ve -otiffg3 -p$PAGEDIM -r$RES -n $1.%03d $1
+		$EFIX -ve -otiffg3 -p$PAGEDIM -r$RES -n "$1".%03d "$1"
 		;;
 	*)	echo "$1 is text..."
-		$EFIX -ve -otiffg3 -p$PAGEDIM -r$RES -n $1.%03d $TEXTFONT $1
+		$EFIX -ve -otiffg3 -p$PAGEDIM -r$RES -n "$1".%03d $TEXTFONT "$1"
 		;;
 	esac
 
@@ -801,7 +801,7 @@
 	
 	# look up names
 
-	case $1 in 
+	case "$1" in 
 		[A-Za-z]*) 
 		for f in $DIRFILES ; do
 			if [ -r $f ] ; then TELNO=`$LOOKUP` ; fi
@@ -836,36 +836,52 @@
 	# use `fax make' to convert files if they need to be updated
 
 	FILES=""
-	for f in $* ; do
-		case $f in -) FILES="$FILES -" ; continue ;; esac
-		if [ ! -r $f ] ; then
-	  		echo "can't read file $f" ; ERR=2 ; break 2 
+	for f in "$@" ; do
+		case "$f" in -) FILES="$FILES -" ; continue ;; esac
+		if [ ! -r "$f" ] ; then
+	  		echo "can't read file '$f'" ; ERR=2 ; break 2 
 		fi
-		case $f in
-		*.[0-9][0-9][0-9]) FILES="$FILES $f" ;;	# skip image files
-	   	*)	if echo ${f}.001: $f \; x | make -r -q -f - ; then
-echo ${f}.nnn is up-to-date
+		case "$f" in
+		*.[0-9][0-9][0-9]) if [ -z "$FILES" ]; then # skip image files
+		   	FILES="$f"
+   else
+   	FILES="$FILES|$f"
+   fi ;;
+	   	*)	file="`echo $f| sed -e "s/ /\\ /g"`"
+			if echo ${file}.001: $file \; x | make -r -q -f - ; then
+echo "'${f}.nnn' is up-to-date"
 			else
 	 			$RM ${f}.[0-9][0-9][0-9]
-	 			$FAX make $OPT $f
+	 			$FAX make $OPT "$f"
 			fi
-			if [ -r $f.001 ] ; then 
-		FILES="$FILES $f.[0-9][0-9][0-9]"
+			if [ -r "$f".001 ] ; then 
+		if [ -z "$FILES" ]; then
+		

Affordable pharmaceuticals

2005-03-17 Thread Switzerland Discreet Stuff
Notice:

Since 1924 our Official Swiss Pharm. has been the most 
trusted pharm. in the world, year after year.

Unlike others, we allow you to order at your discretion, 
without any questions and with the Iron Clad Swiss Privacy 
Act assuring your order will be secure, delivered and all 
information will be kept private. 
This weeks specials are hydr0, vic.s and sx stuff.

http://Alva.6mg.net/p/864/Alva

Did this reach you in error
please let us know and your info will be deleted from 
our database
http://Alva.6mg.net/z.php


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



Bug#299939: gkdial: Double-click on "Disconnect" causes a crash

2005-03-17 Thread Luca Bruno
Package: gkdial
Version: 1:1.8.0-3
Severity: grave
Tags: patch
Justification: causes non-serious data loss

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

After the connection, when there is the window with 
connection statistics, duoble-click on the "Disconnect" 
button causes a crash...
Also, if gkdial was started inside of gnome, it causes the
silently close of every other windows opened (in all workspaces).

Digging in the source, I noted a comment for a piece of code 
re-used from modemligth gnome-applet. So I think this is the 
same bug as in Debian Bug #220796 and Gnome Bug #135464.

I have not attached more infos because it is marked solved in 
gnome 2.10, and probably the same updated code should be used as 
patch also for gkdial.

Ciao, Luca

- -- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1)

Versions of packages gkdial depends on:
ii  libart-2.0-22.3.17-1 Library of functions for 2D graphi
ii  libatk1.0-0 1.8.0-4  The ATK accessibility toolkit
ii  libbonobo2-02.8.1-2  Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.8.1-1  The Bonobo UI library
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libgconf2-4 2.8.1-4  GNOME configuration database syste
ii  libglade2-0 1:2.4.2-1library to load .glade files at ru
ii  libglib2.0-02.6.2-1  The GLib library of C routines
ii  libgnome2-0 2.8.0-6  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.8.0-1  A powerful object-oriented display
ii  libgnomeui-02.8.0-3  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  2.8.3-11 The GNOME virtual file-system libr
ii  libgtk2.0-0 2.6.2-3  The GTK+ graphical user interface 
ii  libice6 4.3.0.dfsg.1-10  Inter-Client Exchange library
ii  liborbit2   1:2.10.5-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.8.0-3  Layout and rendering of internatio
ii  libpopt01.7-5lib for parsing cmdline parameters
ii  libsm6  4.3.0.dfsg.1-10  X Window System Session Management
ii  libx11-64.3.0.dfsg.1-10  X Window System protocol client li
ii  libxml2 2.6.16-3 GNOME XML library
ii  ppp 2.4.2+20040428-6 Point-to-Point Protocol (PPP) daem
ii  xlibs   4.3.0.dfsg.1-11  X Keyboard Extension (XKB) configu
ii  zlib1g  1:1.2.2-4compression library - runtime

- -- no debconf information

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (GNU/Linux)

iD8DBQFCOX/WRqobajv7n7MRAiukAKCkE+K3Jbjcd4drRlbnn3Fd43BK/wCfVimq
J0tZ6df/xsn0HoTUH8uSrEk=
=Xinz
-END PGP SIGNATURE-


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



Bug#299963: cl-odcl: package description typo(s) and the like

2005-03-17 Thread Florian Zumbiehl
Package: cl-odcl
Version: 1.3.5-3
Severity: minor

I searched through the Packages file a bit for typos and the like - below
you find a diff of this package's description (a) showing what I think is
wrong and (b) how I suggest it to be corrected.

For some discussion that took place on debian-devel before filing this bug,
see http://lists.debian.org/debian-devel/2005/03/msg01170.html
(msgid <20050315043210.GA29464.florz.dyndns.org>).

 Description: Common Lisp utilities from onShore Development
  A Commmon Lisp library of utility functions.  This package contains a
  number of useful utility functions for Lisp developers.
  .
  Include are editing contexts, a transaction system, a filesystem
- database with indexing, a LRU cache algorithm, time functions, simple
+ database with indexing, an LRU cache algorithm, time functions, simple
  i18n/l10n, developer diagnostics, a test regression system, SMTP
  mailer, object property sets and utility functions related to lists,
  strings and numbers.
  .
  Homepage: http://alpha.onshored.com/lisp-software/#odcl


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



Bug#300008: ldap2dns: package description typo(s) and the like

2005-03-17 Thread Florian Zumbiehl
Package: ldap2dns
Version: 0.3.1-2
Severity: minor

I searched through the Packages file a bit for typos and the like - below
you find a diff of this package's description (a) showing what I think is
wrong and (b) how I suggest it to be corrected.

For some discussion that took place on debian-devel before filing this bug,
see http://lists.debian.org/debian-devel/2005/03/msg01170.html
(msgid <20050315043210.GA29464.florz.dyndns.org>).

 Description: LDAP based DNS management system.
  ldap2dns is a program to create DNS (Domain Name Service) records directly
- from a LDAP directory. It can and should be be used to replace the secondary
+ from an LDAP directory. It can and should be be used to replace the secondary
  name-server by a second primary one. ldap2dns reduces all kind of
  administration overhead: No more flat file editing, no more zone file
  editing. After having installed ldap2dns, the administrator only has to
  access the LDAP directory.
  .
  ldap2dns is designed to write ASCII data files used by tinydns from the
  djbdns package, but also may be used to write .db-files used by named as
  found in the BIND package.


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



Processing of electric_6.05-2.1_i386.changes

2005-03-17 Thread Archive Administrator
electric_6.05-2.1_i386.changes uploaded successfully to localhost
along with the files:
  electric_6.05-2.1.dsc
  electric_6.05-2.1.diff.gz
  electric_6.05-2.1_i386.deb

Greetings,

Your Debian queue daemon


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



Processing of hp48cc_1.3-3.1_i386.changes

2005-03-17 Thread Archive Administrator
hp48cc_1.3-3.1_i386.changes uploaded successfully to localhost
along with the files:
  hp48cc_1.3-3.1.dsc
  hp48cc_1.3-3.1.diff.gz
  hp48cc_1.3-3.1_i386.deb

Greetings,

Your Debian queue daemon


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



Processing of libid3tag_0.15.1b-4.1_i386.changes

2005-03-17 Thread Archive Administrator
libid3tag_0.15.1b-4.1_i386.changes uploaded successfully to localhost
along with the files:
  libid3tag_0.15.1b-4.1.dsc
  libid3tag_0.15.1b-4.1.diff.gz
  libid3tag0_0.15.1b-4.1_i386.deb
  libid3tag0-dev_0.15.1b-4.1_i386.deb

Greetings,

Your Debian queue daemon


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



Processing of libmad_0.15.1b-1.1_i386.changes

2005-03-17 Thread Archive Administrator
libmad_0.15.1b-1.1_i386.changes uploaded successfully to localhost
along with the files:
  libmad_0.15.1b-1.1.dsc
  libmad_0.15.1b-1.1.diff.gz
  libmad0_0.15.1b-1.1_i386.deb
  libmad0-dev_0.15.1b-1.1_i386.deb

Greetings,

Your Debian queue daemon


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



Processing of madplay_0.15.2b-3.1_i386.changes

2005-03-17 Thread Archive Administrator
madplay_0.15.2b-3.1_i386.changes uploaded successfully to localhost
along with the files:
  madplay_0.15.2b-3.1.dsc
  madplay_0.15.2b-3.1.diff.gz
  madplay_0.15.2b-3.1_i386.deb

Greetings,

Your Debian queue daemon


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



Processing of vipec_3.2.0-3.1_i386.changes

2005-03-17 Thread Archive Administrator
vipec_3.2.0-3.1_i386.changes uploaded successfully to localhost
along with the files:
  vipec_3.2.0-3.1.dsc
  vipec_3.2.0-3.1.diff.gz
  vipec_3.2.0-3.1_i386.deb

Greetings,

Your Debian queue daemon


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



vipec_3.2.0-3.1_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
vipec_3.2.0-3.1.diff.gz
  to pool/main/v/vipec/vipec_3.2.0-3.1.diff.gz
vipec_3.2.0-3.1.dsc
  to pool/main/v/vipec/vipec_3.2.0-3.1.dsc
vipec_3.2.0-3.1_i386.deb
  to pool/main/v/vipec/vipec_3.2.0-3.1_i386.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



libmad_0.15.1b-1.1_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
libmad0-dev_0.15.1b-1.1_i386.deb
  to pool/main/libm/libmad/libmad0-dev_0.15.1b-1.1_i386.deb
libmad0_0.15.1b-1.1_i386.deb
  to pool/main/libm/libmad/libmad0_0.15.1b-1.1_i386.deb
libmad_0.15.1b-1.1.diff.gz
  to pool/main/libm/libmad/libmad_0.15.1b-1.1.diff.gz
libmad_0.15.1b-1.1.dsc
  to pool/main/libm/libmad/libmad_0.15.1b-1.1.dsc
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



libid3tag_0.15.1b-4.1_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
libid3tag0-dev_0.15.1b-4.1_i386.deb
  to pool/main/libi/libid3tag/libid3tag0-dev_0.15.1b-4.1_i386.deb
libid3tag0_0.15.1b-4.1_i386.deb
  to pool/main/libi/libid3tag/libid3tag0_0.15.1b-4.1_i386.deb
libid3tag_0.15.1b-4.1.diff.gz
  to pool/main/libi/libid3tag/libid3tag_0.15.1b-4.1.diff.gz
libid3tag_0.15.1b-4.1.dsc
  to pool/main/libi/libid3tag/libid3tag_0.15.1b-4.1.dsc
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



hp48cc_1.3-3.1_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
hp48cc_1.3-3.1.diff.gz
  to pool/main/h/hp48cc/hp48cc_1.3-3.1.diff.gz
hp48cc_1.3-3.1.dsc
  to pool/main/h/hp48cc/hp48cc_1.3-3.1.dsc
hp48cc_1.3-3.1_i386.deb
  to pool/main/h/hp48cc/hp48cc_1.3-3.1_i386.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



madplay_0.15.2b-3.1_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
madplay_0.15.2b-3.1.diff.gz
  to pool/main/m/madplay/madplay_0.15.2b-3.1.diff.gz
madplay_0.15.2b-3.1.dsc
  to pool/main/m/madplay/madplay_0.15.2b-3.1.dsc
madplay_0.15.2b-3.1_i386.deb
  to pool/main/m/madplay/madplay_0.15.2b-3.1_i386.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



electric_6.05-2.1_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
electric_6.05-2.1.diff.gz
  to pool/main/e/electric/electric_6.05-2.1.diff.gz
electric_6.05-2.1.dsc
  to pool/main/e/electric/electric_6.05-2.1.dsc
electric_6.05-2.1_i386.deb
  to pool/main/e/electric/electric_6.05-2.1_i386.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



Processing of fvwm-shell_1.6_i386.changes

2005-03-17 Thread Archive Administrator
fvwm-shell_1.6_i386.changes uploaded successfully to localhost
along with the files:
  fvwm-shell_1.6.dsc
  fvwm-shell_1.6.tar.gz
  fvwm-shell_1.6_all.deb

Greetings,

Your Debian queue daemon


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



Processing of log4cpp_0.2.8-2_i386.changes

2005-03-17 Thread Archive Administrator
log4cpp_0.2.8-2_i386.changes uploaded successfully to localhost
along with the files:
  log4cpp_0.2.8-2.dsc
  log4cpp_0.2.8-2.diff.gz
  liblog4cpp1c102_0.2.8-2_i386.deb
  liblog4cpp-dev_0.2.8-2_i386.deb

Greetings,

Your Debian queue daemon


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



fvwm-shell_1.6_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
fvwm-shell_1.6.dsc
  to pool/main/f/fvwm-shell/fvwm-shell_1.6.dsc
fvwm-shell_1.6.tar.gz
  to pool/main/f/fvwm-shell/fvwm-shell_1.6.tar.gz
fvwm-shell_1.6_all.deb
  to pool/main/f/fvwm-shell/fvwm-shell_1.6_all.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 181693 235167 


Thank you for your contribution to Debian.


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



log4cpp_0.2.8-2_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
liblog4cpp-dev_0.2.8-2_i386.deb
  to pool/main/l/log4cpp/liblog4cpp-dev_0.2.8-2_i386.deb
liblog4cpp1c102_0.2.8-2_i386.deb
  to pool/main/l/log4cpp/liblog4cpp1c102_0.2.8-2_i386.deb
log4cpp_0.2.8-2.diff.gz
  to pool/main/l/log4cpp/log4cpp_0.2.8-2.diff.gz
log4cpp_0.2.8-2.dsc
  to pool/main/l/log4cpp/log4cpp_0.2.8-2.dsc
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



Processing of log4cpp-doc_0.2.8-2_i386.changes

2005-03-17 Thread Archive Administrator
log4cpp-doc_0.2.8-2_i386.changes uploaded successfully to localhost
along with the files:
  log4cpp-doc_0.2.8-2.dsc
  log4cpp-doc_0.2.8-2.tar.gz
  liblog4cpp-doc_0.2.8-2_all.deb

Greetings,

Your Debian queue daemon


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



Processing of vcg_1.30debian-2_i386.changes

2005-03-17 Thread Archive Administrator
vcg_1.30debian-2_i386.changes uploaded successfully to localhost
along with the files:
  vcg_1.30debian-2.dsc
  vcg_1.30debian-2.diff.gz
  vcg_1.30debian-2_i386.deb

Greetings,

Your Debian queue daemon


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



log4cpp-doc_0.2.8-2_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
liblog4cpp-doc_0.2.8-2_all.deb
  to pool/main/l/log4cpp-doc/liblog4cpp-doc_0.2.8-2_all.deb
log4cpp-doc_0.2.8-2.dsc
  to pool/main/l/log4cpp-doc/log4cpp-doc_0.2.8-2.dsc
log4cpp-doc_0.2.8-2.tar.gz
  to pool/main/l/log4cpp-doc/log4cpp-doc_0.2.8-2.tar.gz
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



Processing of hanterm-classic_3.1.6.0-4_i386.changes

2005-03-17 Thread Archive Administrator
hanterm-classic_3.1.6.0-4_i386.changes uploaded successfully to localhost
along with the files:
  hanterm-classic_3.1.6.0-4.dsc
  hanterm-classic_3.1.6.0-4.diff.gz
  hanterm-classic_3.1.6.0-4_i386.deb

Greetings,

Your Debian queue daemon


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



Bug#299790: fixed

2005-03-17 Thread Debian Archive Maintenance
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

   tcl-sql | 2621-1.2 | source, alpha, arm, hppa, hurd-i386, i386, ia64, 
m68k, mips, mipsel, powerpc, s390, sparc

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.

Packages are never removed from testing by hand.  Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems.

Bugs which have been reported against this package are not automatically
removed from the Bug Tracking System.  Please check all open bugs and
close them or re-assign them to another package if the removed package
was superseded by another one.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED]

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[EMAIL PROTECTED]

Debian distribution maintenance software
pp.
Jeroen van Wolffelaar (the ftpmaster behind the curtain)


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



vcg_1.30debian-2_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
vcg_1.30debian-2.diff.gz
  to pool/main/v/vcg/vcg_1.30debian-2.diff.gz
vcg_1.30debian-2.dsc
  to pool/main/v/vcg/vcg_1.30debian-2.dsc
vcg_1.30debian-2_i386.deb
  to pool/main/v/vcg/vcg_1.30debian-2_i386.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.


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



hanterm-classic_3.1.6.0-4_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
hanterm-classic_3.1.6.0-4.diff.gz
  to pool/main/h/hanterm-classic/hanterm-classic_3.1.6.0-4.diff.gz
hanterm-classic_3.1.6.0-4.dsc
  to pool/main/h/hanterm-classic/hanterm-classic_3.1.6.0-4.dsc
hanterm-classic_3.1.6.0-4_i386.deb
  to pool/main/h/hanterm-classic/hanterm-classic_3.1.6.0-4_i386.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 253208 262570 267025 


Thank you for your contribution to Debian.


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



Processing of hanterm-xf_3.3.1p18-9_i386.changes

2005-03-17 Thread Archive Administrator
hanterm-xf_3.3.1p18-9_i386.changes uploaded successfully to localhost
along with the files:
  hanterm-xf_3.3.1p18-9.dsc
  hanterm-xf_3.3.1p18-9.diff.gz
  hanterm-xf_3.3.1p18-9_i386.deb

Greetings,

Your Debian queue daemon


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



hanterm-xf_3.3.1p18-9_i386.changes ACCEPTED

2005-03-17 Thread Debian Installer

Accepted:
hanterm-xf_3.3.1p18-9.diff.gz
  to pool/main/h/hanterm-xf/hanterm-xf_3.3.1p18-9.diff.gz
hanterm-xf_3.3.1p18-9.dsc
  to pool/main/h/hanterm-xf/hanterm-xf_3.3.1p18-9.dsc
hanterm-xf_3.3.1p18-9_i386.deb
  to pool/main/h/hanterm-xf/hanterm-xf_3.3.1p18-9_i386.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 118106 133138 


Thank you for your contribution to Debian.


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