Bug#782241: marked as done (locales: On upgrade, generic locales as C.UTF-8 are lost in /etc/default/locale)

2015-04-14 Thread Debian Bug Tracking System
Your message dated Tue, 14 Apr 2015 21:20:18 +
with message-id 
and subject line Bug#782241: fixed in glibc 2.19-18
has caused the Debian Bug report #782241,
regarding locales: On upgrade, generic locales as C.UTF-8 are lost in 
/etc/default/locale
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.)


-- 
782241: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=782241
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: locales
Version: 2.19-17
Severity: serious
Tags: patch
Justification: valid administator configuration is lost on upgrade

  Hi,

  The current debconf script for the 'locales' package does not allow to
choose the C.UTF-8 locale. Moreover, if an administrator write this valid
value for the LANG variable in /etc/default/locale, the value will be
overwritten as soon as the 'locales' package is reconfigurated.
  If I correctly follow the logic of the config script, one goal is to ensure
that the chosen value is correct (i.e. supported). So, the current value
is not always put in the debconf proposed list.
  However, the C.UTF-8 value is valid (as are C and POSIX but I'm less sure
of their value).

  So, either the C.UTF-8 value (and perhaps C and POSIX) should be proposed
when selecting the default environment locale, or, at very least, the config
script must allow to keep it when it has manually be put into
/etc/default/locale by the administrator.

  If you want to always allow this value, the current patch is enough:
===
--- locales.config  2015-03-14 10:30:53.0 +0100
+++ /tmp/locales.config 2015-04-09 15:05:40.257852467 +0200
@@ -547,9 +547,12 @@
 fi
 DEFAULT_LOCALES="$(echo $RET | sed -e 's/ [^ ]*,/,/g' -e 's/ [^ 
]*$//')"
 if [ -n "$DEFAULT_LOCALES" ]; then
-db_subst locales/default_environment_locale locales 
$DEFAULT_LOCALES
-db_input medium locales/default_environment_locale || true
+DEFAULT_LOCALES="C, C.UTF-8, POSIX, $DEFAULT_LOCALES"
+else
+DEFAULT_LOCALES="C, C.UTF-8, POSIX"
 fi
+db_subst locales/default_environment_locale locales $DEFAULT_LOCALES
+db_input medium locales/default_environment_locale || true
 ;;
 *)
 break
===
  Feel free to adjust the list of always supported locales (ie C and POSIX)

  If you want to only allow the C, C.UTF-8, and POSIX locales when they
have been manually set up (so they do not show up on default install), I
can provide an updated patch. Just tell me.

  Regards,
Vincent

