mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 0/2] timezone update and a forgotten patch
@ 2018-10-26  9:48 Alexander Dahl
  2018-10-26  9:48 ` [ptxdist] [PATCH 1/2] timezone: Change default to empty string Alexander Dahl
  2018-10-26  9:48 ` [ptxdist] [PATCH 2/2] tz: version bump 2018e -> 2018f Alexander Dahl
  0 siblings, 2 replies; 4+ messages in thread
From: Alexander Dahl @ 2018-10-26  9:48 UTC (permalink / raw)
  To: ptxdist

Hello,

few days ago the new tz code and data has been released:

https://mm.icann.org/pipermail/tz-announce/2018-October/000051.html

I did the version bump, nothing special to note here, and appended a
patch, which I didn't send last time I worked on timezone stuff,
because v1 of my patch series back then had already been applied and I
didn't want to bother you again. See the discussion on that from
Message-ID <20180626135053.63rqnpct4lpr2mq3@pengutronix.de> or here:

https://www.mail-archive.com/ptxdist@pengutronix.de/msg12987.html

Greets
Alex

Alexander Dahl (2):
  timezone: Change default to empty string
  tz: version bump 2018e -> 2018f

 rules/host-tz-database.make | 8 ++++----
 rules/timezone.in           | 5 +++--
 2 files changed, 7 insertions(+), 6 deletions(-)

-- 
2.11.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ptxdist] [PATCH 1/2] timezone: Change default to empty string
  2018-10-26  9:48 [ptxdist] [PATCH 0/2] timezone update and a forgotten patch Alexander Dahl
@ 2018-10-26  9:48 ` Alexander Dahl
  2018-10-26  9:48 ` [ptxdist] [PATCH 2/2] tz: version bump 2018e -> 2018f Alexander Dahl
  1 sibling, 0 replies; 4+ messages in thread
From: Alexander Dahl @ 2018-10-26  9:48 UTC (permalink / raw)
  To: ptxdist

Defaulting to any valid timezone would require that to be selected.
Instead of mandatory selecting a timezone we leave this empty now and
make the help text more clear.

Suggested-by: Roland Hieber <r.hieber@pengutronix.de>
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 rules/timezone.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/rules/timezone.in b/rules/timezone.in
index 378a05b68..ae26de02b 100644
--- a/rules/timezone.in
+++ b/rules/timezone.in
@@ -14,12 +14,13 @@ comment "Timezone support"
 
 config TIMEZONE_LOCALTIME
 	prompt "Timezone for /etc/localtime"
-	default "Europe/Berlin"
+	default ""
 	string
 	help
 	  Where should /etc/localtime point to? (e.g. put in "Europe/Berlin"
 	  here to let it point to /usr/share/zoneinfo/Europe/Berlin)
-	  Note: if you leave this empty /etc/localtime is NOT created.
+
+	  NOTE: if you leave this empty /etc/localtime is NOT created.
 
 config TIMEZONE_AFRICA
 	bool
-- 
2.11.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ptxdist] [PATCH 2/2] tz: version bump 2018e -> 2018f
  2018-10-26  9:48 [ptxdist] [PATCH 0/2] timezone update and a forgotten patch Alexander Dahl
  2018-10-26  9:48 ` [ptxdist] [PATCH 1/2] timezone: Change default to empty string Alexander Dahl
@ 2018-10-26  9:48 ` Alexander Dahl
  2018-10-28  7:55   ` Alexander Dahl
  1 sibling, 1 reply; 4+ messages in thread
From: Alexander Dahl @ 2018-10-26  9:48 UTC (permalink / raw)
  To: ptxdist

Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
 rules/host-tz-database.make | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/rules/host-tz-database.make b/rules/host-tz-database.make
index c15d0feb7..ad9bd4993 100644
--- a/rules/host-tz-database.make
+++ b/rules/host-tz-database.make
@@ -20,8 +20,8 @@ HOST_PACKAGES-$(PTXCONF_HOST_TZ_DATABASE) += host-tz-database
 HOST_TZ_DATABASE	:= tz-database
 HOST_TZ_DATABASE_DIR	:= $(HOST_BUILDDIR)/$(HOST_TZ_DATABASE)
 
-TZCODE_VERSION		:= 2018e
-TZCODE_MD5		:= c4d7df0fff7ba5588b32c5f27e2caf97
+TZCODE_VERSION		:= 2018f
+TZCODE_MD5		:= 011d394b70e6ee3823fd77010b99737f
 TZCODE			:= tzcode$(TZCODE_VERSION)
 TZCODE_SUFFIX		:= tar.gz
 TZCODE_URL		:= \
@@ -31,8 +31,8 @@ $(TZCODE_SOURCE)	:= TZCODE
 TZCODE_DIR		:= $(HOST_TZ_DATABASE_DIR)
 TZCODE_STRIP_LEVEL	:= 0
 
-TZDATA_VERSION		:= 2018e
-TZDATA_MD5		:= 97d654f4d7253173b3eeb76a836dd65e
+TZDATA_VERSION		:= 2018f
+TZDATA_MD5		:= e5e84f00f9d18bd6ebc8b1affec91b15
 TZDATA			:= tzdata$(TZDATA_VERSION)
 TZDATA_SUFFIX		:= tar.gz
 TZDATA_URL		:= \
-- 
2.11.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [PATCH 2/2] tz: version bump 2018e -> 2018f
  2018-10-26  9:48 ` [ptxdist] [PATCH 2/2] tz: version bump 2018e -> 2018f Alexander Dahl
