All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/tzdata: do extract to get the license file
@ 2020-04-27 20:36 Yann E. MORIN
  2020-04-27 20:49 ` Thomas Petazzoni
  2020-05-10 17:58 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Yann E. MORIN @ 2020-04-27 20:36 UTC (permalink / raw)
  To: buildroot

Back in 2014, about 6 years ago now, in my inifinite wisdom, I
decided that extracting the tzdata source was not nwcessary for
the target variant, because we would be installing the files
generated by the host variant, in commit 7aad5daa5d (package/tzdata:
only compile the zoneinfo once).

However, that did not account for the fact that we would eventually
like to have the licensing information for tzdata, later added in
2019, in commit 60889ccdf0 (package/tzdata: bump to version 2019b).

However, that last comit only added the license file to the host
variant, without explanations why that was so. It turns out that the
reason it was not added to the target variant is, probably, that he
source code for the target variant is not extracted, and thus saving
the license file fails.

But we really want the license file for what goes on into the target.

So, do extract the source code for the target variant, even if only to
get the license file.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Richard Braun <rbraun@sceen.net>
Cc: Martin Bark <martin@barkynet.com>
Cc: Christopher McCrory <chrismcc@gmail.com>
---
 package/tzdata/tzdata.mk | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/package/tzdata/tzdata.mk b/package/tzdata/tzdata.mk
index b405f895cd..114d60195e 100644
--- a/package/tzdata/tzdata.mk
+++ b/package/tzdata/tzdata.mk
@@ -11,7 +11,7 @@ TZDATA_STRIP_COMPONENTS = 0
 TZDATA_DEPENDENCIES = host-tzdata
 HOST_TZDATA_DEPENDENCIES = host-zic
 TZDATA_LICENSE = Public domain
-HOST_TZDATA_LICENSE_FILES = LICENSE
+TZDATA_LICENSE_FILES = LICENSE
 
 # Take care when re-ordering this list since this might break zone
 # dependencies
@@ -38,9 +38,6 @@ define TZDATA_SET_LOCALTIME
 endef
 endif
 
-# No need to extract for target, we're using the host-installed files
-TZDATA_EXTRACT_CMDS =
-
 define TZDATA_INSTALL_TARGET_CMDS
 	$(INSTALL) -d -m 0755 $(TARGET_DIR)/usr/share/zoneinfo
 	cp -a $(HOST_DIR)/share/zoneinfo/* $(TARGET_DIR)/usr/share/zoneinfo
-- 
2.20.1

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

* [Buildroot] [PATCH] package/tzdata: do extract to get the license file
  2020-04-27 20:36 [Buildroot] [PATCH] package/tzdata: do extract to get the license file Yann E. MORIN
@ 2020-04-27 20:49 ` Thomas Petazzoni
  2020-05-10 17:58 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2020-04-27 20:49 UTC (permalink / raw)
  To: buildroot

On Mon, 27 Apr 2020 22:36:08 +0200
"Yann E. MORIN" <yann.morin.1998@free.fr> wrote:

> Back in 2014, about 6 years ago now, in my inifinite wisdom, I
> decided that extracting the tzdata source was not nwcessary for
> the target variant, because we would be installing the files
> generated by the host variant, in commit 7aad5daa5d (package/tzdata:
> only compile the zoneinfo once).
> 
> However, that did not account for the fact that we would eventually
> like to have the licensing information for tzdata, later added in
> 2019, in commit 60889ccdf0 (package/tzdata: bump to version 2019b).
> 
> However, that last comit only added the license file to the host
> variant, without explanations why that was so. It turns out that the
> reason it was not added to the target variant is, probably, that he
> source code for the target variant is not extracted, and thus saving
> the license file fails.
> 
> But we really want the license file for what goes on into the target.
> 
> So, do extract the source code for the target variant, even if only to
> get the license file.
> 
> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
> Cc: Richard Braun <rbraun@sceen.net>
> Cc: Martin Bark <martin@barkynet.com>
> Cc: Christopher McCrory <chrismcc@gmail.com>
> ---
>  package/tzdata/tzdata.mk | 5 +----
>  1 file changed, 1 insertion(+), 4 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH] package/tzdata: do extract to get the license file
  2020-04-27 20:36 [Buildroot] [PATCH] package/tzdata: do extract to get the license file Yann E. MORIN
  2020-04-27 20:49 ` Thomas Petazzoni
@ 2020-05-10 17:58 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2020-05-10 17:58 UTC (permalink / raw)
  To: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > Back in 2014, about 6 years ago now, in my inifinite wisdom, I
 > decided that extracting the tzdata source was not nwcessary for
 > the target variant, because we would be installing the files
 > generated by the host variant, in commit 7aad5daa5d (package/tzdata:
 > only compile the zoneinfo once).

 > However, that did not account for the fact that we would eventually
 > like to have the licensing information for tzdata, later added in
 > 2019, in commit 60889ccdf0 (package/tzdata: bump to version 2019b).

 > However, that last comit only added the license file to the host
 > variant, without explanations why that was so. It turns out that the
 > reason it was not added to the target variant is, probably, that he
 > source code for the target variant is not extracted, and thus saving
 > the license file fails.

 > But we really want the license file for what goes on into the target.

 > So, do extract the source code for the target variant, even if only to
 > get the license file.

 > Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
 > Cc: Richard Braun <rbraun@sceen.net>
 > Cc: Martin Bark <martin@barkynet.com>
 > Cc: Christopher McCrory <chrismcc@gmail.com>

Committed to 2020.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-05-10 17:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-27 20:36 [Buildroot] [PATCH] package/tzdata: do extract to get the license file Yann E. MORIN
2020-04-27 20:49 ` Thomas Petazzoni
2020-05-10 17:58 ` Peter Korsgaard

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.