Bug#572746: libm: sinf/cosf performance is awful on amd64

2010-03-09 Thread Jerome Vizcaino
Ok, running sinf/cosf with bounded values gives better performance results 
(close to sin/cos ones).

I think the binding trick should be written in the manpages as a note on 
amd64 
(at least) because the behavior is different on i386 and clearly not expected...

Anyway, I still can't get the performance I had on the same hardware : 
+ 0.94 secs on 32 bits sinf/cosf without bound values
+ 1.07 secs on 64 bits sinf/cosf with manual binding.

Do you know how the asm in the lib binds the input value (I mean for the 
optimised sin/cos versions for example) ?

Jerome

On Monday 08 March 2010, Aurelien Jarno wrote:
 Jerome Vizcaino a écrit :
  What do you mean sinf/cosf is supposed to be twice faster ?
  You're mentionning calling it with bound values ?
 
 Yes, with the current code and bounded values, it is twice faster. This
 is not the case anymore with the assembly code, as the same FPU
 instruction (fcos/fsin/fsincos) is used for the three versions (float,
 double, long double).
 




--
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201003090911.17967.vizcaino_jer...@yahoo.fr



Rappel : votre réunion téléphonique va démarrer

2010-03-09 Thread Caroline













































Netvisio : 1er Opérateur Européen de Solutions de collaboration à distance
AudioConférence - Webmeeting - WebSéminaires

Cet email commercial est conforme à la législation en vigueur et aux 
délibérations de la CNIL 
des 22 et 30 mars 2005 sur la prospectionpar courrier électronique dans le 
cadre professionnel. 
Conformément à l'article 34 de la loi 78-17 du 6 janvier 1978 relative à 
l'informatique aux fichiers et 
aux libertés, vous disposez d'un droit d'accès, de rectification des données 
nominatives vous concernant.

Processed: Re: Bug#561249: Spurious warning with -Wconversion (uint16_t/htons) in -O2 mode

2010-03-09 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 561249 libc6-dev
Bug #561249 [g++-4.4] g++-4.4: Spurious warning with -Wconversion 
(uint16_t/htons) in -O2 mode
Bug reassigned from package 'g++-4.4' to 'libc6-dev'.
Bug No longer marked as found in versions gcc-4.4/4.4.2-5.
 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.12681487371598.transcr...@bugs.debian.org



Bug#561249: Spurious warning with -Wconversion (uint16_t/htons) in -O2 mode

2010-03-09 Thread Falk Hueffner
reassign 561249 libc6-dev
thanks

On Wed, Dec 16, 2009 at 10:54:21AM +0100, Aurelien Jarno wrote:
 Eric Estievenart a écrit :
  The bug may be rather in libc6-dev, which defines:
  htons to __bswap16 if optimize  little endian,
  and __bswap16 in bits/byteswap.h
  # define __bswap_16(x) \
   (__extension__ 
\
({ register unsigned short int __v, __x = (x);
\
   if (__builtin_constant_p (__x))
\
 __v = __bswap_constant_16 (__x); 
\
   else   
\
 __asm__ (rorw $8, %w0  
\
  : =r (__v)
\
  : 0 (__x) 
\
  : cc);
\
   __v; }))
  I'm not expert enough with gcc inline assembly to guess what the exact
  problem is, but it is definitely in this macro or the way gcc handles it,
  but since gcc = 4.2 noes not show any warning in optimize it, I'd rather
  think it is a gcc (4.3  4.4) regression
 
 The problem is not the asm code, but actually the shift that comes from
 __bswap_constant_16(). The problem can be reproduced with this simple code:
 
 #include stdint.h
 
 void test ()
 {
   uint16_t s = 123;
   uint16_t t = (s  0xff)  8;
   uint16_t u = ((uint8_t)s)  8;
 }
 
 It looks like the  operator implicitely convert the value to int. I
 haven't checked the standards about that.

Any arithmetic operation causes promotion of the operands from
unsigned short to int first. So the warning is correct.

  Falk



--
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100309153209.ga15...@minet.uni-jena.de



Bug#553206: libc6: Similar fail for %llu on 0x200000-long string of '9's

2010-03-09 Thread Edward Welbourne
Package: libc6
Version: 2.10.2-6
Severity: normal

Here's a stack-trace: quote src=gdb