@ 2018-10-28  7:55   ` Alexander Dahl
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander Dahl @ 2018-10-28  7:55 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 1811 bytes --]

Meanwhile 2018g should be out, fixing some last minute timezone
changes. Some country decided two days before the date not to go back
to "winter time" again. Sigh.

A

On Fri, Oct 26, 2018 at 11:48:22AM +0200, Alexander Dahl wrote:
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> ---
>  rules/host-tz-database.make | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/rules/host-tz-database.make b/rules/host-tz-database.make
> index c15d0feb7..ad9bd4993 100644
> --- a/rules/host-tz-database.make
> +++ b/rules/host-tz-database.make
> @@ -20,8 +20,8 @@ HOST_PACKAGES-$(PTXCONF_HOST_TZ_DATABASE) += host-tz-database
>  HOST_TZ_DATABASE	:= tz-database
>  HOST_TZ_DATABASE_DIR	:= $(HOST_BUILDDIR)/$(HOST_TZ_DATABASE)
>  
> -TZCODE_VERSION		:= 2018e
> -TZCODE_MD5		:= c4d7df0fff7ba5588b32c5f27e2caf97
> +TZCODE_VERSION		:= 2018f
> +TZCODE_MD5		:= 011d394b70e6ee3823fd77010b99737f
>  TZCODE			:= tzcode$(TZCODE_VERSION)
>  TZCODE_SUFFIX		:= tar.gz
>  TZCODE_URL		:= \
> @@ -31,8 +31,8 @@ $(TZCODE_SOURCE)	:= TZCODE
>  TZCODE_DIR		:= $(HOST_TZ_DATABASE_DIR)
>  TZCODE_STRIP_LEVEL	:= 0
>  
> -TZDATA_VERSION		:= 2018e
> -TZDATA_MD5		:= 97d654f4d7253173b3eeb76a836dd65e
> +TZDATA_VERSION		:= 2018f
> +TZDATA_MD5		:= e5e84f00f9d18bd6ebc8b1affec91b15
>  TZDATA			:= tzdata$(TZDATA_VERSION)
>  TZDATA_SUFFIX		:= tar.gz
>  TZDATA_URL		:= \
> -- 
> 2.11.0
> 
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

-- 
/"\ ASCII RIBBON | »With the first link, the chain is forged. The first
\ / CAMPAIGN     | speech censured, the first thought forbidden, the
 X  AGAINST      | first freedom denied, chains us all irrevocably.«
/ \ HTML MAIL    | (Jean-Luc Picard, quoting Judge Aaron Satie)

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-10-28  7:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-26  9:48 [ptxdist] [PATCH 0/2] timezone update and a forgotten patch Alexander Dahl
2018-10-26  9:48 ` [ptxdist] [PATCH 1/2] timezone: Change default to empty string Alexander Dahl
2018-10-26  9:48 ` [ptxdist] [PATCH 2/2] tz: version bump 2018e -> 2018f Alexander Dahl
2018-10-28  7:55   ` Alexander Dahl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox