* [Buildroot] [RFC PATCH 1/1] package/googlefontdirectory: change to google repo
@ 2019-01-17 21:14 Bartosz Bilas
2019-02-06 13:10 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Bartosz Bilas @ 2019-01-17 21:14 UTC (permalink / raw)
To: buildroot
As because the current repository doesn't support new fonts
we need to change it to the new one official google github repository
which contains a lot of new available fonts.
Note: There are some things to improve like license files
because in the new repository every directory with font
contains separate license file however I have no idea
how to do it in proper way.
Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
---
.../googlefontdirectory.hash | 2 +-
.../googlefontdirectory.mk | 23 +++++++++++--------
2 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/package/googlefontdirectory/googlefontdirectory.hash b/package/googlefontdirectory/googlefontdirectory.hash
index 6b15b2b8b7..e77ee3d7cb 100644
--- a/package/googlefontdirectory/googlefontdirectory.hash
+++ b/package/googlefontdirectory/googlefontdirectory.hash
@@ -1,2 +1,2 @@
# Locally calculated
-sha256 8a7d04feef21fdfc09d90cd3e2c0c05dcb2fdd4e15f971e8ceaf4d90c1c123cd googlewebfonts.tgz
+sha256 ec2ddbeee673cce1b0796e3b20fbff5fd836ce9ba6d88deed8b59154fa255f06 googlefontdirectory-94dff3eaa9301b6640cccc63c56d6ff33d82882c.tar.gz
diff --git a/package/googlefontdirectory/googlefontdirectory.mk b/package/googlefontdirectory/googlefontdirectory.mk
index c34de3b0fe..3a78b0588b 100644
--- a/package/googlefontdirectory/googlefontdirectory.mk
+++ b/package/googlefontdirectory/googlefontdirectory.mk
@@ -4,20 +4,25 @@
#
################################################################################
-GOOGLEFONTDIRECTORY_SITE = \
- https://s3.amazonaws.com/joemaller_google_webfonts
-GOOGLEFONTDIRECTORY_SOURCE = googlewebfonts.tgz
-GOOGLEFONTDIRECTORY_LICENSE = OFL-1.1
+GOOGLEFONTDIRECTORY_VERSION = 94dff3eaa9301b6640cccc63c56d6ff33d82882c
+GOOGLEFONTDIRECTORY_SITE = $(call github,google,fonts,$(GOOGLEFONTDIRECTORY_VERSION))
+GOOGLEFONTDIRECTORY_LICENSE = OFL-1.1 (ofl) Apache-2.0 (apache) UFL-1.0 (ufl)
+GOOGLEFONTDIRECTORY_LICENSE_FILES = LICENCE OFL
+GOOGLEFONTDIRECTORY_DIRECTORIES_LIST = apache ofl ufl
GOOGLEFONTDIRECTORY_FONTS = \
$(call qstrip,$(BR2_PACKAGE_GOOGLEFONTDIRECTORY_FONTS))
define GOOGLEFONTDIRECTORY_INSTALL_TARGET_CMDS
- for i in $(GOOGLEFONTDIRECTORY_FONTS); \
- do \
- $(INSTALL) -d $(TARGET_DIR)/usr/share/fonts/$$i && \
- $(INSTALL) -m 0644 -t $(TARGET_DIR)/usr/share/fonts/$$i $(@D)/$$i/*.ttf || exit 1; \
- done
+ $(foreach d,$(GOOGLEFONTDIRECTORY_DIRECTORIES_LIST),\
+ for i in $(GOOGLEFONTDIRECTORY_FONTS); \
+ do \
+ if font -d $(@D)/$(d)/$$i ; then \
+ $(INSTALL) -d $(TARGET_DIR)/usr/share/fonts/$$i && \
+ $(INSTALL) -m 0644 -t $(TARGET_DIR)/usr/share/fonts/$$i $(@D)/$(d)/$$i/*.ttf ; \
+ fi \
+ done
+ )
endef
$(eval $(generic-package))
--
2.20.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [RFC PATCH 1/1] package/googlefontdirectory: change to google repo
2019-01-17 21:14 [Buildroot] [RFC PATCH 1/1] package/googlefontdirectory: change to google repo Bartosz Bilas
@ 2019-02-06 13:10 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2019-02-06 13:10 UTC (permalink / raw)
To: buildroot
Hello,
On Thu, 17 Jan 2019 22:14:22 +0100
Bartosz Bilas <b.bilas@grinn-global.com> wrote:
> As because the current repository doesn't support new fonts
> we need to change it to the new one official google github repository
> which contains a lot of new available fonts.
>
> Note: There are some things to improve like license files
> because in the new repository every directory with font
> contains separate license file however I have no idea
> how to do it in proper way.
>
> Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
> ---
> .../googlefontdirectory.hash | 2 +-
> .../googlefontdirectory.mk | 23 +++++++++++--------
> 2 files changed, 15 insertions(+), 10 deletions(-)
So, I've applied, but after doing a fair number of changes.
First, I've changed the semantic of the
BR2_PACKAGE_GOOGLEFONTDIRECTORY_FONTS so that the value it contains
look like ufl/ubuntu, ofl/marvel, etc. rather than just the font name.
Thanks to that, the installation logic could be simplified, and I could
come up with a solution for the LICENSE and LICENSE_FILES variables.
The solution looks like this:
+ifneq ($(filter apache/%,$(GOOGLEFONTDIRECTORY_FONTS)),)
+GOOGLEFONTDIRECTORY_LICENSE += Apache-2.0
+GOOGLEFONTDIRECTORY_LICENSE_FILES += $(addsuffix /LICENSE.txt,$(filter apache/%,$(GOOGLEFONTDIRECTORY_FONTS)))
+endif
+
+ifneq ($(filter ofl/%,$(GOOGLEFONTDIRECTORY_FONTS)),)
+GOOGLEFONTDIRECTORY_LICENSE += OFL-1.1
+GOOGLEFONTDIRECTORY_LICENSE_FILES += $(addsuffix /OFL.txt,$(filter ofl/%,$(GOOGLEFONTDIRECTORY_FONTS)))
+endif
+
+ifneq ($(filter ufl/%,$(GOOGLEFONTDIRECTORY_FONTS)),)
+GOOGLEFONTDIRECTORY_LICENSE += UFL-1.1
+GOOGLEFONTDIRECTORY_LICENSE_FILES += $(addsuffix /LICENCE.txt,$(filter ufl/%,$(GOOGLEFONTDIRECTORY_FONTS)))
+endif
+
+GOOGLEFONTDIRECTORY_LICENSE := $(subst $(space),$(comma)$(space),$(GOOGLEFONTDIRECTORY_LICENSE))
It's a bit tricky, but it works :-)
I've also changed the .hash file to contain the hashes of all the
license files.
Best regards,
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-02-06 13:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-17 21:14 [Buildroot] [RFC PATCH 1/1] package/googlefontdirectory: change to google repo Bartosz Bilas
2019-02-06 13:10 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox