Bug#780419: tzdata: Please add the new Mexico/Sureste timezone to the Debian-specific package information

2015-03-13 Thread Gunnar Wolf
Christian PERRIER dijo [Fri, Mar 13, 2015 at 06:38:48PM +0100]:
  The state of Quintana Roo, in South-Eastern Mexico, has its own
  timezone since this February:
 
 Hello Gunnar (and family...;-)) ,
 
 So, it actually means that a change is also needed to the tzsetup
 component of D-I, so that Mexican users can choose Mexico/Sureste in
 addition to Mexico/General, Mexico, BajaSur and Mexico/BajaNorte,
 right?

My dear and bubbly friend! As usual, you are right: The installer
should display our four timezones.

And actually... It's not four — It's five :-P I don't know whether to
file this as a new bug, or this one should suffice, but according to
our official information:

   http://www.cenam.mx/Hora_oficial/

First issue: The BajaNorte and BajaSur names are not
official. They should rather be:

   México/Noroeste
   México/Pacífico
   México/Centro
   México/Sureste

And second, Sonora State (shaded in the map) does not do summer
daylight savings, so it only makes sense to separate it from
México/Pacífico.

Note that, if chosen by city, it does exist as America/Hermosillo, and
its information is correct. But IIRC, the installer does show the four
timezone names (and not the bunch of localities).


-- 
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/20150313183315.gb80...@gwolf.org



Bug#780419: tzdata: Please add the new Mexico/Sureste timezone to the Debian-specific package information

2015-03-13 Thread Christian PERRIER
Quoting Gunnar Wolf (gw...@gwolf.org):
 Package: tzdata
 Version: 2015a-1
 Severity: normal
 Tags: patch
 
 The state of Quintana Roo, in South-Eastern Mexico, has its own
 timezone since this February:


Hello Gunnar (and family...;-)) ,

So, it actually means that a change is also needed to the tzsetup
component of D-I, so that Mexican users can choose Mexico/Sureste in
addition to Mexico/General, Mexico, BajaSur and Mexico/BajaNorte,
right?




signature.asc
Description: Digital signature


r6376 - in glibc-package/trunk/debian: . rules.d

2015-03-13 Thread Adam Conrad
Author: adconrad
Date: 2015-03-13 20:14:08 + (Fri, 13 Mar 2015)
New Revision: 6376

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/rules.d/debhelper.mk
Log:
debian/rules.d/debhelper.mk: Unconditionally create tmp.substvars.

Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2015-03-12 22:11:47 UTC (rev 
6375)
+++ glibc-package/trunk/debian/changelog2015-03-13 20:14:08 UTC (rev 
6376)
@@ -1,6 +1,7 @@
 glibc (2.19-17) UNRELEASED; urgency=medium
 
-  * 
+  [ Adam Conrad ]
+  * debian/rules.d/debhelper.mk: Unconditionally create tmp.substvars.
 
  -- Aurelien Jarno aure...@debian.org  Thu, 12 Mar 2015 23:11:38 +0100
 

Modified: glibc-package/trunk/debian/rules.d/debhelper.mk
===
--- glibc-package/trunk/debian/rules.d/debhelper.mk 2015-03-12 22:11:47 UTC 
(rev 6375)
+++ glibc-package/trunk/debian/rules.d/debhelper.mk 2015-03-13 20:14:08 UTC 
(rev 6376)
@@ -178,8 +178,9 @@
perl -i -pe 'BEGIN {undef $$/; open(IN, 
debian/tmp-libc/usr/share/i18n/SUPPORTED); $$j=IN;} 
s/__PROVIDED_LOCALES__/$$j/g;' debian/locales.config debian/locales.postinst
 
# Generate common substvars files.
+   :  tmp.substvars
 ifeq ($(filter stage2,$(DEB_BUILD_PROFILES)),)
-   echo 'libgcc:Depends=libgcc1 [!hppa !m68k], libgcc2 [m68k], libgcc4 
[hppa]'  tmp.substvars
+   echo 'libgcc:Depends=libgcc1 [!hppa !m68k], libgcc2 [m68k], libgcc4 
[hppa]'  tmp.substvars
 endif
 
for pkg in $(DEB_ARCH_REGULAR_PACKAGES) $(DEB_INDEP_REGULAR_PACKAGES) 
$(DEB_UDEB_PACKAGES); do \


-- 
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/e1ywvyc-0005eq...@moszumanska.debian.org



Bug#780431: 2.19-16 breaks stage2 build

2015-03-13 Thread Helmut Grohne
Package: src:glibc
Version: 2.19-16
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

