All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Added Europe/Berlin timezone to tzdata pkg
@ 2011-01-16  0:45 Lars Michelsen
  2011-01-16 11:47 ` Paul Menzel
  2011-01-16 12:04 ` Koen Kooi
  0 siblings, 2 replies; 5+ messages in thread
From: Lars Michelsen @ 2011-01-16  0:45 UTC (permalink / raw)
  To: openembedded-devel

I was missing the Europe/Berlin timezone in the tzdata package. So I
added it to the package.

Additionally increased the PR. Hope this OK for such a change - must
admit that I am very new to OE.

Signed-off-by: Lars Michelsen <lm@larsmichelsen.com>
---
 recipes/tzdata/tzdata.inc |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/recipes/tzdata/tzdata.inc b/recipes/tzdata/tzdata.inc
index dd5c2c9..5597232 100644
--- a/recipes/tzdata/tzdata.inc
+++ b/recipes/tzdata/tzdata.inc
@@ -3,7 +3,7 @@ SECTION = "base"
 PRIORITY = "optional"
 DEPENDS = "tzcode-native"
 
-INC_PR = "r8"
+INC_PR = "r9"
 
 DEFAULT_TIMEZONE ?= "Europe/London"
 
@@ -132,6 +132,7 @@ FILES_${PN} += "${datadir}/zoneinfo/Pacific/Honolulu     \
                 ${datadir}/zoneinfo/America/Sao_Paulo    \
                 ${datadir}/zoneinfo/Europe/London        \
                 ${datadir}/zoneinfo/Europe/Paris         \
+                ${datadir}/zoneinfo/Europe/Berlin        \
                 ${datadir}/zoneinfo/Africa/Cairo         \
                 ${datadir}/zoneinfo/Europe/Moscow        \
                 ${datadir}/zoneinfo/Asia/Dubai           \
-- 
1.7.1




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

* Re: [PATCH] Added Europe/Berlin timezone to tzdata pkg
  2011-01-16  0:45 [PATCH] Added Europe/Berlin timezone to tzdata pkg Lars Michelsen
@ 2011-01-16 11:47 ` Paul Menzel
  2011-01-21 20:30   ` Lars Michelsen
  2011-01-16 12:04 ` Koen Kooi
  1 sibling, 1 reply; 5+ messages in thread
From: Paul Menzel @ 2011-01-16 11:47 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1284 bytes --]

Dear Lars,


Am Sonntag, den 16.01.2011, 01:45 +0100 schrieb Lars Michelsen:
> I was missing the Europe/Berlin timezone in the tzdata package. So I
> added it to the package.
> 
> Additionally increased the PR. Hope this OK for such a change - must
> admit that I am very new to OE.

thank you very much for your patch and welcome to OE.

Could you please resend your patch (`[PATCH v2]`) with the following two
points addressed.

1. The commit summary is standardized and should start with the package
name as documented in the commit policy [1].

	tzdata: package `Europe/Berlin` timezone

2. Although it probably does not matter, commit messages are normally
written from a neutral view point(?) and personal comments are added
after a `---` before the diff which starts also with `---`. When
applying your patch, these remarks are left out then.

> Signed-off-by: Lars Michelsen <lm@larsmichelsen.com>

[…]

With these two issues addressed you can add

Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>

to the commit message when resending.


Thanks,

Paul


[1] http://wiki.openembedded.org/index.php/Commit_Policy
[2] http://wiki.openembedded.org/index.php/How_to_submit_a_patch_to_OpenEmbedded#Create_and_Commit_your_patch

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH] Added Europe/Berlin timezone to tzdata pkg
  2011-01-16  0:45 [PATCH] Added Europe/Berlin timezone to tzdata pkg Lars Michelsen
  2011-01-16 11:47 ` Paul Menzel
@ 2011-01-16 12:04 ` Koen Kooi
  2011-01-21 20:32   ` Lars Michelsen
  1 sibling, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2011-01-16 12:04 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 16-01-11 01:45, Lars Michelsen wrote:
