All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/7] php-amqp: add version to license string
@ 2017-04-02 18:43 Rahul Bedarkar
  2017-04-02 18:43 ` [Buildroot] [PATCH 2/7] php-geoip: " Rahul Bedarkar
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Rahul Bedarkar @ 2017-04-02 18:43 UTC (permalink / raw)
  To: buildroot

LICENSE file refers to PHP license version 3.01.

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

diff --git a/package/php-amqp/php-amqp.mk b/package/php-amqp/php-amqp.mk
index d3ffe16..fe49f4b 100644
--- a/package/php-amqp/php-amqp.mk
+++ b/package/php-amqp/php-amqp.mk
@@ -11,7 +11,7 @@ PHP_AMQP_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
 	--with-amqp=$(STAGING_DIR)/usr
 # phpize does the autoconf magic
 PHP_AMQP_DEPENDENCIES = rabbitmq-c php host-autoconf
-PHP_AMQP_LICENSE = PHP
+PHP_AMQP_LICENSE = PHP-3.01
 PHP_AMQP_LICENSE_FILES = LICENSE
 
 define PHP_AMQP_PHPIZE
-- 
2.7.4

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

* [Buildroot] [PATCH 2/7] php-geoip: add version to license string
  2017-04-02 18:43 [Buildroot] [PATCH 1/7] php-amqp: add version to license string Rahul Bedarkar
@ 2017-04-02 18:43 ` Rahul Bedarkar
  2017-04-02 18:43 ` [Buildroot] [PATCH 3/7] php-imagick: " Rahul Bedarkar
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Rahul Bedarkar @ 2017-04-02 18:43 UTC (permalink / raw)
  To: buildroot

License header in geoip.c refers to PHP license version 3.01.

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

diff --git a/package/php-geoip/php-geoip.mk b/package/php-geoip/php-geoip.mk
index c39c95c..8f4e3bf 100644
--- a/package/php-geoip/php-geoip.mk
+++ b/package/php-geoip/php-geoip.mk
@@ -10,7 +10,7 @@ PHP_GEOIP_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
 	--with-geoip=$(STAGING_DIR)/usr
 # phpize does the autoconf magic
 PHP_GEOIP_DEPENDENCIES = geoip php host-autoconf
-PHP_GEOIP_LICENSE = PHP
+PHP_GEOIP_LICENSE = PHP-3.01
 PHP_GEOIP_LICENSE_FILES = geoip.c
 
 define PHP_GEOIP_PHPIZE
-- 
2.7.4

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

* [Buildroot] [PATCH 3/7] php-imagick: add version to license string
  2017-04-02 18:43 [Buildroot] [PATCH 1/7] php-amqp: add version to license string Rahul Bedarkar
  2017-04-02 18:43 ` [Buildroot] [PATCH 2/7] php-geoip: " Rahul Bedarkar
@ 2017-04-02 18:43 ` Rahul Bedarkar
  2017-04-02 18:43 ` [Buildroot] [PATCH 4/7] php-memcached: fix legal info Rahul Bedarkar
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Rahul Bedarkar @ 2017-04-02 18:43 UTC (permalink / raw)
  To: buildroot

LICENSE file refers to PHP license version 3.01.

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

diff --git a/package/php-imagick/php-imagick.mk b/package/php-imagick/php-imagick.mk
index ddcefda..c8c2b85 100644
--- a/package/php-imagick/php-imagick.mk
+++ b/package/php-imagick/php-imagick.mk
@@ -11,7 +11,7 @@ PHP_IMAGICK_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
 	--with-imagick=$(STAGING_DIR)/usr
 # phpize does the autoconf magic
 PHP_IMAGICK_DEPENDENCIES = imagemagick php host-autoconf
-PHP_IMAGICK_LICENSE = PHP
+PHP_IMAGICK_LICENSE = PHP-3.01
 PHP_IMAGICK_LICENSE_FILES = LICENSE
 
 define PHP_IMAGICK_PHPIZE
-- 
2.7.4

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

* [Buildroot] [PATCH 4/7] php-memcached: fix legal info
  2017-04-02 18:43 [Buildroot] [PATCH 1/7] php-amqp: add version to license string Rahul Bedarkar
  2017-04-02 18:43 ` [Buildroot] [PATCH 2/7] php-geoip: " Rahul Bedarkar
  2017-04-02 18:43 ` [Buildroot] [PATCH 3/7] php-imagick: " Rahul Bedarkar
