Processing of xfonts-ay_1.0-4_i386.changes

2007-09-24 Thread Archive Administrator
xfonts-ay_1.0-4_i386.changes uploaded successfully to localhost
along with the files:
  xfonts-ay_1.0-4.dsc
  xfonts-ay_1.0-4.diff.gz
  xfonts-ay_1.0-4_all.deb

Greetings,

Your Debian queue daemon


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



xfonts-ay_1.0-4_i386.changes ACCEPTED

2007-09-24 Thread Debian Installer

Accepted:
xfonts-ay_1.0-4.diff.gz
  to pool/main/x/xfonts-ay/xfonts-ay_1.0-4.diff.gz
xfonts-ay_1.0-4.dsc
  to pool/main/x/xfonts-ay/xfonts-ay_1.0-4.dsc
xfonts-ay_1.0-4_all.deb
  to pool/main/x/xfonts-ay/xfonts-ay_1.0-4_all.deb


Override entries for your package:
xfonts-ay_1.0-4.dsc - source x11
xfonts-ay_1.0-4_all.deb - optional x11

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



qa.debian.org free upgrades!

2007-09-24 Thread Jonathon Hankins
Dewitt Dumas

unbelievable 18+ offer
www.xxxpromo dot cn


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



Processed: tagging 443711

2007-09-24 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.8
> tags 443711 sid lenny
Bug#443711: FTBFS: Uses deprecated GTK+ features
Tags were: patch
Tags added: sid, lenny

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#443850: htdig problem in postinst

2007-09-24 Thread Holger Levsen
package: htdig
x-debbugs-cc: [EMAIL PROTECTED]

Hi,

On Monday 24 September 2007 17:15, Tim Cutts wrote:
> That's probably worth filing as a bug in the htdig package.  Its
> postinst script should probably be explicitly setting $verbose to a
> suitable value, or unsetting it, within the script.  It certainly
> shouldn't be using it uninitialised and just trusting the calling
> shell hasn't defined it...

s/probably/definitly/


regards,
Holger 

On 24 Sep 2007, at 4:05 pm, Kay Bieri wrote:

>> Anybody has seen this or knows how to efficiently debug this?
>>
>> The postinst of htdig (1:3.2.0b6-3.1) fails on the call to  
>> htdigconfig when
>> it's called from inside fai -N softupdate, but not when called  
>> manually or
>> from within a normal apt or aptitude session.
>>
>> The error is "htfuzzy: '1' is not a supported algorithm."
>
> I had the same problem some time ago. htdig uses an environmental  
> variable $verbose, which fai uses as well. fai sets it to 1,  
> whereas htdig probably expect '-v' or something. Here are the  
> relevant lines from /usr/sbin/htdicconfig:
> 
> if [ ! -f /var/lib/htdig/word2root.db ]
> then
> htfuzzy $verbose endings
> fi
>
> if [ ! -f /var/lib/htdig/synonyms.db ]
> then
> htfuzzy $verbose synonyms
> fi
> 
>
> I "solved" the problem by preseeding debconf to skip the config  
> part and called htdigconfig in a hook afterwards:
> verbose= $ROOTCMD /usr/sbin/htdigconfig


pgpRnM0vTKT3A.pgp
Description: PGP signature


htdig problem in postinst

2007-09-24 Thread Adrian von Bidder
(Yes, this is on-topic on the fai list  :-)

Anybody has seen this or knows how to efficiently debug this?

The postinst of htdig (1:3.2.0b6-3.1) fails on the call to htdigconfig when 
it's called from inside fai -N softupdate, but not when called manually or 
from within a normal apt or aptitude session.

The error is "htfuzzy: '1' is not a supported algorithm."

Thanks in advance & cheers
-- vbi

-- 
featured link: http://fortytwo.ch/smtp


signature.asc
Description: This is a digitally signed message part.


Bug#415451: xautomation: xte misinterprets '/' as '7'.

2007-09-24 Thread Marco Steinacher
tags 415451 patch
thanks

Hi,

The problem is the following:

xte needs to convert the user input, e.g. the string '/', to key events.
On a German keyboard this would be the following sequence: press the
shift key, press the '7'-key, release the '7'-key, release the shift
key. The same is the case for a US keyboard with the character '&'.
Therefore xte needs to know the current keyboard layout in order to map
'input string' to 'sequence of key events'.

Currently, this is implemented using a hard-coded table for the US
keyboard layout. So it works for many characters that are generated
using the shift key on a US keyboard (e.g. all capital
letters,':','?','!' etc.), but it does not for other keyboard layouts.
There is also a table for the German keyboard layout, but you have
choose one at compile time, and the Debian package is compiled with the
US layout. This is not very nice.

A workaround would be to send commands with the explicit key sequence.
For example instead of

  str http://foo.com/

the following sequence must be sent:

  str http:
  keydown Shift_L
  key 7
  keyup Shift_L
  keydown Shift_L
  key 7
  keyup Shift_L
  str foo.com
  keydown Shift_L
  key 7
  keyup Shift_L

However, this is quite ugly.