-- System Information:
Debian Release: 8.0
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'unstable'), (500, 'testing'), 
(500, 'stable'), (500, 'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armel, mipsel

Kernel: Linux 3.19.0-trunk-amd64 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages locales depends on:
ii  debconf [debconf-2.0]  1.5.56
ii  libc-bin   2.19-17

locales recommends no packages.

locales suggests no packages.

-- debconf information:
  locales/default_environment_locale: None
  locales/locales_to_be_generated: fr_FR.UTF-8 UTF-8
--- End Message ---
--- Begin Message ---
Source: glibc
Source-Version: 2.19-18

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

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 782...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno  (supplier of updated glibc 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 Apr 2015 19:50:11 +0200
Source: glibc
Binary: libc-bin libc-dev-bin glibc-doc glibc-source locales locales-all nscd 
multiarch-support libc6 libc6-dev libc6-dbg libc6-pic libc6-udeb libc6.1 
libc6.1-dev libc6.1-dbg libc6.1-pic libc6.1-udeb libc0.3 libc0.3-dev 
libc0.3-dbg libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev libc0.1-dbg 
libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc libc6-dev-spar

r6441 - in glibc-package/branches/glibc-2.21/debian: . debhelper.in

2015-04-14 Thread Aurelien Jarno
Author: aurel32
Date: 2015-04-14 19:25:18 + (Tue, 14 Apr 2015)
New Revision: 6441

Modified:
   glibc-package/branches/glibc-2.21/debian/changelog
   glibc-package/branches/glibc-2.21/debian/debhelper.in/locales.templates
Log:
merge from unstable


Modified: glibc-package/branches/glibc-2.21/debian/changelog
===
--- glibc-package/branches/glibc-2.21/debian/changelog  2015-04-14 19:21:13 UTC 
(rev 6440)
+++ glibc-package/branches/glibc-2.21/debian/changelog  2015-04-14 19:25:18 UTC 
(rev 6441)
@@ -212,6 +212,14 @@
 
  -- Adam Conrad   Fri, 06 Mar 2015 13:47:43 -0700
 
+glibc (2.19-18) unstable; urgency=medium
+
+  [ Aurelien Jarno ]
+  * debhelper.in/locales.templates: allow the C.UTF-8 locale to be
+selected as the default locale. Closes: #782241.
+
+ -- Aurelien Jarno   Tue, 14 Apr 2015 19:50:11 +0200
+
 glibc (2.19-17) unstable; urgency=medium
 
   [ Adam Conrad ]

Modified: 
glibc-package/branches/glibc-2.21/debian/debhelper.in/locales.templates
===
--- glibc-package/branches/glibc-2.21/debian/debhelper.in/locales.templates 
2015-04-14 19:21:13 UTC (rev 6440)
+++ glibc-package/branches/glibc-2.21/debian/debhelper.in/locales.templates 
2015-04-14 19:25:18 UTC (rev 6441)
@@ -15,7 +15,7 @@
 Template: locales/default_environment_locale
 Type: select
 #flag:translate:1
-__Choices: None, ${locales}
+__Choices: None, C.UTF-8, ${locales}
 Default: None
 _Description: Default locale for the system environment:
  Many packages in Debian use locales to display text in the correct


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yi6su-0005rj...@moszumanska.debian.org



r6439 - glibc-package/trunk/debian

2015-04-14 Thread Aurelien Jarno
Author: aurel32
Date: 2015-04-14 19:21:08 + (Tue, 14 Apr 2015)
New Revision: 6439

Modified:
   glibc-package/trunk/debian/changelog
Log:
releasing package glibc version 2.19-18

Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2015-04-14 17:50:08 UTC (rev 
6438)
+++ glibc-package/trunk/debian/changelog2015-04-14 19:21:08 UTC (rev 
6439)
@@ -1,10 +1,10 @@
-glibc (2.19-18) UNRELEASED; urgency=medium
+glibc (2.19-18) unstable; urgency=medium
 
   [ Aurelien Jarno ]
   * debhelper.in/locales.templates: allow the C.UTF-8 locale to be
 selected as the default locale. Closes: #782241.
 
- -- Aurelien Jarno   Tue, 14 Apr 2015 19:46:24 +0200
+ -- Aurelien Jarno   Tue, 14 Apr 2015 19:50:11 +0200
 
 glibc (2.19-17) unstable; urgency=medium
 


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yi6os-0003fx...@moszumanska.debian.org



r6440 - glibc-package/tags

2015-04-14 Thread Aurelien Jarno
Author: aurel32
Date: 2015-04-14 19:21:13 + (Tue, 14 Apr 2015)
New Revision: 6440

Added:
   glibc-package/tags/2.19-18/
Log:
tagging package glibc version 2.19-18


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yi6ox-0003r4...@moszumanska.debian.org



r6438 - in glibc-package/trunk/debian: . debhelper.in

2015-04-14 Thread Aurelien Jarno
Author: aurel32
Date: 2015-04-14 17:50:08 + (Tue, 14 Apr 2015)
New Revision: 6438

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/debhelper.in/locales.templates
Log:
debhelper.in/locales.templates: allow the C.UTF-8 locale to be
selected as the default locale. Closes: #782241.

Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2015-04-14 14:45:23 UTC (rev 
6437)
+++ glibc-package/trunk/debian/changelog2015-04-14 17:50:08 UTC (rev 
6438)
@@ -1,8 +1,10 @@
 glibc (2.19-18) UNRELEASED; urgency=medium
 
-  * 
+  [ Aurelien Jarno ]
+  * debhelper.in/locales.templates: allow the C.UTF-8 locale to be
+selected as the default locale. Closes: #782241.
 
- -- Aurelien Jarno   Sat, 14 Mar 2015 10:48:40 +0100
+ -- Aurelien Jarno   Tue, 14 Apr 2015 19:46:24 +0200
 
 glibc (2.19-17) unstable; urgency=medium
 

Modified: glibc-package/trunk/debian/debhelper.in/locales.templates
===
--- glibc-package/trunk/debian/debhelper.in/locales.templates   2015-04-14 
14:45:23 UTC (rev 6437)
+++ glibc-package/trunk/debian/debhelper.in/locales.templates   2015-04-14 
17:50:08 UTC (rev 6438)
@@ -15,7 +15,7 @@
 Template: locales/default_environment_locale
 Type: select
 #flag:translate:1
-__Choices: None, ${locales}
+__Choices: None, C.UTF-8, ${locales}
 Default: None
 _Description: Default locale for the system environment:
  Many packages in Debian use locales to display text in the correct


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yi4yo-0004wh...@moszumanska.debian.org



Bug#738575: marc.herb...@gmail.com, debian-bugrep...@thomas-faust.de

2015-04-14 Thread Ray Kinsella
Hi all,

I have done some investigation here and it seems that the CPU microcode
cannot be updated on these platforms, which brings us back to fixing the
issue in software. ( I am part of the Intel BSP team for Quark platforms ).

In order to support Quark/Galileo the most straight forward approach might
be to detect the platform at runtime in glibc and insert the NOP before
LOCK only on Quark. This would involve an if statement somewhere along the
line to either check within __nptl_setxid or have a version of __nptl_setxid
specific for Quark.

Make sense?

Ray K


tzdata_2015c-1_multi.changes ACCEPTED into unstable

2015-04-14 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 Apr 2015 08:35:34 -0600
Source: tzdata
Binary: tzdata tzdata-java
Architecture: all source
Version: 2015c-1
Distribution: unstable
Urgency: high
Maintainer: GNU Libc Maintainers 
Changed-By: Adam Conrad 
Description: 
 tzdata-java - time zone and daylight-saving time data for use by java runtimes
 tzdata - time zone and daylight-saving time data
Changes:
 tzdata (2015c-1) unstable; urgency=high
 .
   * New upstream release, with an urgent change for Egypt in ten days.
Checksums-Sha1: 
 45d6c2184061019e4441ebf61680c27620341b2e 1940 tzdata_2015c-1.dsc
 8e95901d8fe9d4eb052a6900239e6364ec47b2d7 294353 tzdata_2015c.orig.tar.gz
 4bebe917f9b2297369ced8b188d1a632598aedf1 99988 tzdata_2015c-1.debian.tar.xz
 a51b2bb70de97f67def9fa46317d25b6fca444c5 189050 tzdata_2015c-1_all.deb
 701ebc6f979bf4ff114940b5b90466bb7d237e34 80972 tzdata-java_2015c-1_all.deb
Checksums-Sha256: 
 78321dc8b34a9429715574996df3c65944c5f584ad944af3be0e3d6a238602dd 1940 
tzdata_2015c-1.dsc
 860fac5f5f57f7a2dfc1ba682dbd1f5c0f0b597f761571277b6ed6561e22365a 294353 
tzdata_2015c.orig.tar.gz
 c61f68c32ade3aac1c33f6c97872679316ce21b33224dd682ce05e6fb384bc01 99988 
tzdata_2015c-1.debian.tar.xz
 882615adeb13f4e32d8a7ff3fd1d54cfda6b08a81101b71d12bf8194b177e540 189050 
tzdata_2015c-1_all.deb
 1c3ac01c8ed87276845cbf02eb3ddb8b0e55f19bc765a70ff721c280d73dbded 80972 
tzdata-java_2015c-1_all.deb
Files: 
 e699fb3fbb399425a431fc4506717f1d 1940 localization required tzdata_2015c-1.dsc
 4b4a3e344786198c46909e5afde08788 294353 localization required 
tzdata_2015c.orig.tar.gz
 e95000660e8a5dc26ada8835a6eac1c8 99988 localization required 
tzdata_2015c-1.debian.tar.xz
 303045774e743e8d49bd2df2e7bba495 189050 localization required 
tzdata_2015c-1_all.deb
 092699c2595ad2d02fc309c250d48854 80972 java optional 
tzdata-java_2015c-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVLTX6AAoJEINAGjCxzeWPmygP/RZilAFQw/qJjiH2E7Yfu0KY
LUhXh1W5x0lW8ACN07ZL9girSZUcHItUlnIlsZhdrTG49t+1OEBVLczYi6i6PLp3
gYxs8IKCGvegqCzfHkH2eAvJVjr1hfmJIzKsabYsd40ivwtkeyhLWZe9FM0LaogA
TktRXDgx4eT9wJh6bhQrxOR/72Wc3+6GloPdcXn1KrWA1s+qimmDyPKXoQwICy2+
c5S/YfQaelUTjoh1xzmlfTSO9LWUyonMUQRL7ED8H3LmCkiZ6nPxr1fzJQNOq2Ax
sfr7gIfaKyszcXsC9yghcxzw8wkmt9Lu409x03/wffJAnZuLZdtSXmT3dms3AmIT
pkk0gn7I8SVOMUw4XAyP3DKWUFn43OAsBG3x6HXWlPnGrSTba+/gxoui4h3C9Owp
+qMSRVY/71x+kiRiV1SafrmaBwvvAPsKDOwHiqx3lSX4tEvE/IwglV06Wy431ucD
wNxnb3vQswSsDpJZGRVCTKPNjlN09EZBRQIi550pqtDSP36EYY9ouVxiEKgdz2p3
NMJdtSmoSlf0juYJF6g/U1ey5NBHB7R0cQHuXNX1R9eWCDDkyUIvchUuzmfj2REY
l6ZbkyUJKRIafYKg9gv4QMqKUX5qF7BeoaJ9HZzFHQs62+Yk9GNOswTsIyULqCbM
M3zuuH1RsxA/6Wh6AmET
=hdDB
-END PGP SIGNATURE-


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: https://lists.debian.org/e1yi35m-00061u...@franck.debian.org



Processing of tzdata_2015c-1_multi.changes

2015-04-14 Thread Debian FTP Masters
tzdata_2015c-1_multi.changes uploaded successfully to localhost
along with the files:
  tzdata_2015c-1.dsc
  tzdata_2015c.orig.tar.gz
  tzdata_2015c-1.debian.tar.xz
  tzdata_2015c-1_all.deb
  tzdata-java_2015c-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: https://lists.debian.org/e1yi32q-0005vh...@franck.debian.org



r6437 - tzdata/tags

2015-04-14 Thread Adam Conrad
Author: adconrad
Date: 2015-04-14 14:45:23 + (Tue, 14 Apr 2015)
New Revision: 6437

Added:
   tzdata/tags/2015c-1/
Log:
Tag 2015c-1


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yi25b-0003tw...@moszumanska.debian.org



r6436 - tzdata/trunk/debian

2015-04-14 Thread Adam Conrad
Author: adconrad
Date: 2015-04-14 14:43:16 + (Tue, 14 Apr 2015)
New Revision: 6436

Modified:
   tzdata/trunk/debian/changelog
Log:
New upstream release, with an urgent change for Egypt in ten days.

Modified: tzdata/trunk/debian/changelog
===
--- tzdata/trunk/debian/changelog   2015-04-11 09:42:19 UTC (rev 6435)
+++ tzdata/trunk/debian/changelog   2015-04-14 14:43:16 UTC (rev 6436)
@@ -1,3 +1,9 @@
+tzdata (2015c-1) unstable; urgency=high
+
+  * New upstream release, with an urgent change for Egypt in ten days.
+
+ -- Adam Conrad   Tue, 14 Apr 2015 08:35:34 -0600
+
 tzdata (2015b-1) unstable; urgency=high
 
   * New upstream release with urgent updates for Mongolia and Palestine.


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yi23y-00031p...@moszumanska.debian.org



Verzacht uw kraantjeswater

2015-04-14 Thread Waterverzachter
In België is het water één van het meest kalkhoudende van Europa. Te
veel kalk beschadigt uw elektrische huishoudapparaten en is nadelig voor uw
dagelijks comfort.

Ontvang een gratis offerte:
http://www.debesteleverancier.be/waterverzachter/gratis-offerte.htm?lng=nl&tg=adoucisseur&utm_campaign=adoucisseur&utm_source=admr&utm_medium=email&you=debian-glibc@lists.debian.org

Sanitaire installaties die voortdurend getekend zijn door afzettingen van
kalkaanslag, koffiezetapparaten die het aflaten, strijkijzers die verstopt
zitten, een droge huid, ... Vele nadelen die gemakkelijk vermeden kunnen
worden door een waterontharder te gebruiken. 

Snel en gemakkelijk geplaatst, zorgt een waterverzachter voor aanzienlijke
besparingen, een verlenging van de levensduur van uw huishoudelijke
apparaten, die meer energie verbruiken en waarvan de werking bemoeilijkt
wordt door de kalkaanslag, voor schone leidingen, een perfect werkende
waterboiler, enz.
---
Online versie: 
http://mailing.fb.bb1.mailbb.be/c7437/e46223700/h951de/l222481/index.html
Deze e-mail werd verstuurd naar debian-glibc@lists.debian.org.
Profiel aanpassen: 
http://mailing.fb.bb1.mailbb.be/c7437/e46223700/h951de/l222483/index.html
Uitschrijven: 
http://mailing.fb.bb1.mailbb.be/c7437/e46223700/h951de/l222482/index.html
Privacy policy: 
http://mailing.fb.bb1.mailbb.be/c7437/e46223700/h951de/l222484/index.html