r5071 - in glibc-package/trunk/debian: . patches patches/arm

2011-12-11 Thread Aurelien Jarno
Author: aurel32
Date: 2011-12-11 12:23:18 + (Sun, 11 Dec 2011)
New Revision: 5071

Added:
   glibc-package/trunk/debian/patches/arm/cvs-syscall-mcount.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
  * patches/arm/cvs-syscall-mcount.diff: new patch from upstream to fix
build on armel.



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2011-12-10 22:36:37 UTC (rev 
5070)
+++ glibc-package/trunk/debian/changelog2011-12-11 12:23:18 UTC (rev 
5071)
@@ -1,6 +1,7 @@
 eglibc (2.13-23) UNRELEASED; urgency=low
 
-  * 
+  * patches/arm/cvs-syscall-mcount.diff: new patch from upstream to fix
+build on armel.
 
  -- Aurelien Jarno aure...@debian.org  Sat, 10 Dec 2011 23:36:21 +0100
 

Added: glibc-package/trunk/debian/patches/arm/cvs-syscall-mcount.diff
===
--- glibc-package/trunk/debian/patches/arm/cvs-syscall-mcount.diff  
(rev 0)
+++ glibc-package/trunk/debian/patches/arm/cvs-syscall-mcount.diff  
2011-12-11 12:23:18 UTC (rev 5071)
@@ -0,0 +1,17 @@
+2011-04-26  Manjunath Matti  manjunat...@gmail.com
+
+   * ports/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S
+   (CALL_MCOUNT): Redefine to empty.
+
+--- a/ports/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S
 b/ports/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S
+@@ -29,6 +29,9 @@
+   .syntax unified
+   .hidden __libc_do_syscall
+ 
++#undef CALL_MCOUNT
++#define CALL_MCOUNT
++
+ ENTRY (__libc_do_syscall)
+   .fnstart
+   push{r7, lr}

Modified: glibc-package/trunk/debian/patches/series
===
--- glibc-package/trunk/debian/patches/series   2011-12-10 22:36:37 UTC (rev 
5070)
+++ glibc-package/trunk/debian/patches/series   2011-12-11 12:23:18 UTC (rev 
5071)
@@ -87,6 +87,7 @@
 arm/cvs-clone-cantunwind.diff
 arm/unsubmitted-ldconfig-cache-abi.diff
 arm/unsubmitted-ldso-abi-check.diff
+arm/cvs-syscall-mcount.diff
 
 hppa/local-inlining.diff
 hppa/local-linuxthreads.diff


-- 
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/e1rzir5-iq...@vasks.debian.org



Bug#634261: Analysis

2011-12-11 Thread Jurij Smakov
I'm not sure how _IO_stdin_used comes into play here, but the failure 
with this test case is actually happens because stdout itself is not 
8-bytes aligned, as it should be. It looks like for the 
normally-linked binary stdout is just set to the address of 
_IO_2_1_stdout_, as one would expect from looking at libio/stdio.c in 
libc source code, which contains:

_IO_FILE *stdin = (FILE *) _IO_2_1_stdin_;
_IO_FILE *stdout = (FILE *) _IO_2_1_stdout_;
_IO_FILE *stderr = (FILE *) _IO_2_1_stderr_;

Demo:

jurij@debian:~/libc/eglibc-2.13/tmp$ cat foo.c
#include stdio.h
#include stdlib.h

int main() {
  printf(stdout=%p _IO_2_1_stdout_=%p\n, stdout, _IO_2_1_stdout_);
  setbuf(stdout, 0);
  return 0;
}
jurij@debian:~/libc/eglibc-2.13/tmp$ gcc -o foo foo.c
jurij@debian:~/libc/eglibc-2.13/tmp$ ./foo
stdout=0x207e0 _IO_2_1_stdout_=0x207e0

However, when using the version script, stdout is altered to point to 
a unaligned location:

jurij@debian:~/libc/eglibc-2.13/tmp$ gcc -o foo foo.c -Wl,--version-script,ver
jurij@debian:~/libc/eglibc-2.13/tmp$ ./foo 
stdout=0xf7d97114 _IO_2_1_stdout_=0x207c0
Bus error

The value is modified by the dynamic linker somewhere between the 
_init and _start:

urij@debian:~/libc/eglibc-2.13/tmp$ gdb foo
GNU gdb (GDB) 7.3-debian
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show 
copying
and show warranty for details.
This GDB was configured as sparc-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /home/jurij/libc/eglibc-2.13/tmp/foo...(no 
debugging symbols found)...done.
(gdb) break _init
Breakpoint 1 at 0x1032c
(gdb) break _start
Breakpoint 2 at 0x10380
(gdb) run
Starting program: /home/jurij/libc/eglibc-2.13/tmp/foo 

Breakpoint 1, _init (argc=-134233040, argv=0x1, envp=0xd814) at 
../sysdeps/unix/sysv/linux/init-first.c:52
52  {
(gdb) print stdout
$1 = (struct _IO_FILE *) 0x207c0
(gdb) print _IO_2_1_stdout_
$2 = (struct _IO_FILE_plus *) 0xf7fc2d40
(gdb) c
Continuing.

Breakpoint 2, 0x00010380 in _start ()
(gdb) print stdout
$3 = (struct _IO_FILE *) 0xf7fc3114
(gdb) print _IO_2_1_stdout_
$4 = (struct _IO_FILE_plus *) 0xf7fc2d40
(gdb) 

On amd64 stdout is set to the address of _IO_2_1_stdout_ even with the 
version script:

jurij@paddy:~/tmp$ gcc -o foo foo.c -Wl,--version-script,ver
jurij@paddy:~/tmp$ ./foo
stdout=0x600a40 _IO_2_1_stdout_=0x600a40

Best regards
-- 
Jurij Smakov   ju...@wooyd.org
Key: http://www.wooyd.org/pgpkey/  KeyID: C99E03CC



-- 
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/20111211123902.ga7...@wooyd.org



Processed: tagging 651632

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

 tags 651632 + pending
Bug #651632 [tzdata] [INTL:es] Spanish debconf template translation for tzdata
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
651632: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651632
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.132360964625398.transcr...@bugs.debian.org



Processed: tagging 651618

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

 tags 651618 + pending
Bug #651618 [tzdata] tzdata: [INTL:pt] Updated Portuguese translation for 
debconf messages
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
651618: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651618
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.132360964625400.transcr...@bugs.debian.org



r5072 - in tzdata/trunk/debian: . po

2011-12-11 Thread Christian Perrier
Author: bubulle
Date: 2011-12-11 13:20:22 + (Sun, 11 Dec 2011)
New Revision: 5072

Modified:
   tzdata/trunk/debian/changelog
   tzdata/trunk/debian/po/es.po
   tzdata/trunk/debian/po/pt.po
Log:
* Portuguese (Miguel Figueiredo).  Closes: #651618
* Spanish; (Francisco Javier Cuadrado).  Closes: #651632

Modified: tzdata/trunk/debian/changelog
===
--- tzdata/trunk/debian/changelog   2011-12-11 12:23:18 UTC (rev 5071)
+++ tzdata/trunk/debian/changelog   2011-12-11 13:20:22 UTC (rev 5072)
@@ -13,6 +13,8 @@
   * Thai (Theppitak Karoonboonyanan).  Closes: #651360
   * Gujarati (Kartik Mistry).  Closes: #651366
   * Japanese (Kenshi Muto).  Closes: #651371
+  * Portuguese (Miguel Figueiredo).  Closes: #651618
+  * Spanish; (Francisco Javier Cuadrado).  Closes: #651632
 
  -- Christian Perrier bubu...@debian.org  Thu, 01 Dec 2011 21:48:46 +0100
 

Modified: tzdata/trunk/debian/po/es.po
===
--- tzdata/trunk/debian/po/es.po2011-12-11 12:23:18 UTC (rev 5071)
+++ tzdata/trunk/debian/po/es.po2011-12-11 13:20:22 UTC (rev 5072)
@@ -38,10 +38,10 @@
 #
 msgid 
 msgstr 
-Project-Id-Version: tzdata 2011i-3\n
+Project-Id-Version: tzdata 2011n-2\n
 Report-Msgid-Bugs-To: tzd...@packages.debian.org\n
 POT-Creation-Date: 2011-10-31 23:24+0100\n
-PO-Revision-Date: 2011-09-09 19:48+0100\n
+PO-Revision-Date: 2011-12-10 19:00+0100\n
 Last-Translator: Francisco Javier Cuadrado fcocuadr...@gmail.com\n
 Language-Team: Debian l10n Spanish debian-l10n-span...@lists.debian.org\n
 Language: es\n
@@ -2064,7 +2064,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:7001
 msgid Hebron
-msgstr 
+msgstr Hebrón
 
 #. Type: select
 #. Choices

Modified: tzdata/trunk/debian/po/pt.po
===
--- tzdata/trunk/debian/po/pt.po2011-12-11 12:23:18 UTC (rev 5071)
+++ tzdata/trunk/debian/po/pt.po2011-12-11 13:20:22 UTC (rev 5072)
@@ -2,14 +2,15 @@
 # Copyright (C) 2007 Ricardo Silva
 # This file is distributed under the same license as the tzdata package.
 # Ricardo Silva ardo...@gmail.com, 2007-2008.
+# Miguel Figueiredo el...@debianpt.org, 2011.
 #
 msgid 
 msgstr 
-Project-Id-Version: tzdata 2008e-4\n
+Project-Id-Version: tzdata\n
 Report-Msgid-Bugs-To: tzd...@packages.debian.org\n
 POT-Creation-Date: 2011-10-31 23:24+0100\n
-PO-Revision-Date: 2008-11-02 11:10+\n
-Last-Translator: Ricardo Silva ardo...@gmail.com\n
+PO-Revision-Date: 2011-12-10 16:02+\n
+Last-Translator: Miguel Figueiredo el...@debianpt.org\n
 Language-Team: Portuguese tra...@debianpt.org\n
 Language: pt\n
 MIME-Version: 1.0\n
@@ -151,7 +152,7 @@
 #. EST5, MST7, etc.
 #: ../tzdata.templates:1001
 msgid US
-msgstr 
+msgstr US
 
 #. Type: select
 #. Choices
@@ -173,11 +174,6 @@
 #. Type: select
 #. Description
 #: ../tzdata.templates:1002
-#, fuzzy
-#| msgid 
-#| Please select the geographic area you live in. Subsequent configuration 
-#| questions will narrow this down by presenting a list of cities, 
-#| representing the time zones in which they are located.
 msgid 
 Please select the geographic area in which you live. Subsequent 
 configuration questions will narrow this down by presenting a list of 
@@ -192,7 +188,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:2001
 msgid Abidjan
-msgstr Abijão
+msgstr Abijan
 
 #. Type: select
 #. Choices
@@ -367,7 +363,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:2001
 msgid Juba
-msgstr 
+msgstr Juba
 
 #. Type: select
 #. Choices
@@ -395,7 +391,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:2001
 msgid Kinshasa
-msgstr Quinxassa
+msgstr Kinshasa
 
 #. Type: select
 #. Choices
@@ -549,7 +545,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:2001
 msgid Tunis
-msgstr Tunes
+msgstr Tunis
 
 #. Type: select
 #. Choices
@@ -623,10 +619,9 @@
 #: ../tzdata.templates:8002 ../tzdata.templates:9002 ../tzdata.templates:10002
 #: ../tzdata.templates:11002 ../tzdata.templates:12001
 #: ../tzdata.templates:13002 ../tzdata.templates:14001
-#, fuzzy
-#| msgid Please select the time zone corresponding to your location.
 msgid Please select the city or region corresponding to your time zone.
-msgstr Por favor escolha o fuso horário do sítio onde se encontra.
+msgstr 
+Por favor escolha a cidade ou região correspondente ao seu fuso horário.
 
 #. Type: select
 #. Choices
@@ -787,7 +782,7 @@
 #. Translators: do not translate underscores. You can use spaces instead.
 #: ../tzdata.templates:3001
 msgid Bahia_Banderas
-msgstr 
+msgstr Bahia de Banderas
 
 #. Type: select
 #. Choices
@@ -1186,7 +1181,7 @@
 #. Translators: do not translate underscores. You can 

Bug#651658: fixed

2011-12-11 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
changes were made to the overrides...

Concerning package locales-all...
Operating on the unstable suite
Changed section from libs to localization


Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 651...@bugs.debian.org.

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

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)


-- 
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/e1rzjsh-0002an...@franck.debian.org



Bug#651657: fixed

2011-12-11 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
changes were made to the overrides...

Concerning package libc6-sparc64...
Operating on the unstable suite
Changed priority from standard to optional


Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 651...@bugs.debian.org.

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

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)


-- 
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/e1rzjun-0003mf...@franck.debian.org



Bug#651657: fixed

2011-12-11 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
changes were made to the overrides...

Concerning package libc6-s390x...
Operating on the unstable suite
Changed priority from standard to optional


Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 651...@bugs.debian.org.

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

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)


-- 
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/e1rzjva-0003ts...@franck.debian.org



Bug#651657: fixed

2011-12-11 Thread Debian FTP Masters
We believe that the bug you reported is now fixed; the following
changes were made to the overrides...

Concerning package libc6-ppc64...
Operating on the unstable suite
Changed priority from required to optional


Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 651...@bugs.debian.org.

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

Debian distribution maintenance software
pp.
Luca Falavigna (the ftpmaster behind the curtain)


-- 
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/e1rzjvq-0003ih...@franck.debian.org



Bug#651746: libc6: upgrade lead to GNOME desktop freezing up

2011-12-11 Thread Paul van Tilburg
Package: libc6
Version: 2.13-22
Severity: important

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these lines ***

Hi!

After upgrading to 2.13-22 this morning and performing a login into my
GNOME (3.2) desktop, it (mainly the window manager) froze up within 20
seconds.  I was only able to unfreeze it by killing the window manager and
starting it again from the console, followed by a quick freeze-up again
and again.  This is not only case using gnome-shell, but also when using
the GNOME Classic desktop and thus metacity.

After downgrading to libc6 2.13-21, things started working again.

Kind regards,
Paul


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

Kernel: Linux 3.1.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libc6 depends on:
ii  libc-bin  2.13-21
ii  libgcc1   1:4.6.2-7

libc6 recommends no packages.

Versions of packages libc6 suggests:
ii  debconf [debconf-2.0]  1.5.41
ii  glibc-doc  none
ii  locales2.13-22

-- debconf information:
* glibc/upgrade: true
  glibc/disable-screensaver:
  glibc/restart-failed:
* glibc/restart-services: ssh postfix cups cron atd
  libraries/restart-without-asking: false



-- 
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/20111211202100.15573.10759.report...@density.luon.net