Here I provide a patch to get rid of the hard-coded conversion table.
With this patch, xte queries the current keyboard layout from the
X-server and generates a table with the current mapping at startup. When
processing the 'key' and 'str' commands, it generates the correct key
event sequence for each character.

Additionally, I implemented Unicode support, which means that now you
can send UTF-8 encoded strings with the 'key' and 'str' commands. This
is required, for example, to send the character 'ä', which is frequently
used in German.

PS: Because this package seems the be orphaned, I will try to build a
package with this patch and ask a sponsor to upload it to the archive.
I'm willing to become the maintainer of this package later, if that's in
demand.

Kind regards,
Marco Steinacher
diff -rupN xautomation-0.96/configure.in xautomation-0.96-new/configure.in
--- xautomation-0.96/configure.in	2004-05-13 23:49:02.0 +0200
+++ xautomation-0.96-new/configure.in	2007-09-24 17:34:30.0 +0200
@@ -9,20 +9,6 @@ AC_ARG_ENABLE(debug,
 			in slower binaries]),
 AC_DEFINE(DEBUG_A_LOO))
 
-AC_ARG_ENABLE(keyboard,
-	AC_HELP_STRING([--enable-keyboard=keyboard],
-			[Use different keyboard map, default is 'us'.  Can be any
-			of the kbd_*.h]),
-	)
-
-if test "x$enable_keyboard" = "x" ; then
-	enable_keyboard=us
-fi
-
-AC_MSG_NOTICE([Using '$enable_keyboard' as keyboard map])
-rm -f kbd.h
-ln -s kbd_$enable_keyboard.h kbd.h
-
 # Checks for programs.
 AC_PROG_CC
 
@@ -33,14 +19,14 @@ AC_CHECK_LIB(png, png_read_info)
 
 # Checks for header files.
 AC_PATH_X
-AC_CHECK_HEADERS([stdlib.h unistd.h])
+AC_CHECK_HEADERS([stdlib.h unistd.h wchar.h locale.h])
 
 # Checks for typedefs, structures, and compiler characteristics.
 AC_C_CONST
 
 # Checks for library functions.
 AC_FUNC_MALLOC
-AC_CHECK_FUNCS([bzero])
+AC_CHECK_FUNCS([bzero wmemset mbstowcs])
 
 if test "1$x_libraries" = "1"
 then
diff -rupN xautomation-0.96/debian/rules xautomation-0.96-new/debian/rules
--- xautomation-0.96/debian/rules	2007-09-20 18:51:20.0 +0200
+++ xautomation-0.96-new/debian/rules	2007-09-24 17:33:41.0 +0200
@@ -45,7 +45,6 @@ clean:
 	dh_testdir
 	dh_testroot
 	-$(MAKE) distclean
-	-rm -f kbd.h 
 	-rm -f *-stamp 
 
 	dh_clean 
