Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] freetype: legal-info: include docs/LICENSE.TXT
@ 2017-04-07 14:28 Peter Korsgaard
  2017-04-07 14:28 ` [Buildroot] [PATCH 2/2] icu: legal-info: refer to the real license file Peter Korsgaard
  2017-04-07 18:06 ` [Buildroot] [PATCH 1/2] freetype: legal-info: include docs/LICENSE.TXT Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Peter Korsgaard @ 2017-04-07 14:28 UTC (permalink / raw)
  To: buildroot

LICENSE.TXT gives an overview and explains in detail that freetype is dual
licensed under the FTL and GPLv2+, so also include it in the license files.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/freetype/freetype.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/freetype/freetype.mk b/package/freetype/freetype.mk
index da9e900e8..57f9b2048 100644
--- a/package/freetype/freetype.mk
+++ b/package/freetype/freetype.mk
@@ -10,7 +10,7 @@ FREETYPE_SITE = http://download.savannah.gnu.org/releases/freetype
 FREETYPE_INSTALL_STAGING = YES
 FREETYPE_MAKE_OPTS = CCexe="$(HOSTCC)"
 FREETYPE_LICENSE = Dual FTL/GPL-2.0+
-FREETYPE_LICENSE_FILES = docs/FTL.TXT docs/GPLv2.TXT
+FREETYPE_LICENSE_FILES = docs/LICENSE.TXT docs/FTL.TXT docs/GPLv2.TXT
 FREETYPE_DEPENDENCIES = host-pkgconf
 FREETYPE_CONFIG_SCRIPTS = freetype-config
 
-- 
2.11.0

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

* [Buildroot] [PATCH 2/2] icu: legal-info: refer to the real license file
  2017-04-07 14:28 [Buildroot] [PATCH 1/2] freetype: legal-info: include docs/LICENSE.TXT Peter Korsgaard
@ 2017-04-07 14:28 ` Peter Korsgaard
  2017-04-07 18:06 ` [Buildroot] [PATCH 1/2] freetype: legal-info: include docs/LICENSE.TXT Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2017-04-07 14:28 UTC (permalink / raw)
  To: buildroot

License.html now just contains the string:

The ICU license is now in plain text format, see <a href="./LICENSE">LICENSE</a>.
Update links and software appropriately.

So refer directly to that file instead.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/icu/icu.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/icu/icu.mk b/package/icu/icu.mk
index b9e42de94..a435e471a 100644
--- a/package/icu/icu.mk
+++ b/package/icu/icu.mk
@@ -8,7 +8,7 @@ ICU_VERSION = 58.2
 ICU_SOURCE = icu4c-$(subst .,_,$(ICU_VERSION))-src.tgz
 ICU_SITE = http://download.icu-project.org/files/icu4c/$(ICU_VERSION)
 ICU_LICENSE = ICU License
-ICU_LICENSE_FILES = license.html
+ICU_LICENSE_FILES = LICENSE
 
 ICU_DEPENDENCIES = host-icu
 ICU_INSTALL_STAGING = YES
-- 
2.11.0

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

* [Buildroot] [PATCH 1/2] freetype: legal-info: include docs/LICENSE.TXT
  2017-04-07 14:28 [Buildroot] [PATCH 1/2] freetype: legal-info: include docs/LICENSE.TXT Peter Korsgaard
  2017-04-07 14:28 ` [Buildroot] [PATCH 2/2] icu: legal-info: refer to the real license file Peter Korsgaard
@ 2017-04-07 18:06 ` Thomas Petazzoni
  2017-04-24 19:16   ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2017-04-07 18:06 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri,  7 Apr 2017 16:28:58 +0200, Peter Korsgaard wrote:
> LICENSE.TXT gives an overview and explains in detail that freetype is dual
> licensed under the FTL and GPLv2+, so also include it in the license files.
> 
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
>  package/freetype/freetype.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Both applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 1/2] freetype: legal-info: include docs/LICENSE.TXT
  2017-04-07 18:06 ` [Buildroot] [PATCH 1/2] freetype: legal-info: include docs/LICENSE.TXT Thomas Petazzoni
@ 2017-04-24 19:16   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2017-04-24 19:16 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > Hello,
 > On Fri,  7 Apr 2017 16:28:58 +0200, Peter Korsgaard wrote:
 >> LICENSE.TXT gives an overview and explains in detail that freetype is dual
 >> licensed under the FTL and GPLv2+, so also include it in the license files.
 >> 
 >> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
 >> ---
 >> package/freetype/freetype.mk | 2 +-
 >> 1 file changed, 1 insertion(+), 1 deletion(-)

 > Both applied. Thanks!

Both committed to 2017.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2017-04-24 19:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-07 14:28 [Buildroot] [PATCH 1/2] freetype: legal-info: include docs/LICENSE.TXT Peter Korsgaard
2017-04-07 14:28 ` [Buildroot] [PATCH 2/2] icu: legal-info: refer to the real license file Peter Korsgaard
2017-04-07 18:06 ` [Buildroot] [PATCH 1/2] freetype: legal-info: include docs/LICENSE.TXT Thomas Petazzoni
2017-04-24 19:16   ` Peter Korsgaard

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