Bug#502311: Exact errors differ by architecture

2008-11-01 Thread Philipp Kern
On Thu, Oct 16, 2008 at 09:54:05PM +0200, Aurelien Jarno wrote:
 On Thu, Oct 16, 2008 at 07:20:35PM +0200, Frank Lichtenheld wrote:
  Note that the list of regressions differ by architecture, but it
  is probably not useful at this point to make a separate bug for
  each of them, right?
 Yes, they differ by architecture, because the list has been established
 by building the package on a machine, verifying that there is no
 regression compared to version 2.7 and use the result as a baseline.
 
 We definitely have something different on those machines compared to the
 machines I used. I think it may be the kernel.

The buildd in question runs Etch's kernel (2.6.18-6-mckinley #1 SMP Fri
Jun 6 23:07:37 UTC 2008).

Kind regards,
Philipp Kern



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



Bug#504196: glibc: experimental upgrade breaks epiphany-browser

2008-11-01 Thread Johannes Berg
Package: glibc
Version: 2.8+20080809-1
Severity: normal

I have no idea why, but upgrading to libc6 from experimental
on an otherwise mostly unstable system breaks epiphany-browser,
it will segfault right away at start.

So doing
sudo apt-get -t experimental install locales

(which will upgrade libc6 et al) will break epiphany, and you can fix it by
doing
sudo apt-get install libc6/unstable libc6-dbg/unstable libc6-dev/unstable
locales/unstable lib64gcc1/unstable  libc6-ppc64/unstable
g++-4.3-multilib/unstable g++-multilib/unstable gcc-4.3-multilib/unstable
gcc-multilib/unstable libc6-dev-ppc64/unstable

again.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.28-rc2-wl-04239-gd80fe00-dirty (PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#504196: glibc: experimental upgrade breaks epiphany-browser

2008-11-01 Thread Pierre Habouzit
On Sat, Nov 01, 2008 at 03:45:56PM +, Johannes Berg wrote:
 Package: glibc
 Version: 2.8+20080809-1
 Severity: normal
 
 I have no idea why, but upgrading to libc6 from experimental
 on an otherwise mostly unstable system breaks epiphany-browser,
 it will segfault right away at start.

Could you at least care to give a backtrace with libc6-dbg installed
please ?

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpeqabliWGKj.pgp
Description: PGP signature


Bug#503912: test program

2008-11-01 Thread Joost Yervante Damad
Hi,

I didn't come up with a patch, the code is quite overwhelming... however, 
please find in attachment a simple C++ program that shows the problem.

Thanks, Joost Damad
#include sys/types.h
#include sys/socket.h
#include netdb.h
#include arpa/inet.h

#include string
#include iostream
#include cassert
#include cstring
#include sstream

static std::string toString(const struct in6_addr addr) {
	char buf[INET6_ADDRSTRLEN + 1];
	if (inet_ntop(AF_INET6, addr, buf, INET6_ADDRSTRLEN) == 0) {
		throw fail;
	}
	std::string s(buf);
	return s;
}


static bool test_resolve(const std::string addr, int flags, struct in6_addr addr2) {

	struct addrinfo hints;
	struct addrinfo *result;

	memset(hints, 0, sizeof(struct addrinfo));
	hints.ai_family = AF_INET6;
	hints.ai_socktype = SOCK_STREAM;
	hints.ai_protocol = 0; /* Any protocol */
	hints.ai_canonname = NULL;
	hints.ai_addr = NULL;
	hints.ai_next = NULL;
	hints.ai_flags = flags;

	int s = getaddrinfo(addr.c_str(), 0, hints, result);
	if (s != 0) {
		std::stringstream ss;
		ss  addr   :   gai_strerror(s);
		std::string str = ss.str();
		return false;
	}
	if (result == 0) {
		return false;
	}
	assert(result-ai_family == AF_INET6);
	assert(result-ai_addrlen == sizeof(struct sockaddr_in6));
	addr2 =
			((struct sockaddr_in6 *) result-ai_addr)-sin6_addr;
	freeaddrinfo(result);
	return true;
}

int main(int argc, char **argv) {
	struct in6_addr addr;
	if (test_resolve(localhost, AI_V4MAPPED, addr)) {
		std::cout  resolved:   toString(addr)  std::endl;
	} else {
		std::cout  failed!  std::endl;
	}
	if (test_resolve(localhost, AI_V4MAPPED | AI_ALL, addr)) {
		std::cout  resolved:   toString(addr)  std::endl;
	} else {
		std::cout  failed!  std::endl;
	}
	if (test_resolve(www.damad.be, AI_V4MAPPED, addr)) {
		std::cout  resolved:   toString(addr)  std::endl;
	} else {
		std::cout  failed!  std::endl;
	}
	if (test_resolve(www.damad.be, AI_V4MAPPED | AI_ALL, addr)) {
		std::cout  resolved:   toString(addr)  std::endl;
	} else {
		std::cout  failed!  std::endl;
	}

}


Bug#504196: glibc: experimental upgrade breaks epiphany-browser

2008-11-01 Thread Johannes Berg
On Sat, 2008-11-01 at 18:40 +0100, Pierre Habouzit wrote:
 On Sat, Nov 01, 2008 at 03:45:56PM +, Johannes Berg wrote:
  Package: glibc
  Version: 2.8+20080809-1
  Severity: normal
  
  I have no idea why, but upgrading to libc6 from experimental
  on an otherwise mostly unstable system breaks epiphany-browser,
  it will segfault right away at start.
 
 Could you at least care to give a backtrace with libc6-dbg installed
 please ?

Problem is that the backtrace is making no sense, it's crashing in
libglib:

#0  0x0e8d1290 in waitpid () from /lib/libpthread.so.0
#1  0x0e7a5630 in IA__g_spawn_sync (working_directory=value optimized out, 
argv=value optimized out, envp=0x0, flags=value optimized out, 
child_setup=value optimized out, user_data=value optimized out, 
standard_output=0x0, standard_error=0x0, exit_status=0x0, 
error=0xbf9e2818) at /build/buildd/glib2.0-2.18.2/glib/gspawn.c:382