(gdb) run
Starting program: /disk/home/eddy/work/mine/toys/sscanferange 

Program received signal SIGSEGV, Segmentation fault.
0xb7ee1d2d in _IO_vfscanf_internal (s=0xbfdff2dc, format=0x8048540 %llu, 
argptr=0xbfdff3a8 žóÿ¿, errp=0x0) at vfscanf.c:1760
1760vfscanf.c: No such file or directory.
in vfscanf.c
(gdb) bt
#0  0xb7ee1d2d in _IO_vfscanf_internal (s=0xbfdff2dc, format=0x8048540 %llu, 
argptr=0xbfdff3a8 žóÿ¿, errp=0x0) at vfscanf.c:1760
#1  0xb7ee79c5 in *__GI___isoc99_vsscanf (string=0xbfdff3b7 '9' repeats 200 
times..., format=0x8048540 %llu, args=0xbfdff3a8 žóÿ¿) at 
isoc99_vsscanf.c:44
#2  0xb7ee791f in __isoc99_sscanf (s=0xbfdff3b7 '9' repeats 200 times..., 
format=0x8048540 %llu) at isoc99_sscanf.c:33
#3  0x08048474 in main () at sscanferange.c:11

/quote produced by this source file name=sscanferange.c

#include stdio.h
#include string.h
#include errno.h

#define SIZE 0x20 // crashes; 0x1f is ok
int main()
{
unsigned long long val;
char buf[SIZE + 1];
memset(buf, '9', SIZE);
buf[SIZE] = '\0';
errno = 0;
return 1 != sscanf(buf, %llu, val) || errno != ERANGE;
}

/file
There appears to be a two megabyte limit on endurable length of
the string of digits.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_GB.ISO-8859-15, LC_CTYPE=en_GB.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages libc6 depends on:
ii  libc-bin  2.10.2-6   Embedded GNU C Library: Binaries
ii  libgcc1   1:4.4.2-9  GCC support library

Versions of packages libc6 recommends:
ii  libc6-i6862.10.2-6   GNU C Library: Shared libraries [i

Versions of packages libc6 suggests:
ii  debconf [debconf-2.0] 1.5.28 Debian configuration management sy
ii  glibc-doc 2.10.2-6   Embedded GNU C Library: Documentat
ii  locales   2.10.2-6   Embedded GNU C Library: National L

-- debconf information:
* glibc/upgrade: true
* glibc/disable-screensaver:
  glibc/restart-failed:
* glibc/restart-services: rsync openbsd-inetd nis exim4 cups cron atd xdm



--
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100309153906.19947.42081.report...@whorl



r4223 - glibc-package/trunk/debian/patches/hurd-i386

2010-03-09 Thread Samuel Thibault
Author: sthibault
Date: 2010-03-09 17:30:33 + (Tue, 09 Mar 2010)
New Revision: 4223

Modified:
   glibc-package/trunk/debian/patches/hurd-i386/cvs-setsid.diff
Log:
drop the ChangeLog part of patches/hurd-i386/cvs-setsid.diff

Modified: glibc-package/trunk/debian/patches/hurd-i386/cvs-setsid.diff
===
--- glibc-package/trunk/debian/patches/hurd-i386/cvs-setsid.diff
2010-03-08 16:08:32 UTC (rev 4222)
+++ glibc-package/trunk/debian/patches/hurd-i386/cvs-setsid.diff
2010-03-09 17:30:33 UTC (rev 4223)
@@ -5,23 +5,9 @@
 Hurd: Fix possibly uninitialized variable in _hurd_locked_install_cttyid.
 
 ---
- ChangeLog|5 +
  hurd/hurdioctl.c |   24 ++--
  2 files changed, 15 insertions(+), 14 deletions(-)
 
-diff --git a/ChangeLog b/ChangeLog
-index 3ff2684..aba0d71 100644
 a/ChangeLog
-+++ b/ChangeLog
-@@ -1,3 +1,8 @@
-+2009-12-22  Samuel Thibault  samuel.thiba...@ens-lyon.org
-+
-+  * hurd/hurdioctl.c (_hurd_locked_install_cttyid): Set newctty to
-+  MACH_PORT_NULL when id != cttyid.
-+
- 2009-12-20  Samuel Thibault  samuel.thiba...@ens-lyon.org
- 
-   * sysdeps/mach/hurd/getcwd.c (cleanup): Do not call
 diff --git a/hurd/hurdioctl.c b/hurd/hurdioctl.c
 index 96d910b..7c68984 100644
 --- a/hurd/hurdioctl.c


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1np3gm-00027i...@alioth.debian.org



Bug#573214: locales: sv_SE.ISO8859-1 locale suddenly invalid(?)

2010-03-09 Thread Peter Krefting
Package: locales
Version: 2.7-18lenny2
Severity: normal

This configuration has worked for me for a long time:

  $ echo $LC_ALL 
  sv_SE.ISO8859-1
  $ echo $LANG
  sv
  $ echo $LANGUAGE 
  
sv_SE.ISO-8859-1:sv:nb_NO.ISO-8859-1:nb:da_DK.ISO-8859-1:da:nn_NO.ISO-8859-1:nn:en_GB.ISO-8859-1:en_US.ISO-8859-1:en

But suddenly (probably after a recent security update) it has started
producing error messages:

  locale: Cannot set LC_CTYPE to default locale: No such file or directory
  locale: Cannot set LC_MESSAGES to default locale: No such file or directory
  locale: Cannot set LC_COLLATE to default locale: No such file or directory

That doesn't seem right. I still get Swedish sort order, Swedish messages
from software and Swedish manual pages where available, so something strange
is going on.

  $ locale
  LANG=sv
  
LANGUAGE=sv_SE.ISO-8859-1:sv:nb_NO.ISO-8859-1:nb:da_DK.ISO-8859-1:da:nn_NO.ISO-8859-1:nn:en_GB.ISO-8859-1:en_US.ISO-8859-1:en
  LC_CTYPE=sv_SE.ISO8859-1
  LC_NUMERIC=sv_SE.ISO8859-1
  LC_TIME=sv_SE.ISO8859-1
  LC_COLLATE=sv_SE.ISO8859-1
  LC_MONETARY=sv_SE.ISO8859-1
  LC_MESSAGES=sv_SE.ISO8859-1
  LC_PAPER=sv_SE.ISO8859-1
  LC_NAME=sv_SE.ISO8859-1
  LC_ADDRESS=sv_SE.ISO8859-1
  LC_TELEPHONE=sv_SE.ISO8859-1
  LC_MEASUREMENT=sv_SE.ISO8859-1
  LC_IDENTIFICATION=sv_SE.ISO8859-1
  LC_ALL=sv_SE.ISO8859-1
  $ locale -a |fgrep sv
  sv_SE
  sv_SE.iso88591
  sv_SE.iso885915
  sv_SE.utf8

-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=sv, LC_CTYPE=sv (charmap=ISO-8859-1) (ignored: LC_ALL set to 
sv_SE.ISO8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages locales depends on:
ii  debconf [debconf-2.0]   1.5.24   Debian configuration management sy
ii  libc6 [glibc-2.7-1] 2.7-18lenny2 GNU C Library: Shared libraries

locales recommends no packages.

locales suggests no packages.

-- debconf information:
* locales/default_environment_locale: sv_SE
* locales/locales_to_be_generated: nb_NO ISO-8859-1, nb_NO.UTF-8 UTF-8, nn_NO 
ISO-8859-1, nn_NO.UTF-8 UTF-8, sv_SE ISO-8859-1, sv_SE.ISO-8859-15 ISO-8859-15, 
sv_SE.UTF-8 UTF-8



-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100309191018.30041.29985.report...@perkele.intern.softwolves.pp.se



Processing of tzdata_2010d-0lenny1_all.changes

2010-03-09 Thread Archive Administrator
tzdata_2010d-0lenny1_all.changes uploaded successfully to localhost
along with the files:
  tzdata_2010d-0lenny1.dsc
  tzdata_2010d-0lenny1.diff.gz
  tzdata_2010d-0lenny1_all.deb
  tzdata-java_2010d-0lenny1_all.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1np8rz-0007dz...@valente.debian.org



Processed: tagging 572715

2010-03-09 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # Automatically generated email from bts, devscripts version 2.10.35lenny7
 tags 572715 + pending
Bug #572715 {Done: Clint Adams sch...@debian.org} [tzdata] Chilean timezone 
extraordinary change
Added tag(s) pending.

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 debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.126817660425772.transcr...@bugs.debian.org



Processing of tzdata_2010e-1_all.changes

2010-03-09 Thread Archive Administrator
tzdata_2010e-1_all.changes uploaded successfully to localhost
along with the files:
  tzdata_2010e-1.dsc
  tzdata_2010e.orig.tar.gz
  tzdata_2010e-1.debian.tar.gz
  tzdata_2010e-1_all.deb
  tzdata-java_2010e-1_all.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1np8n2-00021g...@ries.debian.org



r4224 - tzdata/branches/glibc-branch-lenny/debian

2010-03-09 Thread Clint Adams
Author: schizo
Date: 2010-03-09 23:16:38 + (Tue, 09 Mar 2010)
New Revision: 4224

Modified:
   tzdata/branches/glibc-branch-lenny/debian/changelog
Log:
2010d-0lenny1

Modified: tzdata/branches/glibc-branch-lenny/debian/changelog
===
--- tzdata/branches/glibc-branch-lenny/debian/changelog 2010-03-09 17:30:33 UTC 
(rev 4223)
+++ tzdata/branches/glibc-branch-lenny/debian/changelog 2010-03-09 23:16:38 UTC 
(rev 4224)
@@ -1,3 +1,10 @@
+tzdata (2010d-0lenny1) stable; urgency=low
+
+  * New upstream release.
+- Adjusts Chile 2010 DST dates.  closes: #572715.
+
+ -- Clint Adams sch...@debian.org  Mon, 08 Mar 2010 16:55:09 -0500
+
 tzdata (2010a-0lenny1) stable; urgency=low
 
   * New upstream release.
@@ -40,7 +47,7 @@
 
 tzdata (2008h-1) unstable; urgency=high
 
-  * New upstream version. 
+  * New upstream version.
   * Remove argentina.diff to enable DST in Argentina for October 19th.
   * Urgency set to high, as the change will happen soon.
 
@@ -48,7 +55,7 @@
 
 tzdata (2008g-1) unstable; urgency=low
 
-  * New upstream version. 
+  * New upstream version.
 
  -- Aurelien Jarno aure...@debian.org  Mon, 06 Oct 2008 15:17:28 +0200
 
@@ -70,7 +77,7 @@
 
 tzdata (2008e-4) unstable; urgency=low
 
-  * Add a README.Debian file explaining the difference between the 
+  * Add a README.Debian file explaining the difference between the
 posix and the right versions of the timezone data.
   * Only build the posix version of the timezone data on emdebian.
   * Don't build solar87, solar88 and solar89 on emdebian as they are


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1np8fh-0004mf...@alioth.debian.org



tzdata_2010e-1_all.changes ACCEPTED

2010-03-09 Thread Archive Administrator



Accepted:
tzdata-java_2010e-1_all.deb
  to main/t/tzdata/tzdata-java_2010e-1_all.deb
tzdata_2010e-1.debian.tar.gz
  to main/t/tzdata/tzdata_2010e-1.debian.tar.gz
tzdata_2010e-1.dsc
  to main/t/tzdata/tzdata_2010e-1.dsc
tzdata_2010e-1_all.deb
  to main/t/tzdata/tzdata_2010e-1_all.deb
tzdata_2010e.orig.tar.gz
  to main/t/tzdata/tzdata_2010e.orig.tar.gz


Override entries for your package:
tzdata-java_2010e-1_all.deb - optional java
tzdata_2010e-1.dsc - source libs
tzdata_2010e-1_all.deb - required libs

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1np900-00049s...@ries.debian.org



tzdata_2010d-0lenny1_all.changes REJECTED

2010-03-09 Thread Debian Installer

Mapping stable to lenny-proposed.
Rejected: tzdata_2010d-0lenny1.dsc refers to tzdata_2010d.orig.tar.gz, but I 
can't find it in the queue or in the pool.


===

If you don't understand why your files were rejected, or if the
override file requires editing, reply to this email.


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1np8iy-00083e...@valente.debian.org



Processing of tzdata_2010d-0lenny1_all.changes

2010-03-09 Thread Archive Administrator
tzdata_2010d-0lenny1_all.changes uploaded successfully to localhost
along with the files:
  tzdata_2010d-0lenny1.dsc
  tzdata_2010d.orig.tar.gz
  tzdata_2010d-0lenny1.diff.gz
  tzdata_2010d-0lenny1_all.deb
  tzdata-java_2010d-0lenny1_all.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1np9o4-0001ss...@valente.debian.org



Bug#572715: marked as done (Chilean timezone extraordinary change)

2010-03-09 Thread Debian Bug Tracking System
Your message dated Wed, 10 Mar 2010 00:05:03 +
with message-id e1np9q7-0001ua...@valente.debian.org
and subject line Bug#572715: fixed in tzdata 2010d-0lenny1
has caused the Debian Bug report #572715,
regarding Chilean timezone extraordinary change
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
572715: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572715
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
package: tzdata
version: 2009u-0ubuntu0.9.10

Chile (CLT timezone) has been changed this year his winter time
because was affected by an earthquake, so goverment has changed and
delayed this. This change normally occurs on Saturday 13 March 2010 at
24:00 hours, but now it's on Saturday 03 April 2010 at 24:00 hours.
Thanks!


-- 
Victor Vargas B.
Latitud:  -33.439177,-70.625267
Santiago, Chile.


---End Message---
---BeginMessage---
Source: tzdata
Source-Version: 2010d-0lenny1

We believe that the bug you reported is fixed in the latest version of
tzdata, which is due to be installed in the volatile.debian.org FTP archive:

tzdata-java_2010d-0lenny1_all.deb
  to pool/volatile/main/t/tzdata/tzdata-java_2010d-0lenny1_all.deb
tzdata_2010d-0lenny1.diff.gz
  to pool/volatile/main/t/tzdata/tzdata_2010d-0lenny1.diff.gz
tzdata_2010d-0lenny1.dsc
  to pool/volatile/main/t/tzdata/tzdata_2010d-0lenny1.dsc
tzdata_2010d-0lenny1_all.deb
  to pool/volatile/main/t/tzdata/tzdata_2010d-0lenny1_all.deb
tzdata_2010d.orig.tar.gz
  to pool/volatile/main/t/tzdata/tzdata_2010d.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 572...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

volatile.debian.org distribution maintenance software
pp.
Clint Adams sch...@debian.org (supplier of updated tzdata package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@volatile.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 08 Mar 2010 16:55:09 -0500
Source: tzdata
Binary: tzdata tzdata-java
Architecture: source all
Version: 2010d-0lenny1
Distribution: stable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Clint Adams sch...@debian.org
Description: 
 tzdata - time zone and daylight-saving time data
 tzdata-java - time zone and daylight-saving time data for use by java runtimes
Closes: 572715
Changes: 
 tzdata (2010d-0lenny1) stable; urgency=low
 .
   * New upstream release.
 - Adjusts Chile 2010 DST dates.  closes: #572715.
Checksums-Sha1: 
 e15f9e1105a25834801e3b3e6f1c94f6c2fa7e82 1800 tzdata_2010d-0lenny1.dsc
 b64f3c9a2b489ed1656f992c79932f33808f70b1 187453 tzdata_2010d.orig.tar.gz
 4c295baddb18e1795b42670f20f65e31150f3dfb 217119 tzdata_2010d-0lenny1.diff.gz
 98c5b9c5d6405ee59f2caf5d753877cddd20972d 768692 tzdata_2010d-0lenny1_all.deb
 a1d2148692ef510437b280f728f4b76cc9bb4b7d 150934 
tzdata-java_2010d-0lenny1_all.deb
Checksums-Sha256: 
 01996a26e9558507e6a9ea83a8a5eaaa259b09072564d7bb293c696461f1fa0c 1800 
tzdata_2010d-0lenny1.dsc
 c18916b1e0d91dd7a0f8a26a570e40db06bdd0dc06cf8d66c06f78704d8b3b78 187453 
tzdata_2010d.orig.tar.gz
 780b27ad7f7a579aa14053f50603de87451f40217727531f290f8f89000d20d6 217119 
tzdata_2010d-0lenny1.diff.gz
 32df11c94da46d0eac259199708cdf3eae1d4eaf3b31507e2fded871251d4148 768692 
tzdata_2010d-0lenny1_all.deb
 53c68881c12bc46265aa2b3eacfd4330721feffdb1b139cb05f89a61d9c32e09 150934 
tzdata-java_2010d-0lenny1_all.deb
Files: 
 a77f5116d0851c6cec69b26c2a2afe10 1800 libs required tzdata_2010d-0lenny1.dsc
 fac7f902f22ddfafd512f1df04b36252 187453 libs required tzdata_2010d.orig.tar.gz
 a994f81fb0bfa09b0ce8b5dcd87b85c1 217119 libs required 
tzdata_2010d-0lenny1.diff.gz
 4c693bcce993bfab3ebf906f1b93631d 768692 libs required 
tzdata_2010d-0lenny1_all.deb
 926f44e898539a64f409bbfdeb7bb46c 150934 java optional 
tzdata-java_2010d-0lenny1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Debian!

iQIcBAEBCgAGBQJLluENAAoJEFWSMx4ZnTioWMQP+gLlRayH83vZtu1uL1KUiz0z
pAezGuZdanIoQTnJkUWMDiwrb66v2K1IalMNGtRpjxNGl60PswBZndjKDxEOZQcg
j3Yh6vDVOTfwbEeo0pgXXnMecfZU7jGJiv4xn6T5dqdX9HKEXxPlbHlxq6V2bCYa
SzQDtkvorraEefO3+FBEmzd/gMjdRVolvCgrEBrYrCw4uwdKRVHk9KTZjwiLVni9
MDpq7eTqserQTWZElRkhgTr+MUGJrYrhsBp2ZgaP6V9kVZ5BjzBZUqQYHUu8XkdP
fudrx3XfTZJrOtgmLP16nGvZ5ciuC4asmp5jFKivLUMgj12HYnCZCKcuzyjJ/vJn

tzdata override disparity

2010-03-09 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

tzdata-java_2010d-0lenny1_all.deb: package says section is java, override says 
volatile/main/libs.
tzdata_2010d-0lenny1_all.deb: package says section is libs, override says 
volatile/main/libs.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please reply to this mail and explain why.

[NB: this is an automatically generated mail; if you replied to one
like it before and have not received a response yet, please ignore
this mail.  Your reply needs to be processed by a human and will be in
due course, but until then the installer will send these automated
mails; sorry.]

--
volatile.debian.org distribution maintenance software

(This message was generated automatically; if you believe that there
is a problem with it please contact the archive administrators by
mailing ftpmas...@volatile.debian.org)


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1np9q7-0001uc...@valente.debian.org



tzdata_2010d-0lenny1_all.changes ACCEPTED

2010-03-09 Thread Debian Installer
Mapping stable to lenny-proposed.

Accepted:
tzdata-java_2010d-0lenny1_all.deb
  to pool/volatile/main/t/tzdata/tzdata-java_2010d-0lenny1_all.deb
tzdata_2010d-0lenny1.diff.gz
  to pool/volatile/main/t/tzdata/tzdata_2010d-0lenny1.diff.gz
tzdata_2010d-0lenny1.dsc
  to pool/volatile/main/t/tzdata/tzdata_2010d-0lenny1.dsc
tzdata_2010d-0lenny1_all.deb
  to pool/volatile/main/t/tzdata/tzdata_2010d-0lenny1_all.deb
tzdata_2010d.orig.tar.gz
  to pool/volatile/main/t/tzdata/tzdata_2010d.orig.tar.gz


Override entries for your package:
tzdata-java_2010d-0lenny1_all.deb - optional volatile/main/libs
tzdata_2010d-0lenny1.dsc - required volatile/main/libs
tzdata_2010d-0lenny1_all.deb - required volatile/main/libs

Announcing to _uplo...@packages.qa.debian.org
Closing bugs: 572715 


Thank you for your contribution to volatile.debian.org.


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1np9q7-0001u6...@valente.debian.org



Bug#573240: bad unicode space in postinst: [: 92: missing ]

2010-03-09 Thread Joey Hess
Package: libc6
Version: 2.10.2-6
Severity: normal

r...@gnu:/home/joey/var/lib/dpkg/info/libc6.postinst configure 2.09
Checking for services that may need to be restarted...
Checking init scripts...
atd is running.
[: 92: missing ]
Checking periodic command scheduler...failed (failed to start).
[: 92: missing ]
Status of Common Unix Printing System: cupsd is running.
[: 92: missing ]
postfix is running.
[: 92: missing ]
could not access PID file for rsync ... failed!
[: 92: missing ]
gdm is running.
[: 92: missing ]
Nothing to restart.

The bug is in the following line. The space after 1 is not a regular
space, but some other unicode space, which dash does not recognise as
whitespace.

if [ $status = 0 ] || [ $status = 1 ] ; then

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-trunk-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libc6 depends on:
ii  libc-bin  2.10.2-6   Embedded GNU C Library: Binaries
ii  libgcc1   1:4.4.2-9  GCC support library

Versions of packages libc6 recommends:
ii  libc6-i6862.10.2-6   GNU C Library: Shared libraries [i

Versions of packages libc6 suggests:
ii  debconf [debconf-2.0] 1.5.28 Debian configuration management sy
pn  glibc-doc none (no description available)
ii  locales   2.10.2-6   Embedded GNU C Library: National L

-- debconf information excluded

-- 
see shy jo



--
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100310014107.ga28...@gnu.kitenet.net



Bug#573247: service restart code seems busted; restart question displayed during d-i run

2010-03-09 Thread Joey Hess
Package: libc6
Version: 2.10.2-6
Severity: normal
Tags: d-i

Symptom A:

libc6 will often be upgraded in the latter half of a d-i installation,
when an old version is installed from CD or a mirror, and a newer
version is available on a mirror, or on security.debian.org. During this
upgrade, the glibc/restart-services question is displayed right in the
middle of the installer. You can see this right now if you install
testing using the d-i alpha from a netinst CD.

Of course, cron and at are not running, and in fact the installer
has a /usr/sbin/policy-rc.d in place that exits 101, which will
prevent anything from being started. So the prompt has no point, and
it is a confusing thing for users to see at that point.

Symptom B:

Stop cron. Now upgrade libc6 from a sufficiently old version,
and it will prompt and then restart cron.


Both problems seem to have the same root. The postinst checks if a service
should be restarted by using invoke-rc.d. For some reason, a exit code
of 1 is taken to mean that a service is running, resulting in the
unnecessary prompt.

invoke-rc.d ${service} status 2/dev/null || status=$?
if [ $status = 0 ] || [ $status = 1 ] ; then
services=$service $services
elif [ $status = 100 ] ; then
echo WARNING: init script for $service not found.
fi

I also have grave doubts about that || status=$?
It only sets $status if invoke-rc.d exits nonzero. Otherwise, $status will be
, or a value leftover from the previous service in the loop.

-- 
see shy jo



--
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100310021351.ga25...@gnu.kitenet.net



Bug#573214: locales: sv_SE.ISO8859-1 locale suddenly invalid(?)

2010-03-09 Thread Aurelien Jarno
Peter Krefting a écrit :
 Package: locales
 Version: 2.7-18lenny2
 Severity: normal
 
 This configuration has worked for me for a long time:
 
   $ echo $LC_ALL 
   sv_SE.ISO8859-1
   $ echo $LANG
   sv
   $ echo $LANGUAGE 
   
 sv_SE.ISO-8859-1:sv:nb_NO.ISO-8859-1:nb:da_DK.ISO-8859-1:da:nn_NO.ISO-8859-1:nn:en_GB.ISO-8859-1:en_US.ISO-8859-1:en
 
 But suddenly (probably after a recent security update) it has started
 producing error messages:
 
   locale: Cannot set LC_CTYPE to default locale: No such file or directory
   locale: Cannot set LC_MESSAGES to default locale: No such file or directory
   locale: Cannot set LC_COLLATE to default locale: No such file or directory
 
 That doesn't seem right. I still get Swedish sort order, Swedish messages
 from software and Swedish manual pages where available, so something strange
 is going on.

The settings are correct, but it looks like the locales generation has
failed last time the package has been installed. Could you try to run
dpkg-reconfigure locales, and send the possible error messages that
happens during locales generation?

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b9749c0.4020...@aurel32.net



Processed: forcibly merging 569701 573240

2010-03-09 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 569701 573240
Bug#569701: libc6: non-breaking space in libc6's postinst
Bug#573240: bad unicode space in postinst: [: 92: missing ]
Forcibly Merged 569701 573240.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.126820607715214.transcr...@bugs.debian.org