diff -rupN xautomation-0.96/kbd_german.h xautomation-0.96-new/kbd_german.h
--- xautomation-0.96/kbd_german.h	2003-02-11 00:54:08.0 +0100
+++ xautomation-0.96-new/kbd_german.h	1970-01-01 01:00:00.0 +0100
@@ -1,65 +0,0 @@
-/* Contributed by Stefan Nickl */
-
-/* Map for German keyboards */
-#define KBDMAP "German"
-
-char *problems[] = { " ", NULL, "space",
- ":", "Shift_L", "colon",
- ";", "Shift_L", "semicolon",
- "<", NULL, "less",
- ">", "Shift_L", "greater",
- "?", "Shift_L", "question",
- "/", "Shift_L", "slash",
- "+", NULL, "plus",
- ",", NULL, "comma",
- "-", NULL, "minus",
- ".", NULL, "period",
- "!", "Shift_L", "exclam",
- "#", NULL, "number",
- "$", "Shift_L", "dollar",
- "%", "Shift_L", "percent",
- "&", "Shift_L", "ampersand",
- "(", "Shift_L", "parenleft",
- ")", "Shift_L", "parenright",
- "{", "AltGr", "braceleft",
- "}", "AltGr", "braceright",
- "|", "AltGr", "bar",
- "~", "AltGr", "asciitilde",
- "'", "Shift_L", "apostrophe",
- "*", "Shift_L", "asterisk",
- "=", "Shift_L", "eq

Bug#439234: massage therapists mailing list

2007-09-24 Thread Justice andorra



Only until Sep 28 - When you purchase the Doctor Listing at the sale price you 
will also get Hospital, Nursing Home, Dentist and Chiropractor data at no 
additional cost


Licensed Doctors in the USA 

788,462 in total – 17,400 emails

34 primary and secondary specialties

Sort by over a dozen different fields

Special Price: $389


*** Get the 4 databases below as a bonus when you order the MD list above ***

Listing of US Hospitals
more than 23k hospital administrators in over 7k hospitals [worth over $300 
alone)

Dentists in the USA
More than half a million listings [worth $299 alone!]

Nursing Homes in the USA
includes over 31,589 Senior administrators, 11,288 Nursing Directors in over 
14,706 Nursing Homes in the United States. (value: $249)

American Chiropractors Database
100k Chiropractors offices with full contact data including email, postal 
address, phone and fax

send us an email: [EMAIL PROTECTED] call us: 206-202-1564




to be promptly excluded from future mailings please type "exclude" in the 
subject 



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



Bug#443866: htdig: please unset verbose in postinst

2007-09-24 Thread Adrian von Bidder
Package: htdig
Version: 1:3.2.0b6-3.1
Severity: normal
Tags: patch

Hi!

htdig's postinst errors out if the package is installed from fai because 
fai's use of $verbose (set to 1) conflicts with htdigconfig's use of the 
same variable (probably intended to be set to -v or something like that.)

The patch might be as simple as
--- /var/lib/dpkg/info/htdig.postinst   2007-02-26 20:00:33.0 +0100
+++ htdig.postinst  2007-09-24 19:40:50.0 +0200
@@ -23,7 +23,7 @@
 # generate ht://Dig databases now
 db_get htdig/generate-databases
 if [ "$RET" = "true" ]; then
-   /usr/sbin/htdigconfig
+   verbose= /usr/sbin/htdigconfig
 fi




thanks
-- vbi

 
-- 
featured product: Debian GNU/Linux - http://debian.org


signature.asc
Description: This is a digitally signed message part.


Processed: merging

2007-09-24 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> merge 443850 443866
Bug#443850: htdig problem in postinst
Bug#443866: htdig: please unset verbose in postinst
Merged 443850 443866.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#443900: Gringotts actually does not start under Debian Sid 32 Bit

2007-09-24 Thread Armin Störmer
Package: gringotts
Version: 1.2.8+1.2.9pre1-15
Severity: normal

--- Please enter the report below this line. ---


--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.23-rc7-git3-slh-smp-1

Debian Release: lenny/sid
  500 unstablewww.debian-multimedia.org 
  500 unstablesidux.com 
  500 unstableftp.de.debian.org 
  500 unstabledeb.opera.com 
  500 testing ftp.de.debian.org 
1 experimentalftp.de.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-===
libatk1.0-0   (>= 1.13.2) | 1.20.0-1
libc6  (>= 2.6-1) | 2.6.1-5
libcairo2  (>= 1.4.0) | 1.4.10-1
libfontconfig1 (>= 2.4.0) | 2.4.2-1.2
libglib2.0-0  (>= 2.12.9) | 2.14.1-3
libgringotts2 | 1.2.1-11
libgtk2.0-0(>= 2.10.12-3) | 2.12.0-2
libpango1.0-0 (>= 1.16.4) | 1.18.2-1
libpopt0(>= 1.10) | 1.10-3
libx11-6  | 2:1.0.3-7
libxcursor1(>> 1.1.2) | 1:1.1.9-1
libxext6  | 1:1.0.3-2
libxfixes3   (>= 1:4.0.1) | 1:4.0.3-2
libxi6| 2:1.1.3-1
libxinerama1  | 1:1.0.2-1
libxrandr2   (>= 2:1.2.0) | 2:1.2.2-1
libxrender1   | 1:0.9.4-1


-- 

Armin Störmer
Hornstraße 18

D-10963 Berlin

Fon:+49 30 32899069
Mobil: +49 1577 3839970

[EMAIL PROTECTED]




Bug#443900: Gringotts actually does not start under Debian Sid 32 Bit

2007-09-24 Thread Roberto C . Sánchez
On Tue, Sep 25, 2007 at 12:00:22AM +0200, Armin Störmer wrote:
> Package: gringotts
> Version: 1.2.8+1.2.9pre1-15
> Severity: normal
> 
> --- Please enter the report below this line. ---
> 
> 
> --- System information. ---

Your report is apparently missing.  Is there an error message or some
other indication of what went wrong?

Regards,

-Roberto
-- 
Roberto C. Sánchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Bug#443900: Gringotts does not start within Debian Sid

2007-09-24 Thread Armin Störmer
Sorry - this was my first bug report ever. The problem is that gringotts 
replies:

(process:6443): gringotts-CRITICAL **: Increase the memory locking limit to at 
least 5120 bytes. Current limit: 32768 bytes.
See /usr/share/doc/gringotts/README.Debian for directions.

my system is:

Host/Kernel/OS  "Berlin" running Linux 2.6.23-rc7-git3-slh-smp-1 i686 [ sidux 
2007-03 - Γαῖα preview 2 - kde-lite - (200707231344) ]

CPU Infomobile AMD Athlon XP 2400+ 256 KB cache flags( sse ) clocked 
at [ 1994.535 MHz ]

Videocard   ATI Radeon R250 [Mobility FireGL 9000]  X.Org 1.4.0  [ 
1024x768 @60hz ]

Network cards   VIA VT6102 [Rhine-II], at port: d400

Processes 106 | Uptime 4:49 | Memory 172.1/757.5MB | HDD WDC WD1200BEVE-11UYT0 
Size 120GB (53%used) | Client Shell | Infobash v2.67

Please let me know, if you need any further information ;)

-- 

Armin Störmer
Hornstraße 18

D-10963 Berlin

Fon:+49 30 32899069
Mobil: +49 1577 3839970

[EMAIL PROTECTED]