johannes


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


Processing of tzdata_2008i-2_all.changes

2008-11-01 Thread Archive Administrator
tzdata_2008i-2_all.changes uploaded successfully to localhost
along with the files:
  tzdata_2008i-2.dsc
  tzdata_2008i-2.diff.gz
  tzdata_2008i-2_all.deb
  tzdata-java_2008i-2_all.deb

Greetings,

Your Debian queue daemon


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



Processed: tagging 503028

2008-11-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.26
 tags 503028 + pending
Bug#503028: tzdata: postinst needs to restore SELinux context on /etc/localtime
Tags were: patch
Tags added: 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 [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r3181 - tzdata/trunk/debian

2008-11-01 Thread schizo
Author: schizo
Date: 2008-11-01 23:55:24 + (Sat, 01 Nov 2008)
New Revision: 3181

Modified:
   tzdata/trunk/debian/changelog
   tzdata/trunk/debian/postinst
Log:
2008i-2

Modified: tzdata/trunk/debian/changelog
===
--- tzdata/trunk/debian/changelog   2008-10-31 18:39:06 UTC (rev 3180)
+++ tzdata/trunk/debian/changelog   2008-11-01 23:55:24 UTC (rev 3181)
@@ -1,5 +1,6 @@
-tzdata (2008i-2) UNRELEASED; urgency=low
+tzdata (2008i-2) unstable; urgency=low
 
+  [ Christian Perrier ]
   * Debconf translations:
   * French
   * Belarusian. Closes: #503969
@@ -11,8 +12,12 @@
   * German. Closes: #504038
   * Catalan. Closes: #504074
 
- -- Christian Perrier [EMAIL PROTECTED]  Wed, 29 Oct 2008 22:36:23 +0100
+  [ Clint Adams ]
+  * debian/postinst: apply patch from Martin Orr to restore SELinux
+context of /etc/localtime.  closes: #503028.
 
+ -- Clint Adams [EMAIL PROTECTED]  Sat, 01 Nov 2008 19:45:54 -0400
+
 tzdata (2008i-1) unstable; urgency=low
 
   * New upstream version.

Modified: tzdata/trunk/debian/postinst
===
--- tzdata/trunk/debian/postinst2008-10-31 18:39:06 UTC (rev 3180)
+++ tzdata/trunk/debian/postinst2008-11-01 23:55:24 UTC (rev 3181)
@@ -29,6 +29,7 @@
 echo $AREA/$ZONE  /etc/timezone
 rm -f /etc/localtime  \
 cp -f /usr/share/zoneinfo/$AREA/$ZONE /etc/localtime
+   which restorecon /dev/null 21  restorecon /etc/localtime
 
 echo 
 echo Current default timezone: '$AREA/$ZONE'


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



r3182 - tzdata/tags

2008-11-01 Thread schizo
Author: schizo
Date: 2008-11-01 23:56:03 + (Sat, 01 Nov 2008)
New Revision: 3182

Added:
   tzdata/tags/2008i-2/
Log:
tag 2008i-2


Copied: tzdata/tags/2008i-2 (from rev 3181, tzdata/trunk)


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



tzdata_2008i-2_all.changes ACCEPTED

2008-11-01 Thread Debian Installer

Accepted:
tzdata-java_2008i-2_all.deb
  to pool/main/t/tzdata/tzdata-java_2008i-2_all.deb
tzdata_2008i-2.diff.gz
  to pool/main/t/tzdata/tzdata_2008i-2.diff.gz
tzdata_2008i-2.dsc
  to pool/main/t/tzdata/tzdata_2008i-2.dsc
tzdata_2008i-2_all.deb
  to pool/main/t/tzdata/tzdata_2008i-2_all.deb


Override entries for your package:
tzdata-java_2008i-2_all.deb - optional libs
tzdata_2008i-2.dsc - source libs
tzdata_2008i-2_all.deb - required libs

Announcing to [EMAIL PROTECTED]
Closing bugs: 503028 503969 503979 503988 503995 504036 504038 504074 


Thank you for your contribution to Debian.


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



Bug#503995: marked as done (tzdata: [INTL:ja] updated Lithuanian debconf translation)

2008-11-01 Thread Debian Bug Tracking System

Your message dated Sun, 02 Nov 2008 00:02:06 +
with message-id [EMAIL PROTECTED]
and subject line Bug#503995: fixed in tzdata 2008i-2
has caused the Debian Bug report #503995,
regarding tzdata: [INTL:ja] updated Lithuanian debconf translation
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 [EMAIL PROTECTED]
immediately.)