@ 2017-04-02 18:43 ` Rahul Bedarkar
  2017-04-02 18:43 ` [Buildroot] [PATCH 5/7] php-ssh2: add version to license string Rahul Bedarkar
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Rahul Bedarkar @ 2017-04-02 18:43 UTC (permalink / raw)
  To: buildroot

LICENSE file refer to PHP license version 3.01. License header in all
source files refer to PHP license version 3.01 except source files for
fastlz library which is provided under MIT license and g_fmt.{c,h}
which has ISC-like license header.

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

diff --git a/package/php-memcached/php-memcached.mk b/package/php-memcached/php-memcached.mk
index ea241b2..c4b7636 100644
--- a/package/php-memcached/php-memcached.mk
+++ b/package/php-memcached/php-memcached.mk
@@ -12,8 +12,8 @@ PHP_MEMCACHED_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
 	--with-zlib-dir=$(STAGING_DIR)/usr
 # phpize does the autoconf magic
 PHP_MEMCACHED_DEPENDENCIES = libmemcached php zlib host-autoconf host-pkgconf
-PHP_MEMCACHED_LICENSE = MIT
-PHP_MEMCACHED_LICENSE_FILES = LICENSE
+PHP_MEMCACHED_LICENSE = PHP-3.01, MIT (fastlz), ISC-like (g_fmt.c, g_fmt.h)
+PHP_MEMCACHED_LICENSE_FILES = LICENSE fastlz/LICENSE g_fmt.h
 
 define PHP_MEMCACHED_PHPIZE
 	(cd $(@D); \
-- 
2.7.4

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

* [Buildroot] [PATCH 5/7] php-ssh2: add version to license string
  2017-04-02 18:43 [Buildroot] [PATCH 1/7] php-amqp: add version to license string Rahul Bedarkar
                   ` (2 preceding siblings ...)
  2017-04-02 18:43 ` [Buildroot] [PATCH 4/7] php-memcached: fix legal info Rahul Bedarkar
@ 2017-04-02 18:43 ` Rahul Bedarkar
  2017-04-02 18:43 ` [Buildroot] [PATCH 6/7] libplatform: use SPDX short identifier for PHP license Rahul Bedarkar
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Rahul Bedarkar @ 2017-04-02 18:43 UTC (permalink / raw)
  To: buildroot

LICENSE file refers to PHP license version 3.01

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

diff --git a/package/php-ssh2/php-ssh2.mk b/package/php-ssh2/php-ssh2.mk
index 2b61632..931cde9 100644
--- a/package/php-ssh2/php-ssh2.mk
+++ b/package/php-ssh2/php-ssh2.mk
@@ -10,7 +10,7 @@ PHP_SSH2_CONF_OPTS = --with-php-config=$(STAGING_DIR)/usr/bin/php-config \
 	--with-ssh2=$(STAGING_DIR)/usr
 # phpize does the autoconf magic
 PHP_SSH2_DEPENDENCIES = libssh2 php host-autoconf
-PHP_SSH2_LICENSE = PHP
+PHP_SSH2_LICENSE = PHP-3.01
 PHP_SSH2_LICENSE_FILES = LICENSE
 
 define PHP_SSH2_PHPIZE
-- 
2.7.4

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

* [Buildroot] [PATCH 6/7] libplatform: use SPDX short identifier for PHP license
  2017-04-02 18:43 [Buildroot] [PATCH 1/7] php-amqp: add version to license string Rahul Bedarkar
                   ` (3 preceding siblings ...)
  2017-04-02 18:43 ` [Buildroot] [PATCH 5/7] php-ssh2: add version to license string Rahul Bedarkar
@ 2017-04-02 18:43 ` Rahul Bedarkar
  2017-04-02 18:43 ` [Buildroot] [PATCH 7/7] python-serial: fix legal info Rahul Bedarkar
  2017-04-03 13:03 ` [Buildroot] [PATCH 1/7] php-amqp: add version to license string Thomas Petazzoni
  6 siblings, 0 replies; 8+ messages in thread
From: Rahul Bedarkar @ 2017-04-02 18:43 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/libplatform/libplatform.mk b/package/libplatform/libplatform.mk
index b253028..d013799 100644
--- a/package/libplatform/libplatform.mk
+++ b/package/libplatform/libplatform.mk
@@ -6,7 +6,7 @@
 
 LIBPLATFORM_VERSION = feafe68e3e0b02c3261aefb3d711863ef6fadd38
 LIBPLATFORM_SITE = $(call github,Pulse-Eight,platform,$(LIBPLATFORM_VERSION))
-LIBPLATFORM_LICENSE = GPL-2.0+, PHP license v3.01
+LIBPLATFORM_LICENSE = GPL-2.0+, PHP-3.01
 LIBPLATFORM_LICENSE_FILES = src/os.h src/util/fstrcmp.c
 LIBPLATFORM_INSTALL_STAGING = YES
 
-- 
2.7.4

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

* [Buildroot] [PATCH 7/7] python-serial: fix legal info
  2017-04-02 18:43 [Buildroot] [PATCH 1/7] php-amqp: add version to license string Rahul Bedarkar
                   ` (4 preceding siblings ...)
  2017-04-02 18:43 ` [Buildroot] [PATCH 6/7] libplatform: use SPDX short identifier for PHP license Rahul Bedarkar
@ 2017-04-02 18:43 ` Rahul Bedarkar
  2017-04-03 13:03 ` [Buildroot] [PATCH 1/7] php-amqp: add version to license string Thomas Petazzoni
  6 siblings, 0 replies; 8+ messages in thread
From: Rahul Bedarkar @ 2017-04-02 18:43 UTC (permalink / raw)
  To: buildroot

python-serial is provided under BSD-3-Clause license.

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

diff --git a/package/python-serial/python-serial.mk b/package/python-serial/python-serial.mk
index 4b3ffad..ce7ec07 100644
--- a/package/python-serial/python-serial.mk
+++ b/package/python-serial/python-serial.mk
@@ -7,7 +7,7 @@
 PYTHON_SERIAL_VERSION = 3.1
 PYTHON_SERIAL_SOURCE = pyserial-$(PYTHON_SERIAL_VERSION).tar.gz
 PYTHON_SERIAL_SITE = https://pypi.python.org/packages/ce/9c/694ce79a9d4a164e109aeba1a40fba23336f3b7554978553e22a5d41d54d
-PYTHON_SERIAL_LICENSE = Python Software Foundation License
+PYTHON_SERIAL_LICENSE = BSD-3-Clause
 PYTHON_SERIAL_LICENSE_FILES = LICENSE.txt
 PYTHON_SERIAL_SETUP_TYPE = setuptools
 
-- 
2.7.4

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

* [Buildroot] [PATCH 1/7] php-amqp: add version to license string
  2017-04-02 18:43 [Buildroot] [PATCH 1/7] php-amqp: add version to license string Rahul Bedarkar
                   ` (5 preceding siblings ...)
  2017-04-02 18:43 ` [Buildroot] [PATCH 7/7] python-serial: fix legal info Rahul Bedarkar
@ 2017-04-03 13:03 ` Thomas Petazzoni
  6 siblings, 0 replies; 8+ messages in thread
From: Thomas Petazzoni @ 2017-04-03 13:03 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon,  3 Apr 2017 00:13:02 +0530, Rahul Bedarkar wrote:
> LICENSE file refers to PHP license version 3.01.
> 
> Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
> ---
>  package/php-amqp/php-amqp.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Series applied. Thanks a lot!

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

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

end of thread, other threads:[~2017-04-03 13:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-02 18:43 [Buildroot] [PATCH 1/7] php-amqp: add version to license string Rahul Bedarkar
2017-04-02 18:43 ` [Buildroot] [PATCH 2/7] php-geoip: " Rahul Bedarkar
2017-04-02 18:43 ` [Buildroot] [PATCH 3/7] php-imagick: " Rahul Bedarkar
2017-04-02 18:43 ` [Buildroot] [PATCH 4/7] php-memcached: fix legal info Rahul Bedarkar
2017-04-02 18:43 ` [Buildroot] [PATCH 5/7] php-ssh2: add version to license string Rahul Bedarkar
2017-04-02 18:43 ` [Buildroot] [PATCH 6/7] libplatform: use SPDX short identifier for PHP license Rahul Bedarkar
2017-04-02 18:43 ` [Buildroot] [PATCH 7/7] python-serial: fix legal info Rahul Bedarkar
2017-04-03 13:03 ` [Buildroot] [PATCH 1/7] php-amqp: add version to license string 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.