The glibc 2.19-16 upload regresses the stage2 build. The regression is
introudced in svn revision 6371 in debian/rules.d/debhelper.mk where
tmp.substvars is no longer generated for stage2. The build fails a few
lines later trying to copy tmp.substvars:

| cp: cannot stat 'tmp.substvars': No such file or directory

I verified that the attached patch solves the issue.

Adam Conrad committed a similar fix as svn revision 6376.

Helmut


-- 
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/20150313203600.ga31...@alf.mars



Bug#780431: 2.19-16 breaks stage2 build

2015-03-13 Thread Helmut Grohne
On Fri, Mar 13, 2015 at 09:36:01PM +0100, Helmut Grohne wrote:
 I verified that the attached patch solves the issue.

As Adam pointed out, my patch was missing. Sorry.

But it really is equivalent to what is already in SVN. So this mostly is
a confirmation.

Helmut
diff -Nru glibc-2.19/debian/changelog glibc-2.19/debian/changelog
--- glibc-2.19/debian/changelog 2015-03-12 22:00:48.0 +0100
+++ glibc-2.19/debian/changelog 2015-03-13 20:16:44.0 +0100
@@ -1,3 +1,10 @@
+glibc (2.19-16.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Unbreak stage2 build. (Closes: #-1)
+
+ -- Helmut Grohne hel...@subdivi.de  Fri, 13 Mar 2015 20:16:06 +0100
+
 glibc (2.19-16) unstable; urgency=medium
 
   [ Samuel Thibault ]
diff -Nru glibc-2.19/debian/rules.d/debhelper.mk 
glibc-2.19/debian/rules.d/debhelper.mk
--- glibc-2.19/debian/rules.d/debhelper.mk  2015-03-08 22:29:32.0 
+0100
+++ glibc-2.19/debian/rules.d/debhelper.mk  2015-03-13 20:16:03.0 
+0100
@@ -180,6 +180,8 @@
# Generate common substvars files.
 ifeq ($(filter stage2,$(DEB_BUILD_PROFILES)),)
echo 'libgcc:Depends=libgcc1 [!hppa !m68k], libgcc2 [m68k], libgcc4 
[hppa]'  tmp.substvars
+else
+   touch tmp.substvars
 endif
 
for pkg in $(DEB_ARCH_REGULAR_PACKAGES) $(DEB_INDEP_REGULAR_PACKAGES) 
$(DEB_UDEB_PACKAGES); do \


Bug#780419: tzdata: Please add the new Mexico/Sureste timezone to the Debian-specific package information

2015-03-13 Thread Gunnar Wolf
Package: tzdata
Version: 2015a-1
Severity: normal
Tags: patch

The state of Quintana Roo, in South-Eastern Mexico, has its own
timezone since this February:

  http://www.worldtimezone.com/dst_news/dst_news_mexico11.html
  http://www.cenam.mx/Hora_oficial/ (Spanish)
  https://en.wikipedia.org/wiki/Time_in_Mexico

This timezone change is already reflected in the 2015a release of
tzdata; my patch just adds the relevant information to
the debian/tzdata.config and backward files.

Please note I am unfamiliar with this package, but it does *seem* like
necessary to be shown in the system. The patch is trivial, so I'm
inlining it. Disregard if I'm mistaken here.

If the patch is accepted, I'd ask it to be considered for Jessie
installs!


diff --git a/backward b/backward
index 3ceda88..cc3ec36 100644
--- a/backward
+++ b/backward
@@ -89,6 +89,7 @@ Link  Africa/Tripoli  Libya
 Link   America/Tijuana Mexico/BajaNorte
 Link   America/MazatlanMexico/BajaSur
 Link   America/Mexico_City Mexico/General
+Link   America/Cancun  Mexico/Sureste
 Link   Pacific/AucklandNZ
 Link   Pacific/Chatham NZ-CHAT
 Link   America/Denver  Navajo
diff --git a/debian/tzdata.config b/debian/tzdata.config
index 67bcb0b..022139e 100644
--- a/debian/tzdata.config
+++ b/debian/tzdata.config
@@ -218,6 +218,9 @@ convert_timezone()
 Mexico/General)
 echo America/Mexico_City
 ;;
+Mexico/Sureste)
+echo America/Cancun
+;;
 Mideast/Riyadh87)
 echo Asia/Riyadh87
 ;;


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

Kernel: Linux 3.19.0-eudyptula5d12e3524822-00194-gd799964 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages tzdata depends on:
ii  debconf [debconf-2.0]  1.5.55

tzdata recommends no packages.

tzdata suggests no packages.

-- debconf information excluded


-- 
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/20150313163909.19193.8722.report...@mosca.iiec.unam.mx