-- 
503995: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=503995
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
Package: tzdata
Version: 2008i-2
Severity: wishlist
Tags: patch l10n

Here is the updated translation of Lithuanian debconf messages (lt.po.gz).
Please apply this.
-- 
Kęstutis Biliūnas [EMAIL PROTECTED]
http://kebil.ghost.lt  |  GnuPG-Key ID: F6E7A452


lt.po.gz
Description: GNU Zip compressed data


signature.asc
Description: Ši laiško dalis yra	pasirašyta skaitmeniniu būdu
---End Message---
---BeginMessage---
Source: tzdata
Source-Version: 2008i-2

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

tzdata-java_2008i-2_all.deb
  to pool/main/t/tzdata/tzdata-java_2008i-2_all.deb
tzdata_2008i-2.diff.gz
  to pool/main/t/tzdata/tzdata_2008i-2.diff.gz
tzdata_2008i-2.dsc
  to pool/main/t/tzdata/tzdata_2008i-2.dsc
tzdata_2008i-2_all.deb
  to pool/main/t/tzdata/tzdata_2008i-2_all.deb



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Clint Adams [EMAIL PROTECTED] (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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 19:45:54 -0400
Source: tzdata
Binary: tzdata tzdata-java
Architecture: source all
Version: 2008i-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Clint Adams [EMAIL PROTECTED]
Description: 
 tzdata - time zone and daylight-saving time data
 tzdata-java - time zone and daylight-saving time data for use by java runtimes
Closes: 503028 503969 503979 503988 503995 504036 504038 504074
Changes: 
 tzdata (2008i-2) unstable; urgency=low
 .
   [ Christian Perrier ]
   * Debconf translations:
   * French
   * Belarusian. Closes: #503969
   * Japanese. Closes: #503979
   * Gujarati. Closes: #503988
   * Lithuanian. Closes: #503995
   * Kurdish
   * Swedish. Closes: #504036
   * German. Closes: #504038
   * Catalan. Closes: #504074
 .
   [ Clint Adams ]
   * debian/postinst: apply patch from Martin Orr to restore SELinux
 context of /etc/localtime.  closes: #503028.
Checksums-Sha1: 
 1461e3623b8d38e642d458d9268ee60f930d3be9 1127 tzdata_2008i-2.dsc
 5d6bb1306d8acc25f1c6dd6b331e701d8d71f863 217209 tzdata_2008i-2.diff.gz
 b6a3ffb2db5672d802165c6da5606f3f9b4f96b6 741116 tzdata_2008i-2_all.deb
 e40e6c49965abd6ede6cbf9077b104e901995343 144612 tzdata-java_2008i-2_all.deb
Checksums-Sha256: 
 54ecdb9972f6c37f4bee83f74ca4cf92eadfb4adb2c6a6c89cd2b45bcc740aa6 1127 
tzdata_2008i-2.dsc
 6707ede1971d27b7d459d0e9ea0eb0dc26fe47d28913085ec9d9d280983ea3ab 217209 
tzdata_2008i-2.diff.gz
 98b1cad643f33231d82a2c6c81a70ef40a688b1eb99bb531346a1875fbf541fc 741116 
tzdata_2008i-2_all.deb
 2f99960e1c21eaeaf6fd7d9f17d5b55307e4cc933e7020160ff2583d24e8873e 144612 
tzdata-java_2008i-2_all.deb
Files: 
 f9c9d8f66162758ee61b609acca79c0d 1127 libs required tzdata_2008i-2.dsc
 034a0282a297020e2663dbb63b403067 217209 libs required tzdata_2008i-2.diff.gz
 2adbe2fdbd6d3da453c34596c738c884 741116 libs required tzdata_2008i-2_all.deb
 4ebef55dc990439a23286ecc50d3de69 144612 libs optional 
tzdata-java_2008i-2_all.deb

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

iD8DBQFJDOwL5m0u66uWM3ARAvtCAJ4xYzfQqxWWHOt7/ubaiNt1OEIZcACdGYrN
YnYelyuEASiF0ZVF7PqW50Y=
=0HmL
-END PGP SIGNATURE-


---End Message---


Bug#503028: marked as done (tzdata: postinst needs to restore SELinux context on /etc/localtime)

2008-11-01 Thread Debian Bug Tracking System

Your message dated Sun, 02 Nov 2008 00:02:06 +
with message-id [EMAIL PROTECTED]
and subject line Bug#503028: fixed in tzdata 2008i-2
has caused the Debian Bug report #503028,
regarding tzdata: postinst needs to restore SELinux context on /etc/localtime
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 [EMAIL PROTECTED]
immediately.)