> I was missing the Europe/Berlin timezone in the tzdata package. So I
> added it to the package.

NAK! The main tzdate package is kept as small as possible, only
packaging one tz per continent.

If we look at your patch:

>                  ${datadir}/zoneinfo/Europe/Paris         \
> +                ${datadir}/zoneinfo/Europe/Berlin        \

We see you are adding Berlin right below Paris, which is the same TZ
with the same DST rules.

So if you only want to install tzdata and want to have 'date' show the
correct time, use Europe/Paris. If you nationalism prevents you from
doing that and you have some space left in your rootfs, install
'tzdata-europe' :)

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFNMt6zMkyGM64RGpERApd6AJ9Qz6A/MXfQY3yJq+eGUB5s7+4+IACeIjLQ
uq7sMCxdkcbyZPKabJO+kck=
=0NoX
-----END PGP SIGNATURE-----




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

* Re: [PATCH] Added Europe/Berlin timezone to tzdata pkg
  2011-01-16 11:47 ` Paul Menzel
@ 2011-01-21 20:30   ` Lars Michelsen
  0 siblings, 0 replies; 5+ messages in thread
From: Lars Michelsen @ 2011-01-21 20:30 UTC (permalink / raw)
  To: openembedded-devel

Hello Paul,

On 16/01/11 12:47, Paul Menzel wrote:
> Dear Lars,
>
>
> Am Sonntag, den 16.01.2011, 01:45 +0100 schrieb Lars Michelsen:
>> I was missing the Europe/Berlin timezone in the tzdata package. So I
>> added it to the package.
>>
>> Additionally increased the PR. Hope this OK for such a change - must
>> admit that I am very new to OE.
>
> thank you very much for your patch and welcome to OE.
>
> Could you please resend your patch (`[PATCH v2]`) with the following two
> points addressed.
>
> 1. The commit summary is standardized and should start with the package
> name as documented in the commit policy [1].
>
> 	tzdata: package `Europe/Berlin` timezone
>
> 2. Although it probably does not matter, commit messages are normally
> written from a neutral view point(?) and personal comments are added
> after a `---` before the diff which starts also with `---`. When
> applying your patch, these remarks are left out then.

Thanks for the information. I'll do so on my next postings.

But after the post of Koen I am unsure if I should resubmit this patch. 
My intend was to fix my time, setting the TZ to Europe/Paris fixes this 
and is absolutely ok for me. Other thoughts?

Regards,
Lars



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

* Re: [PATCH] Added Europe/Berlin timezone to tzdata pkg
  2011-01-16 12:04 ` Koen Kooi
@ 2011-01-21 20:32   ` Lars Michelsen
  0 siblings, 0 replies; 5+ messages in thread
From: Lars Michelsen @ 2011-01-21 20:32 UTC (permalink / raw)
  To: openembedded-devel

Hello Koen,

On 16/01/11 13:04, Koen Kooi wrote:
> We see you are adding Berlin right below Paris, which is the same TZ
> with the same DST rules.
>
> So if you only want to install tzdata and want to have 'date' show the
> correct time, use Europe/Paris. If you nationalism prevents you from
> doing that and you have some space left in your rootfs, install
> 'tzdata-europe' :)

Well, thanks for the hint. I am new to OE and need to get a feeling for 
the priorities. If the size is that important it is OK for me.

Even didn't know that the DST is exactly the same. My intend was to fix 
my local time and when it can be fixed with Europe/Paris I have no 
problem with it.

Regards,
Lars




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

end of thread, other threads:[~2011-01-21 20:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-16  0:45 [PATCH] Added Europe/Berlin timezone to tzdata pkg Lars Michelsen
2011-01-16 11:47 ` Paul Menzel
2011-01-21 20:30   ` Lars Michelsen
2011-01-16 12:04 ` Koen Kooi
2011-01-21 20:32   ` Lars Michelsen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.