All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license
@ 2017-04-01 19:06 Rahul Bedarkar
  2017-04-01 19:06 ` [Buildroot] [PATCH 2/9] package: use SPDX short identifier for libpng license Rahul Bedarkar
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Rahul Bedarkar @ 2017-04-01 19:06 UTC (permalink / raw)
  To: buildroot

We want to use SPDX identifier for license string as much as possible.
SPDX short identifier for OFLv1.0/OFLv1.1 is OFL-1.0/OFL-1.1.

This change is done using following command.
find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/OFLv([1]\.[0-1])/OFL-\1/g'

Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
---
 package/cantarell/cantarell.mk                     | 2 +-
 package/font-awesome/font-awesome.mk               | 2 +-
 package/googlefontdirectory/googlefontdirectory.mk | 2 +-
 package/inconsolata/inconsolata.mk                 | 2 +-
 package/liberation/liberation.mk                   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/package/cantarell/cantarell.mk b/package/cantarell/cantarell.mk
index 3cdf600..2769b35 100644
--- a/package/cantarell/cantarell.mk
+++ b/package/cantarell/cantarell.mk
@@ -9,7 +9,7 @@ CANTARELL_VERSION = $(CANTARELL_VERSION_MAJOR).25
 CANTARELL_SITE = http://ftp.gnome.org/pub/gnome/sources/cantarell-fonts/$(CANTARELL_VERSION_MAJOR)
 CANTARELL_SOURCE = cantarell-fonts-$(CANTARELL_VERSION).tar.xz
 CANTARELL_DEPENDENCIES = host-pkgconf
-CANTARELL_LICENSE = OFLv1.1
+CANTARELL_LICENSE = OFL-1.1
 CANTARELL_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
diff --git a/package/font-awesome/font-awesome.mk b/package/font-awesome/font-awesome.mk
index 3d2ccca..8933783 100644
--- a/package/font-awesome/font-awesome.mk
+++ b/package/font-awesome/font-awesome.mk
@@ -6,7 +6,7 @@
 
 FONT_AWESOME_VERSION = v4.5.0
 FONT_AWESOME_SITE = $(call github,FortAwesome,Font-Awesome,$(FONT_AWESOME_VERSION))
-FONT_AWESOME_LICENSE = OFLv1.1 (font), MIT (CSS, LESS and Sass files)
+FONT_AWESOME_LICENSE = OFL-1.1 (font), MIT (CSS, LESS and Sass files)
 FONT_AWESOME_DIRECTORIES_LIST = css fonts less scss
 
 define FONT_AWESOME_INSTALL_TARGET_CMDS
diff --git a/package/googlefontdirectory/googlefontdirectory.mk b/package/googlefontdirectory/googlefontdirectory.mk
index 0e60892..c34de3b 100644
--- a/package/googlefontdirectory/googlefontdirectory.mk
+++ b/package/googlefontdirectory/googlefontdirectory.mk
@@ -7,7 +7,7 @@
 GOOGLEFONTDIRECTORY_SITE = \
 	https://s3.amazonaws.com/joemaller_google_webfonts
 GOOGLEFONTDIRECTORY_SOURCE = googlewebfonts.tgz
-GOOGLEFONTDIRECTORY_LICENSE = OFLv1.1
+GOOGLEFONTDIRECTORY_LICENSE = OFL-1.1
 
 GOOGLEFONTDIRECTORY_FONTS = \
 	$(call qstrip,$(BR2_PACKAGE_GOOGLEFONTDIRECTORY_FONTS))
diff --git a/package/inconsolata/inconsolata.mk b/package/inconsolata/inconsolata.mk
index 2f53b98..3fe3895 100644
--- a/package/inconsolata/inconsolata.mk
+++ b/package/inconsolata/inconsolata.mk
@@ -8,7 +8,7 @@ INCONSOLATA_VERSION = 001.010
 INCONSOLATA_SITE = http://snapshot.debian.org/archive/debian/20090524T155154Z/pool/main/t/ttf-inconsolata
 INCONSOLATA_SOURCE = ttf-inconsolata_$(INCONSOLATA_VERSION).orig.tar.gz
 INCONSOLATA_TARGET_DIR = $(TARGET_DIR)/usr/share/fonts/inconsolata
-INCONSOLATA_LICENSE = OFLv1.0
+INCONSOLATA_LICENSE = OFL-1.0
 INCONSOLATA_LICENSE_FILES = OFL.txt
 
 define INCONSOLATA_INSTALL_TARGET_CMDS
diff --git a/package/liberation/liberation.mk b/package/liberation/liberation.mk
index a77c014..cabee17 100644
--- a/package/liberation/liberation.mk
+++ b/package/liberation/liberation.mk
@@ -8,7 +8,7 @@ LIBERATION_VERSION = 2.00.1
 LIBERATION_SITE = https://releases.pagure.org/liberation-fonts
 LIBERATION_SOURCE = liberation-fonts-ttf-$(LIBERATION_VERSION).tar.gz
 LIBERATION_TARGET_DIR = $(TARGET_DIR)/usr/share/fonts/liberation
-LIBERATION_LICENSE = OFLv1.1
+LIBERATION_LICENSE = OFL-1.1
 LIBERATION_LICENSE_FILES = LICENSE
 
 ifeq ($(BR2_PACKAGE_LIBERATION_MONO),y)
-- 
2.7.4

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

end of thread, other threads:[~2017-04-01 20:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-01 19:06 [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license Rahul Bedarkar
2017-04-01 19:06 ` [Buildroot] [PATCH 2/9] package: use SPDX short identifier for libpng license Rahul Bedarkar
2017-04-01 19:06 ` [Buildroot] [PATCH 3/9] libraw: use SPDX short identifier for CDDL license Rahul Bedarkar
2017-04-01 19:06 ` [Buildroot] [PATCH 4/9] package: use SPDX short identifier for ZPL license Rahul Bedarkar
2017-04-01 19:06 ` [Buildroot] [PATCH 5/9] wpan-tools: correct license name Rahul Bedarkar
2017-04-01 19:06 ` [Buildroot] [PATCH 6/9] ntp: use SPDX short identifier for ntp license Rahul Bedarkar
2017-04-01 19:06 ` [Buildroot] [PATCH 7/9] python-nfc: use SPDX short identifier for EUPL license Rahul Bedarkar
2017-04-01 19:06 ` [Buildroot] [PATCH 8/9] package: use SPDX short identifier for EPL license Rahul Bedarkar
2017-04-01 19:06 ` [Buildroot] [PATCH 9/9] php: add version to license string Rahul Bedarkar
2017-04-01 20:40 ` [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license Thomas Petazzoni

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.