-- 
503028: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=503028
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
Package: tzdata
Version: 2008h-2
Severity: normal
Tags: patch

On a system with SELinux enabled, copying a file into /etc/localtime causes
its security context to be set to etc_t, the default for files in /etc.  But
/etc/localtime needs to be labelled as locale_t, so you need to run
restorecon on it after copying.

--- debian/postinst.orig2008-10-21 21:20:25.0 +0100
+++ debian/postinst 2008-10-21 21:20:34.0 +0100
@@ -29,6 +29,7 @@
 echo $AREA/$ZONE  /etc/timezone
 rm -f /etc/localtime  \
 cp -f /usr/share/zoneinfo/$AREA/$ZONE /etc/localtime
+which restorecon /dev/null 21  restorecon /etc/localtime

 echo
 echo Current default timezone: '$AREA/$ZONE'



--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.26.2

Debian Release: lenny/sid
  500 unstableftp.ie.debian.org
  500 testing ftp.ie.debian.org
1 experimentalftp.ie.debian.org

--- Package information. ---
Depends  (Version) | Installed
==-+-===
debconf| 1.5.24
 OR debconf-2.0|


-- 
Martin Orr


---End Message---
---BeginMessage---
Source: tzdata
Source-Version: 2008i-2

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

tzdata-java_2008i-2_all.deb
  to pool/main/t/tzdata/tzdata-java_2008i-2_all.deb
