libc6: RES_ROTATE resolver option broken (bug 593571)

2011-10-24 Thread Nicolas DEFFAYET
Hello,

I don't know if you plan to release new packages of libc6 for the next
stable update (i don't see any libc6 packages in
http://ftp.debian.org/debian/dists/stable-proposed-updates/).

If you release new packages of libc6 for next stable update 6.0.4 (or
6.0.5), can you please add the patch
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=10;filename=fix-rotate.patch;att=1;bug=593571
 for fix the bug 593571 (thanks to Jan Boysen).

This patch is very simple and it add only one missing character:
-   statp-nsaddr_list[n],
+   statp-nsaddr_list[ns],


Bug 593571 is a very annoying because the rotate option in resolv.conf
can't be used on servers running Debian stable. rotate option main goal
is to provide load balancing between name-servers and allow a faster
resolution in case of outage on a name server.


Many thanks

Best Regards,

-- 
Nicolas DEFFAYET


-- 
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/1319478537.1502.9.ca...@fr-wks3.corp.novso.com



Bug#646549: libc6: Invalid instruction in _dl_x86_64_save_sse on processor that supports AVX

2011-10-24 Thread Anton Tolchanov
Package: libc6
Version: 2.11.2-10
Severity: important
Tags: squeeze patch

I've got a server with Intel Xeon E31270 CPU that runs Squeeze and I
constantly get Chef (a configuration management toolkit written in Ruby)
killed by SIGILL:

  Program received signal SIGILL, Illegal instruction.
  _dl_x86_64_save_sse () at ../sysdeps/x86_64/dl-trampoline.S:189

The attached patch (backported from glibc trunk) seems to fix the issue.

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

Kernel: Linux 2.6.32-5-xen-amd64 (SMP w/8 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.11.2-10  Embedded GNU C Library: Binaries
ii  libgcc1   1:4.4.5-8  GCC support library

libc6 recommends no packages.

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

-- debconf-show failed
diff -ur eglibc-2.11.2//sysdeps/x86_64/dl-trampoline.S eglibc-2.11.2.changed//sysdeps/x86_64/dl-trampoline.S
--- eglibc-2.11.2//sysdeps/x86_64/dl-trampoline.S	2009-08-26 05:17:41.0 +0300
+++ eglibc-2.11.2.changed//sysdeps/x86_64/dl-trampoline.S	2011-10-25 01:10:36.153062354 +0300
@@ -139,16 +139,26 @@
 	movl	$1, %eax
 	cpuid
 	movq	%r11,%rbx		# Restore rbx
-	movl	$1, %eax
-	testl	$(1  28), %ecx
+	xorl	%eax, %eax
+	// AVX and XSAVE supported?
+	andl	$((1  28) | (1  27)), %ecx
+	cmpl	$((1  28) | (1  27)), %ecx
 	jne	2f
-	negl	%eax
-2:	movl	%eax, L(have_avx)(%rip)
+	xorl	%ecx, %ecx
+	// Get XFEATURE_ENABLED_MASK
+	xgetbv
+	andl	$0x6, %eax
+	cmpl	$0x6, %eax
+	// Nonzero if SSE and AVX state saving is enabled.
+	sete	%al
+2:	leal	-1(%eax,%eax), %eax
+	movl	%eax, L(have_avx)(%rip)
 	cmpl	$0, %eax
 
 1:	js	L(no_avx)
 
 #  define RESTORE_AVX
+#  define MORE_CODE
 #  include dl-trampoline.h
 
 	.align 16
@@ -176,11 +186,20 @@
 	movl	$1, %eax
 	cpuid
 	movq	%r11,%rbx		# Restore rbx
-	movl	$1, %eax
-	testl	$(1  28), %ecx
+	xorl	%eax, %eax
+	// AVX and XSAVE supported?
+	andl	$((1  28) | (1  27)), %ecx
+	cmpl	$((1  28) | (1  27)), %ecx
 	jne	2f
-	negl	%eax
-2:	movl	%eax, L(have_avx)(%rip)
+	xorl	%ecx, %ecx
+	// Get XFEATURE_ENABLED_MASK
+	xgetbv
+	andl	$0x6, %eax
+	cmpl	$0x6, %eax
+	// Nonzero if SSE and AVX state saving is enabled.
+	sete	%al
+2:	leal	-1(%eax,%eax), %eax
+	movl	%eax, L(have_avx)(%rip)
 	cmpl	$0, %eax
 
 1:	js	L(no_avx5)
diff -ur eglibc-2.11.2//sysdeps/x86_64/dl-trampoline.h eglibc-2.11.2.changed//sysdeps/x86_64/dl-trampoline.h
--- eglibc-2.11.2//sysdeps/x86_64/dl-trampoline.h	2009-08-09 17:33:15.0 +0300
+++ eglibc-2.11.2.changed//sysdeps/x86_64/dl-trampoline.h	2011-10-25 01:15:09.501060129 +0300
@@ -267,3 +267,10 @@
 # (eats the reloc index and link_map)
 	cfi_adjust_cfa_offset(-48)
 	retq
+
+#ifdef MORE_CODE
+	cfi_adjust_cfa_offset(48)
+	cfi_rel_offset(%rbx, 0)
+	cfi_def_cfa_register(%rbx)
+# undef MORE_CODE
+#endif


Processed: tagging 645783

2011-10-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 645783 + pending
Bug #645783 [tzdata] tzdata: Ukraine is using DST again...
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
645783: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=645783
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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.131951272829780.transcr...@bugs.debian.org



Processed: tagging 645783

2011-10-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 645783 + pending
Bug #645783 [tzdata] tzdata: Ukraine is using DST again...
Ignoring request to alter tags of bug #645783 to the same tags previously set
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
645783: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=645783
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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.131951312431313.transcr...@bugs.debian.org



r5005 - in tzdata/trunk/debian: . patches

2011-10-24 Thread Aurelien Jarno
Author: aurel32
Date: 2011-10-25 03:18:38 + (Tue, 25 Oct 2011)
New Revision: 5005

Removed:
   tzdata/trunk/debian/patches/bahia.diff
Modified:
   tzdata/trunk/debian/changelog
   tzdata/trunk/debian/patches/series
Log:
  * New upstream version, fix DST for:
- Pridnestrovian Moldavian Republic.
- Ukraine (Closes: #645783).
- Bahia, Brazil. Drop debian/patches/bahia.diff.
  * Set urgency to critical as the above changes will be effective on the
night from Saturday to Sunday.



Modified: tzdata/trunk/debian/changelog
===
--- tzdata/trunk/debian/changelog   2011-10-22 19:34:09 UTC (rev 5004)
+++ tzdata/trunk/debian/changelog   2011-10-25 03:18:38 UTC (rev 5005)
@@ -1,3 +1,14 @@
+tzdata (2011m-1) unstable; urgency=critical
+
+  * New upstream version, fix DST for:
+- Pridnestrovian Moldavian Republic.
+- Ukraine (Closes: #645783).
+- Bahia, Brazil. Drop debian/patches/bahia.diff.
+  * Set urgency to critical as the above changes will be effective on the
+night from Saturday to Sunday.
+
+ -- Aurelien Jarno aure...@debian.org  Tue, 25 Oct 2011 05:08:18 +0200
+
 tzdata (2011l-2) unstable; urgency=high
 
   * Upstream is now ICANN, update debian/watch and debian/copyright.

Deleted: tzdata/trunk/debian/patches/bahia.diff
===
--- tzdata/trunk/debian/patches/bahia.diff  2011-10-22 19:34:09 UTC (rev 
5004)
+++ tzdata/trunk/debian/patches/bahia.diff  2011-10-25 03:18:38 UTC (rev 
5005)
@@ -1,15 +0,0 @@
 tzdata-2011l/southamerica  2011-10-10 01:15:43.0 -0300
-+++ tzdata-2011l.patched/southamerica  2011-10-17 10:39:59.458720506 -0300
-@@ -1054,10 +1054,8 @@
- # of America/Salvador.
- Zone America/Bahia-2:34:04 -  LMT 1914
-   -3:00   Brazil  BR%sT   2003 Sep 24
--  -3:00   -   BRT
--# as noted above, not yet in operation.
--# -3:00   -   BRT 2011 Oct 16
--# -3:00   Brazil  BR%sT
-+  -3:00   -   BRT 2011 Oct 16
-+  -3:00   Brazil  BR%sT
- #
- # Goias (GO), Distrito Federal (DF), Minas Gerais (MG),
- # Espirito Santo (ES), Rio de Janeiro (RJ), Sao Paulo (SP), Parana (PR),

Modified: tzdata/trunk/debian/patches/series
===
--- tzdata/trunk/debian/patches/series  2011-10-22 19:34:09 UTC (rev 5004)
+++ tzdata/trunk/debian/patches/series  2011-10-25 03:18:38 UTC (rev 5005)
@@ -1,3 +1,2 @@
 systemv.diff -p1
 java.diff -p1
-bahia.diff -p1


-- 
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/e1rixxc-0007l5...@vasks.debian.org



Processed: tagging 645783

2011-10-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 645783 + pending
Bug #645783 [tzdata] tzdata: Ukraine is using DST again...
Ignoring request to alter tags of bug #645783 to the same tags previously set
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
645783: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=645783
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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.1319513560776.transcr...@bugs.debian.org



Processing of tzdata_2011m-1_amd64.changes

2011-10-24 Thread Debian FTP Masters
tzdata_2011m-1_amd64.changes uploaded successfully to localhost
along with the files:
  tzdata_2011m-1.dsc
  tzdata_2011m.orig.tar.gz
  tzdata_2011m-1.debian.tar.xz
  tzdata_2011m-1_all.deb
  tzdata-java_2011m-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.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/e1rixad-0003it...@franck.debian.org




tzdata 2011m uploaded to lenny-volatile and squeeze

2011-10-24 Thread Aurelien Jarno
Hi (old)stable release team,

I have just uploaded tzdata 2011m to both lenny-volatile and squeeze. It
includes the following changes:

   * New upstream version, fix DST for:
 - Pridnestrovian Moldavian Republic.
 - Ukraine (Closes: #645783).
 - Bahia, Brazil. Drop debian/patches/bahia.diff.

The two first changes will happen on the night from Saturday to Sunday.

As for the previous upload, I don't think it is worth uploading a new 
version to lenny, it is likely that we'll have to do other uploads
before the next point release. We'll do the upload to lenny a few days 
before the next point release.

Regards,
Aurelien

-- 
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/20111025033947.gb19...@hall.aurel32.net



r5007 - in tzdata/branches/glibc-branch-squeeze/debian: . patches

2011-10-24 Thread Aurelien Jarno
Author: aurel32
Date: 2011-10-25 03:25:16 + (Tue, 25 Oct 2011)
New Revision: 5007

Removed:
   tzdata/branches/glibc-branch-squeeze/debian/patches/bahia.diff
Modified:
   tzdata/branches/glibc-branch-squeeze/debian/changelog
   tzdata/branches/glibc-branch-squeeze/debian/patches/series
Log:
  * New upstream version, fix DST for:
- Pridnestrovian Moldavian Republic.
- Ukraine (Closes: #645783).
- Bahia, Brazil. Drop debian/patches/bahia.diff.



Modified: tzdata/branches/glibc-branch-squeeze/debian/changelog
===
--- tzdata/branches/glibc-branch-squeeze/debian/changelog   2011-10-25 
03:19:12 UTC (rev 5006)
+++ tzdata/branches/glibc-branch-squeeze/debian/changelog   2011-10-25 
03:25:16 UTC (rev 5007)
@@ -1,3 +1,12 @@
+tzdata (2011m-0squeeze1) stable; urgency=low
+
+  * New upstream version, fix DST for:
+- Pridnestrovian Moldavian Republic.
+- Ukraine (Closes: #645783).
+- Bahia, Brazil. Drop debian/patches/bahia.diff.
+
+ -- Aurelien Jarno aure...@debian.org  Tue, 25 Oct 2011 05:21:19 +0200
+
 tzdata (2011l-0squeeze1) stable; urgency=low
 
   * New upstream release.

Deleted: tzdata/branches/glibc-branch-squeeze/debian/patches/bahia.diff
===
--- tzdata/branches/glibc-branch-squeeze/debian/patches/bahia.diff  
2011-10-25 03:19:12 UTC (rev 5006)
+++ tzdata/branches/glibc-branch-squeeze/debian/patches/bahia.diff  
2011-10-25 03:25:16 UTC (rev 5007)
@@ -1,15 +0,0 @@
 tzdata-2011l/southamerica  2011-10-10 01:15:43.0 -0300
-+++ tzdata-2011l.patched/southamerica  2011-10-17 10:39:59.458720506 -0300
-@@ -1054,10 +1054,8 @@
- # of America/Salvador.
- Zone America/Bahia-2:34:04 -  LMT 1914
-   -3:00   Brazil  BR%sT   2003 Sep 24
--  -3:00   -   BRT
--# as noted above, not yet in operation.
--# -3:00   -   BRT 2011 Oct 16
--# -3:00   Brazil  BR%sT
-+  -3:00   -   BRT 2011 Oct 16
-+  -3:00   Brazil  BR%sT
- #
- # Goias (GO), Distrito Federal (DF), Minas Gerais (MG),
- # Espirito Santo (ES), Rio de Janeiro (RJ), Sao Paulo (SP), Parana (PR),

Modified: tzdata/branches/glibc-branch-squeeze/debian/patches/series
===
--- tzdata/branches/glibc-branch-squeeze/debian/patches/series  2011-10-25 
03:19:12 UTC (rev 5006)
+++ tzdata/branches/glibc-branch-squeeze/debian/patches/series  2011-10-25 
03:25:16 UTC (rev 5007)
@@ -1,3 +1,2 @@
 systemv.diff -p1
 java.diff -p1
-bahia.diff -p1


-- 
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/e1rixdd-00086o...@vasks.debian.org



Processing of tzdata_2011m-0squeeze1_amd64.changes

2011-10-24 Thread Debian FTP Masters
/tzdata_2011m-0squeeze1_amd64.changes is already present on target host:
tzdata_2011m.orig.tar.gz
Either you already uploaded it, or someone else came first.
Job tzdata_2011m-0squeeze1_amd64.changes removed.

Greetings,

Your Debian queue daemon (running on host franck.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/e1rixfv-0003zx...@franck.debian.org



r5008 - in tzdata/branches/glibc-branch-lenny/debian: . patches

2011-10-24 Thread Aurelien Jarno
Author: aurel32
Date: 2011-10-25 03:32:33 + (Tue, 25 Oct 2011)
New Revision: 5008

Removed:
   tzdata/branches/glibc-branch-lenny/debian/patches/bahia.diff
Modified:
   tzdata/branches/glibc-branch-lenny/debian/changelog
   tzdata/branches/glibc-branch-lenny/debian/patches/series
Log:
  * New upstream version, fix DST for:
- Pridnestrovian Moldavian Republic.
- Ukraine (Closes: #645783).
- Bahia, Brazil. Drop debian/patches/bahia.diff.



Modified: tzdata/branches/glibc-branch-lenny/debian/changelog
===
--- tzdata/branches/glibc-branch-lenny/debian/changelog 2011-10-25 03:25:16 UTC 
(rev 5007)
+++ tzdata/branches/glibc-branch-lenny/debian/changelog 2011-10-25 03:32:33 UTC 
(rev 5008)
@@ -1,3 +1,12 @@
+tzdata (2011m-0lenny1) oldstable; urgency=low
+
+  * New upstream version, fix DST for:
+- Pridnestrovian Moldavian Republic.
+- Ukraine (Closes: #645783).
+- Bahia, Brazil. Drop debian/patches/bahia.diff.
+
+ -- Aurelien Jarno aure...@debian.org  Tue, 25 Oct 2011 05:25:43 +0200
+
 tzdata (2011l-0lenny1) oldstable; urgency=low
 
   * New upstream release.

Deleted: tzdata/branches/glibc-branch-lenny/debian/patches/bahia.diff
===
--- tzdata/branches/glibc-branch-lenny/debian/patches/bahia.diff
2011-10-25 03:25:16 UTC (rev 5007)
+++ tzdata/branches/glibc-branch-lenny/debian/patches/bahia.diff
2011-10-25 03:32:33 UTC (rev 5008)
@@ -1,15 +0,0 @@
 tzdata-2011l/southamerica  2011-10-10 01:15:43.0 -0300
-+++ tzdata-2011l.patched/southamerica  2011-10-17 10:39:59.458720506 -0300
-@@ -1054,10 +1054,8 @@
- # of America/Salvador.
- Zone America/Bahia-2:34:04 -  LMT 1914
-   -3:00   Brazil  BR%sT   2003 Sep 24
--  -3:00   -   BRT
--# as noted above, not yet in operation.
--# -3:00   -   BRT 2011 Oct 16
--# -3:00   Brazil  BR%sT
-+  -3:00   -   BRT 2011 Oct 16
-+  -3:00   Brazil  BR%sT
- #
- # Goias (GO), Distrito Federal (DF), Minas Gerais (MG),
- # Espirito Santo (ES), Rio de Janeiro (RJ), Sao Paulo (SP), Parana (PR),

Modified: tzdata/branches/glibc-branch-lenny/debian/patches/series
===
--- tzdata/branches/glibc-branch-lenny/debian/patches/series2011-10-25 
03:25:16 UTC (rev 5007)
+++ tzdata/branches/glibc-branch-lenny/debian/patches/series2011-10-25 
03:32:33 UTC (rev 5008)
@@ -1,3 +1,2 @@
 systemv.diff -p1
 java.diff -p1
-bahia.diff -p1


-- 
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/e1rixkf-6l...@vasks.debian.org



tzdata_2011m-1_amd64.changes ACCEPTED into unstable

2011-10-24 Thread Debian FTP Masters



Accepted:
tzdata-java_2011m-1_all.deb
  to main/t/tzdata/tzdata-java_2011m-1_all.deb
tzdata_2011m-1.debian.tar.xz
  to main/t/tzdata/tzdata_2011m-1.debian.tar.xz
tzdata_2011m-1.dsc
  to main/t/tzdata/tzdata_2011m-1.dsc
tzdata_2011m-1_all.deb
  to main/t/tzdata/tzdata_2011m-1_all.deb
tzdata_2011m.orig.tar.gz
  to main/t/tzdata/tzdata_2011m.orig.tar.gz


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

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 645783 


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/e1rixko-0005hl...@franck.debian.org



Processing of tzdata_2011m-0lenny1_amd64.changes

2011-10-24 Thread Archive Administrator
tzdata_2011m-0lenny1_amd64.changes uploaded successfully to localhost
along with the files:
  tzdata_2011m-0lenny1.dsc
  tzdata_2011m.orig.tar.gz
  tzdata_2011m-0lenny1.diff.gz
  tzdata_2011m-0lenny1_all.deb
  tzdata-java_2011m-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/e1rixnj-0006pg...@valente.debian.org



Bug#645783: marked as done (tzdata: Ukraine is using DST again...)

2011-10-24 Thread Debian Bug Tracking System
Your message dated Tue, 25 Oct 2011 03:50:03 +
with message-id e1riy1b-0006v7...@valente.debian.org
and subject line Bug#645783: fixed in tzdata 2011m-0lenny1
has caused the Debian Bug report #645783,
regarding tzdata: Ukraine is using DST again...
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.)


-- 
645783: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=645783
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: tzdata
Version: 2011l-1
Severity: normal

According to today's decision, Ukraine will use DST again. Basically this
means that recent changes related to #642232 needs to be reverted

Official document:
http://w1.c1.rada.gov.ua/pls/zweb_n/webproc4_1?id=pf3511=41484

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.6+ (SMP w/2 CPU cores; PREEMPT)
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 tzdata depends on:
ii  debconf [debconf-2.0]  1.5.41

tzdata recommends no packages.

tzdata suggests no packages.

-- debconf information:
  tzdata/Zones/Australia:
  tzdata/Zones/Asia:
  tzdata/Zones/SystemV:
  tzdata/Zones/Pacific:
  tzdata/Zones/Atlantic:
  tzdata/Zones/US:
* tzdata/Zones/Etc: UTC
  tzdata/Zones/Arctic:
  tzdata/Zones/Antarctica:
* tzdata/Zones/Europe: Kiev
  tzdata/Zones/Africa:
  tzdata/Zones/America:
* tzdata/Areas: Europe
  tzdata/Zones/Indian:

-- 
WBR, Dmitry


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: tzdata
Source-Version: 2011m-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_2011m-0lenny1_all.deb
  to pool/volatile/main/t/tzdata/tzdata-java_2011m-0lenny1_all.deb
tzdata_2011m-0lenny1.diff.gz
  to pool/volatile/main/t/tzdata/tzdata_2011m-0lenny1.diff.gz
tzdata_2011m-0lenny1.dsc
  to pool/volatile/main/t/tzdata/tzdata_2011m-0lenny1.dsc
tzdata_2011m-0lenny1_all.deb
  to pool/volatile/main/t/tzdata/tzdata_2011m-0lenny1_all.deb
tzdata_2011m.orig.tar.gz
  to pool/volatile/main/t/tzdata/tzdata_2011m.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 645...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

volatile.debian.org distribution maintenance software
pp.
Aurelien Jarno aure...@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: SHA1

Format: 1.8
Date: Tue, 25 Oct 2011 05:25:43 +0200
Source: tzdata
Binary: tzdata tzdata-java
Architecture: source all
Version: 2011m-0lenny1
Distribution: lenny-volatile
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno aure...@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: 645783
Changes: 
 tzdata (2011m-0lenny1) lenny-volatile; urgency=low
 .
   * New upstream version, fix DST for:
 - Pridnestrovian Moldavian Republic.
 - Ukraine (Closes: #645783).
 - Bahia, Brazil. Drop debian/patches/bahia.diff.
Checksums-Sha1: 
 5ef6dae93a6d27b8f57340d5fb8efc2d32ccfc95 1134 tzdata_2011m-0lenny1.dsc
 e6374cd41c5bffd7ade27c365c4bdc5213bb9d85 204214 tzdata_2011m.orig.tar.gz
 6d669cbe8421ba058bf4ff0d5e488da3ec75eb1e 235199 tzdata_2011m-0lenny1.diff.gz
 706ebdfcf619912247ae1c2c6ac03a38e6f4b718 729398 tzdata_2011m-0lenny1_all.deb
 77ac8f3d44568bc5a0317636a54dab107a56a12b 147024 
tzdata-java_2011m-0lenny1_all.deb
Checksums-Sha256: 
 6cb99067fba9f4cbb1f6ef6d7a12db07e7f6e17392b73bfb8d2cdea9ce820a90 1134 
tzdata_2011m-0lenny1.dsc
 c8e01f5b4a3cd8b8aee84b4befb4b671cef34353e5af022ed22071f5b86ef5f4 204214 
tzdata_2011m.orig.tar.gz
 fb9b2f9ababfa1c830b8785274ac86b83a974a0bdbe99f78411f0874ea91196a 235199 
tzdata_2011m-0lenny1.diff.gz
 cffbff801ad2e1d9af52be089d708176f185b041d67420afc2694f80ce8d7880 729398 
tzdata_2011m-0lenny1_all.deb
 2f7e145a4bb78dfb7bb4485731773966d8038c827a086abe7a9ea714c78e9f78 147024 
tzdata-java_2011m-0lenny1_all.deb
Files: 
 fdf162a899e3c00fd37eb511f067bc29 1134 libs required 

tzdata_2011m-0lenny1_amd64.changes ACCEPTED

2011-10-24 Thread Debian Installer
Mapping lenny-volatile to lenny-proposed.

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


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

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


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/e1riy1b-0006v3...@valente.debian.org



tzdata override disparity

2011-10-24 Thread Debian Installer
There are disparities between your recently accepted upload and the
override file for the following file(s):

tzdata-java_2011m-0lenny1_all.deb: package says section is java, override says 
volatile/main/libs.
tzdata_2011m-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/e1riy1b-0006v9...@valente.debian.org



Bug#644023: FTBFS on kfreebsd-i386

2011-10-24 Thread Aurelien Jarno
On Mon, Oct 03, 2011 at 03:59:50AM -0500, Jonathan Nieder wrote:
 Petr Salinger wrote:
 
  It effectively test return code of
 
 fprintf (fp, %2147483648d%2147483648d, 1, 1);
 
  The printf family returns int and should return number of written bytes.
  It therefore cannot exceed MAX_INT.
 
  But the test tries to print twice entry with width MAX_INT+1.
  I would understand the test with i.e. 2147483640
  or six time 512 MB.
 
 Yeah, your suggested test would be a more precise test for the
 original bug[1].
 
 C99 (N1256 ยง7.19.6.1.4) only tells us that the field width is a
 nonnegative decimal integer.  It would be nice to clarify with the C
 working group whether a field width that doesn't fit into an int
 triggers undefined behavior or if the implementation is obligated to
 catch it.
 
  On kfreebsd-amd64, it tries to
  mmap(0,0x80001000,PROT_READ|PROT_WRITE,MAP_ANON|MAP_TYPE|MAP_PRIVATE,0x,0)
  and fails.
 
 Sounds buggy.  In fact, there are at least a couple of seemingly buggy
 aspects here.
 
  - read_int does not check for overflow
  - read_int returns unsigned int, but prec and width are ints
  - the for (; (size_t) nspecs_done  nspecs; ++nspecs_done) loop
does not check for overflow when deciding the initial work buffer
size
  - the private __parse_one_spec API (and public parse_printf_format
API) does not seem to include a way to indicate overflow
 
 Anyway, how about this patch?  It implements your 6 times 512 MiB idea
 (well, 3 times 1 GiB because I'm lazy) and adds a new test for the
 related bug Robert found (which gets masked on Linux by malloc() not
 bothering to try to fulfill such huge requests --- maybe it would be
 possible to tweak it so it can fail on Linux, too).

Have you sent this patch upstream or do you plan do to do it?

-- 
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/20111025055223.ga13...@hall.aurel32.net