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

* [Buildroot] [PATCH 2/9] package: use SPDX short identifier for libpng license
  2017-04-01 19:06 [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license Rahul Bedarkar
@ 2017-04-01 19:06 ` Rahul Bedarkar
  2017-04-01 19:06 ` [Buildroot] [PATCH 3/9] libraw: use SPDX short identifier for CDDL license Rahul Bedarkar
                   ` (7 subsequent siblings)
  8 siblings, 0 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 libpng license is Libpng.

Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
---
 package/libpng/libpng.mk             | 2 +-
 package/python-pysmb/python-pysmb.mk | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libpng/libpng.mk b/package/libpng/libpng.mk
index c562965..2491157 100644
--- a/package/libpng/libpng.mk
+++ b/package/libpng/libpng.mk
@@ -8,7 +8,7 @@ LIBPNG_VERSION = 1.6.28
 LIBPNG_SERIES = 16
 LIBPNG_SOURCE = libpng-$(LIBPNG_VERSION).tar.xz
 LIBPNG_SITE = http://downloads.sourceforge.net/project/libpng/libpng${LIBPNG_SERIES}/$(LIBPNG_VERSION)
-LIBPNG_LICENSE = libpng license
+LIBPNG_LICENSE = Libpng
 LIBPNG_LICENSE_FILES = LICENSE
 LIBPNG_INSTALL_STAGING = YES
 LIBPNG_DEPENDENCIES = host-pkgconf zlib
diff --git a/package/python-pysmb/python-pysmb.mk b/package/python-pysmb/python-pysmb.mk
index 49d7c30..1b4c187 100644
--- a/package/python-pysmb/python-pysmb.mk
+++ b/package/python-pysmb/python-pysmb.mk
@@ -7,7 +7,7 @@
 PYTHON_PYSMB_VERSION = 1.1.19
 PYTHON_PYSMB_SOURCE = pysmb-$(PYTHON_PYSMB_VERSION).tar.gz
 PYTHON_PYSMB_SITE = https://pypi.python.org/packages/f9/e7/1fd7faaa946cc6b43ce85bb7a177b75a4718d9c5e291201fec00112b497c
-PYTHON_PYSMB_LICENSE = libpng license
+PYTHON_PYSMB_LICENSE = Libpng
 PYTHON_PYSMB_LICENSE_FILES = LICENSE
 PYTHON_PYSMB_SETUP_TYPE = setuptools
 
-- 
2.7.4

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

* [Buildroot] [PATCH 3/9] libraw: use SPDX short identifier for CDDL license
  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 ` Rahul Bedarkar
  2017-04-01 19:06 ` [Buildroot] [PATCH 4/9] package: use SPDX short identifier for ZPL license Rahul Bedarkar
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Rahul Bedarkar @ 2017-04-01 19:06 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
---
 package/libraw/libraw.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/libraw/libraw.mk b/package/libraw/libraw.mk
index bb8edf7..589ff89 100644
--- a/package/libraw/libraw.mk
+++ b/package/libraw/libraw.mk
@@ -18,7 +18,7 @@ LIBRAW_CONF_OPTS += \
 	--disable-openmp \
 	--disable-demosaic-pack-gpl2 \
 	--disable-demosaic-pack-gpl3
-LIBRAW_LICENSE = LGPL-2.1 or CDDL 1.0 or LibRaw Software License 27032010
+LIBRAW_LICENSE = LGPL-2.1 or CDDL-1.0 or LibRaw Software License 27032010
 LIBRAW_LICENSE_FILES = LICENSE.LGPL LICENSE.CDDL LICENSE.LibRaw.pdf README
 LIBRAW_DEPENDENCIES = host-pkgconf
 LIBRAW_CXXFLAGS = $(TARGET_CXXFLAGS)
-- 
2.7.4

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

* [Buildroot] [PATCH 4/9] package: use SPDX short identifier for ZPL license
  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 ` Rahul Bedarkar
  2017-04-01 19:06 ` [Buildroot] [PATCH 5/9] wpan-tools: correct license name Rahul Bedarkar
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Rahul Bedarkar @ 2017-04-01 19:06 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
---
 package/python-meld3/python-meld3.mk                   | 2 +-
 package/python-zope-interface/python-zope-interface.mk | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/python-meld3/python-meld3.mk b/package/python-meld3/python-meld3.mk
index 529425c..675478e 100644
--- a/package/python-meld3/python-meld3.mk
+++ b/package/python-meld3/python-meld3.mk
@@ -7,7 +7,7 @@
 PYTHON_MELD3_VERSION = 1.0.2
 PYTHON_MELD3_SOURCE = meld3-$(PYTHON_MELD3_VERSION).tar.gz
 PYTHON_MELD3_SITE = https://pypi.python.org/packages/45/a0/317c6422b26c12fe0161e936fc35f36552069ba8e6f7ecbd99bbffe32a5f
-PYTHON_MELD3_LICENSE = ZPLv2.1
+PYTHON_MELD3_LICENSE = ZPL-2.1
 PYTHON_MELD3_LICENSE_FILES = COPYRIGHT.txt LICENSE.txt
 PYTHON_MELD3_SETUP_TYPE = setuptools
 
diff --git a/package/python-zope-interface/python-zope-interface.mk b/package/python-zope-interface/python-zope-interface.mk
index 3e3b464..cef86cf 100644
--- a/package/python-zope-interface/python-zope-interface.mk
+++ b/package/python-zope-interface/python-zope-interface.mk
@@ -8,7 +8,7 @@ PYTHON_ZOPE_INTERFACE_VERSION = 4.3.3
 PYTHON_ZOPE_INTERFACE_SOURCE = zope.interface-$(PYTHON_ZOPE_INTERFACE_VERSION).tar.gz
 PYTHON_ZOPE_INTERFACE_SITE = https://pypi.python.org/packages/44/af/cea1e18bc0d3be0e0824762d3236f0e61088eeed75287e7b854d65ec9916
 PYTHON_ZOPE_INTERFACE_SETUP_TYPE = setuptools
-PYTHON_ZOPE_INTERFACE_LICENSE = ZPLv2.1
+PYTHON_ZOPE_INTERFACE_LICENSE = ZPL-2.1
 PYTHON_ZOPE_INTERFACE_LICENSE_FILES = LICENSE.txt
 
 $(eval $(python-package))
-- 
2.7.4

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

* [Buildroot] [PATCH 5/9] wpan-tools: correct license name
  2017-04-01 19:06 [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license Rahul Bedarkar
                   ` (2 preceding siblings ...)
  2017-04-01 19:06 ` [Buildroot] [PATCH 4/9] package: use SPDX short identifier for ZPL license Rahul Bedarkar
@ 2017-04-01 19:06 ` Rahul Bedarkar
  2017-04-01 19:06 ` [Buildroot] [PATCH 6/9] ntp: use SPDX short identifier for ntp license Rahul Bedarkar
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Rahul Bedarkar @ 2017-04-01 19:06 UTC (permalink / raw)
  To: buildroot

iw license is ISC.

Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
---
 package/wpan-tools/wpan-tools.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/wpan-tools/wpan-tools.mk b/package/wpan-tools/wpan-tools.mk
index d223800..012b946 100644
--- a/package/wpan-tools/wpan-tools.mk
+++ b/package/wpan-tools/wpan-tools.mk
@@ -7,7 +7,7 @@
 WPAN_TOOLS_VERSION = 0.5
 WPAN_TOOLS_SITE = http://wpan.cakelab.org/releases
 WPAN_TOOLS_DEPENDENCIES = host-pkgconf libnl
-WPAN_TOOLS_LICENSE = iw license
+WPAN_TOOLS_LICENSE = ISC
 WPAN_TOOLS_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
-- 
2.7.4

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

* [Buildroot] [PATCH 6/9] ntp: use SPDX short identifier for ntp license
  2017-04-01 19:06 [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license Rahul Bedarkar
                   ` (3 preceding siblings ...)
  2017-04-01 19:06 ` [Buildroot] [PATCH 5/9] wpan-tools: correct license name Rahul Bedarkar
@ 2017-04-01 19:06 ` Rahul Bedarkar
  2017-04-01 19:06 ` [Buildroot] [PATCH 7/9] python-nfc: use SPDX short identifier for EUPL license Rahul Bedarkar
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Rahul Bedarkar @ 2017-04-01 19:06 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
---
 package/ntp/ntp.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/ntp/ntp.mk b/package/ntp/ntp.mk
index e3e53a8..cd6cb16 100644
--- a/package/ntp/ntp.mk
+++ b/package/ntp/ntp.mk
@@ -8,7 +8,7 @@ NTP_VERSION_MAJOR = 4.2
 NTP_VERSION = $(NTP_VERSION_MAJOR).8p10
 NTP_SITE = https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-$(NTP_VERSION_MAJOR)
 NTP_DEPENDENCIES = host-pkgconf libevent openssl $(if $(BR2_PACKAGE_BUSYBOX),busybox)
-NTP_LICENSE = ntp license
+NTP_LICENSE = NTP
 NTP_LICENSE_FILES = COPYRIGHT
 NTP_CONF_ENV = ac_cv_lib_md5_MD5Init=no
 NTP_CONF_OPTS = \
-- 
2.7.4

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

* [Buildroot] [PATCH 7/9] python-nfc: use SPDX short identifier for EUPL license
  2017-04-01 19:06 [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license Rahul Bedarkar
                   ` (4 preceding siblings ...)
  2017-04-01 19:06 ` [Buildroot] [PATCH 6/9] ntp: use SPDX short identifier for ntp license Rahul Bedarkar
@ 2017-04-01 19:06 ` Rahul Bedarkar
  2017-04-01 19:06 ` [Buildroot] [PATCH 8/9] package: use SPDX short identifier for EPL license Rahul Bedarkar
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Rahul Bedarkar @ 2017-04-01 19:06 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
---
 package/python-nfc/python-nfc.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/python-nfc/python-nfc.mk b/package/python-nfc/python-nfc.mk
index 87db577..574d2e5 100644
--- a/package/python-nfc/python-nfc.mk
+++ b/package/python-nfc/python-nfc.mk
@@ -9,6 +9,6 @@ PYTHON_NFC_SITE = https://launchpad.net/nfcpy
 PYTHON_NFC_SITE_METHOD = bzr
 PYTHON_NFC_DEPENDENCIES = libusb libusb-compat
 PYTHON_NFC_SETUP_TYPE = distutils
-PYTHON_NFC_LICENSE = EUPLv1.1+
+PYTHON_NFC_LICENSE = EUPL-1.1+
 
 $(eval $(python-package))
-- 
2.7.4

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

* [Buildroot] [PATCH 8/9] package: use SPDX short identifier for EPL license
  2017-04-01 19:06 [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license Rahul Bedarkar
                   ` (5 preceding siblings ...)
  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 ` 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
  8 siblings, 0 replies; 10+ messages in thread
From: Rahul Bedarkar @ 2017-04-01 19:06 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
---
 package/mosquitto/mosquitto.mk               | 2 +-
 package/python-paho-mqtt/python-paho-mqtt.mk | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/mosquitto/mosquitto.mk b/package/mosquitto/mosquitto.mk
index 96607f3..ddac153 100644
--- a/package/mosquitto/mosquitto.mk
+++ b/package/mosquitto/mosquitto.mk
@@ -6,7 +6,7 @@
 
 MOSQUITTO_VERSION = 1.4.10
 MOSQUITTO_SITE = http://mosquitto.org/files/source
-MOSQUITTO_LICENSE = EPLv1.0 or EDLv1.0
+MOSQUITTO_LICENSE = EPL-1.0 or EDLv1.0
 MOSQUITTO_LICENSE_FILES = LICENSE.txt epl-v10 edl-v10
 MOSQUITTO_INSTALL_STAGING = YES
 
diff --git a/package/python-paho-mqtt/python-paho-mqtt.mk b/package/python-paho-mqtt/python-paho-mqtt.mk
index d783a9c..f0c2729 100644
--- a/package/python-paho-mqtt/python-paho-mqtt.mk
+++ b/package/python-paho-mqtt/python-paho-mqtt.mk
@@ -7,7 +7,7 @@
 PYTHON_PAHO_MQTT_VERSION = 1.2
 PYTHON_PAHO_MQTT_SOURCE = paho-mqtt-$(PYTHON_PAHO_MQTT_VERSION).tar.gz
 PYTHON_PAHO_MQTT_SITE = https://pypi.python.org/packages/82/d9/7064d3a0a1d62756a1a809c85b99f864c641b66de84c15458f72193b7708
-PYTHON_PAHO_MQTT_LICENSE = EPLv1.0 or EDLv1.0
+PYTHON_PAHO_MQTT_LICENSE = EPL-1.0 or EDLv1.0
 PYTHON_PAHO_MQTT_LICENSE_FILES = LICENSE.txt edl-v10 epl-v10
 PYTHON_PAHO_MQTT_SETUP_TYPE = distutils
 
-- 
2.7.4

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

* [Buildroot] [PATCH 9/9] php: add version to license string
  2017-04-01 19:06 [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license Rahul Bedarkar
                   ` (6 preceding siblings ...)
  2017-04-01 19:06 ` [Buildroot] [PATCH 8/9] package: use SPDX short identifier for EPL license Rahul Bedarkar
@ 2017-04-01 19:06 ` Rahul Bedarkar
  2017-04-01 20:40 ` [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license Thomas Petazzoni
  8 siblings, 0 replies; 10+ messages in thread
From: Rahul Bedarkar @ 2017-04-01 19:06 UTC (permalink / raw)
  To: buildroot

As per LICENSE file, php uses PHP license version 3.01.

Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
---
 package/php/php.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/php/php.mk b/package/php/php.mk
index f59a4e8..22eeddd 100644
--- a/package/php/php.mk
+++ b/package/php/php.mk
@@ -11,7 +11,7 @@ PHP_INSTALL_STAGING = YES
 PHP_INSTALL_STAGING_OPTS = INSTALL_ROOT=$(STAGING_DIR) install
 PHP_INSTALL_TARGET_OPTS = INSTALL_ROOT=$(TARGET_DIR) install
 PHP_DEPENDENCIES = host-pkgconf
-PHP_LICENSE = PHP
+PHP_LICENSE = PHP-3.01
 PHP_LICENSE_FILES = LICENSE
 PHP_CONF_OPTS = \
 	--mandir=/usr/share/man \
-- 
2.7.4

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

* [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license
  2017-04-01 19:06 [Buildroot] [PATCH 1/9] package: use SPDX short identifier for OFL license Rahul Bedarkar
                   ` (7 preceding siblings ...)
  2017-04-01 19:06 ` [Buildroot] [PATCH 9/9] php: add version to license string Rahul Bedarkar
@ 2017-04-01 20:40 ` Thomas Petazzoni
  8 siblings, 0 replies; 10+ messages in thread
From: Thomas Petazzoni @ 2017-04-01 20:40 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun,  2 Apr 2017 00:36:23 +0530, Rahul Bedarkar wrote:
> 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(-)

Thanks, all 9 patches applied!

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

^ permalink raw reply	[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.