tzdata_2008i-2.diff.gz
  to pool/main/t/tzdata/tzdata_2008i-2.diff.gz
tzdata_2008i-2.dsc
  to pool/main/t/tzdata/tzdata_2008i-2.dsc
tzdata_2008i-2_all.deb
  to pool/main/t/tzdata/tzdata_2008i-2_all.deb



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Clint Adams [EMAIL PROTECTED] (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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Nov 2008 19:45:54 -0400
Source: tzdata
Binary: tzdata tzdata-java
Architecture: source all
Version: 2008i-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Clint Adams [EMAIL PROTECTED]
Description: 
 tzdata - time zone and daylight-saving time data
 tzdata-java - time zone and daylight-saving time data for use by java runtimes
Closes: 503028 503969 503979 503988 503995 504036 504038 504074
Changes: 
 tzdata (2008i-2) unstable; urgency=low
 .
   [ Christian Perrier ]
   * Debconf translations:
   * French
   * Belarusian. Closes: #503969
   * Japanese. Closes: #503979
   * Gujarati. Closes: #503988
   * Lithuanian. Closes: #503995
   * Kurdish
   * Swedish. Closes: #504036
   * German. Closes: #504038
   * Catalan. Closes: #504074
 .
   [ Clint Adams ]
   * debian/postinst: apply patch from Martin Orr to restore SELinux
 context of /etc/localtime.  closes: #503028.
Checksums-Sha1: 
 1461e3623b8d38e642d458d9268ee60f930d3be9 1127 tzdata_2008i-2.dsc
 5d6bb1306d8acc25f1c6dd6b331e701d8d71f863 217209 tzdata_2008i-2.diff.gz
 b6a3ffb2db5672d802165c6da5606f3f9b4f96b6 741116 tzdata_2008i-2_all.deb
 e40e6c49965abd6ede6cbf9077b104e901995343 144612 tzdata-java_2008i-2_all.deb
Checksums-Sha256: 
 54ecdb9972f6c37f4bee83f74ca4cf92eadfb4adb2c6a6c89cd2b45bcc740aa6 1127 
tzdata_2008i-2.dsc
 6707ede1971d27b7d459d0e9ea0eb0dc26fe47d28913085ec9d9d280983ea3ab 217209 
tzdata_2008i-2.diff.gz
 98b1cad643f33231d82a2c6c81a70ef40a688b1eb99bb531346a1875fbf541fc 741116 
tzdata_2008i-2_all.deb
 2f99960e1c21eaeaf6fd7d9f17d5b55307e4cc933e7020160ff2583d24e8873e 144612 
tzdata-java_2008i-2_all.deb
Files: 
 f9c9d8f66162758ee61b609acca79c0d 1127 libs required tzdata_2008i-2.dsc
 034a0282a297020e2663dbb63b403067 217209 libs required tzdata_2008i-2.diff.gz
 2adbe2fdbd6d3da453c34596c738c884 741116 libs