All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/python-regex: fix license
@ 2022-02-06 22:08 Fabrice Fontaine
  2022-02-14 20:42 ` Arnout Vandecappelle
  2022-02-27 20:26 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-02-06 22:08 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine, Asaf Kahlon

License is Apache-2.0 since bump to version 2021.4.4 in commit
d973fac7ca2e7c0c4864e8045e5205764e84c45b and
https://github.com/mrabarnett/mrab-regex/commit/b693a1fba731a9aa0dc6ae37b441267d4b7b0419

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/python-regex/python-regex.hash | 2 ++
 package/python-regex/python-regex.mk   | 3 ++-
 package/python3-regex/python3-regex.mk | 3 ++-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/package/python-regex/python-regex.hash b/package/python-regex/python-regex.hash
index 4749cd6167..b0f5bb05da 100644
--- a/package/python-regex/python-regex.hash
+++ b/package/python-regex/python-regex.hash
@@ -1,3 +1,5 @@
 # md5, sha256 from https://pypi.org/pypi/regex/json
 md5  cd206281327b4c087bb20bf93cee4ab9  regex-2021.4.4.tar.gz
 sha256  52ba3d3f9b942c49d7e4bc105bb28551c44065f139a65062ab7912bef10c9afb  regex-2021.4.4.tar.gz
+# Locally computed sha256 checksums
+sha256  bff55ef4cdcc8c14ce259f8e8ab60e264418440d6335f4dc138273fbd506144d  LICENSE.txt
diff --git a/package/python-regex/python-regex.mk b/package/python-regex/python-regex.mk
index c46c4d1614..4019bcdd3e 100644
--- a/package/python-regex/python-regex.mk
+++ b/package/python-regex/python-regex.mk
@@ -9,6 +9,7 @@ PYTHON_REGEX_VERSION = 2021.4.4
 PYTHON_REGEX_SOURCE = regex-$(PYTHON_REGEX_VERSION).tar.gz
 PYTHON_REGEX_SITE = https://files.pythonhosted.org/packages/38/3f/4c42a98c9ad7d08c16e7d23b2194a0e4f3b2914662da8bc88986e4e6de1f
 PYTHON_REGEX_SETUP_TYPE = setuptools
-PYTHON_REGEX_LICENSE = CNRI-Python
+PYTHON_REGEX_LICENSE = Apache-2.0
+PYTHON_REGEX_LICENSE_FILES = LICENSE.txt
 
 $(eval $(python-package))
diff --git a/package/python3-regex/python3-regex.mk b/package/python3-regex/python3-regex.mk
index 0b71768e9d..5c08338437 100644
--- a/package/python3-regex/python3-regex.mk
+++ b/package/python3-regex/python3-regex.mk
@@ -9,7 +9,8 @@ PYTHON3_REGEX_VERSION = 2021.4.4
 PYTHON3_REGEX_SOURCE = regex-$(PYTHON3_REGEX_VERSION).tar.gz
 PYTHON3_REGEX_SITE = https://files.pythonhosted.org/packages/38/3f/4c42a98c9ad7d08c16e7d23b2194a0e4f3b2914662da8bc88986e4e6de1f
 PYTHON3_REGEX_SETUP_TYPE = setuptools
-PYTHON3_REGEX_LICENSE = CNRI-Python
+PYTHON3_REGEX_LICENSE = Apache-2.0
+PYTHON3_REGEX_LICENSE_FILES = LICENSE.txt
 HOST_PYTHON3_REGEX_DL_SUBDIR = python-regex
 HOST_PYTHON3_REGEX_NEEDS_HOST_PYTHON = python3
 
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/python-regex: fix license
  2022-02-06 22:08 [Buildroot] [PATCH 1/1] package/python-regex: fix license Fabrice Fontaine
@ 2022-02-14 20:42 ` Arnout Vandecappelle
  2022-02-27 20:26 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2022-02-14 20:42 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot; +Cc: Asaf Kahlon



On 06/02/2022 23:08, Fabrice Fontaine wrote:
> License is Apache-2.0 since bump to version 2021.4.4 in commit
> d973fac7ca2e7c0c4864e8045e5205764e84c45b and
> https://github.com/mrabarnett/mrab-regex/commit/b693a1fba731a9aa0dc6ae37b441267d4b7b0419
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/python-regex/python-regex.hash | 2 ++
>   package/python-regex/python-regex.mk   | 3 ++-
>   package/python3-regex/python3-regex.mk | 3 ++-
>   3 files changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/package/python-regex/python-regex.hash b/package/python-regex/python-regex.hash
> index 4749cd6167..b0f5bb05da 100644
> --- a/package/python-regex/python-regex.hash
> +++ b/package/python-regex/python-regex.hash
> @@ -1,3 +1,5 @@
>   # md5, sha256 from https://pypi.org/pypi/regex/json
>   md5  cd206281327b4c087bb20bf93cee4ab9  regex-2021.4.4.tar.gz
>   sha256  52ba3d3f9b942c49d7e4bc105bb28551c44065f139a65062ab7912bef10c9afb  regex-2021.4.4.tar.gz
> +# Locally computed sha256 checksums
> +sha256  bff55ef4cdcc8c14ce259f8e8ab60e264418440d6335f4dc138273fbd506144d  LICENSE.txt
> diff --git a/package/python-regex/python-regex.mk b/package/python-regex/python-regex.mk
> index c46c4d1614..4019bcdd3e 100644
> --- a/package/python-regex/python-regex.mk
> +++ b/package/python-regex/python-regex.mk
> @@ -9,6 +9,7 @@ PYTHON_REGEX_VERSION = 2021.4.4
>   PYTHON_REGEX_SOURCE = regex-$(PYTHON_REGEX_VERSION).tar.gz
>   PYTHON_REGEX_SITE = https://files.pythonhosted.org/packages/38/3f/4c42a98c9ad7d08c16e7d23b2194a0e4f3b2914662da8bc88986e4e6de1f
>   PYTHON_REGEX_SETUP_TYPE = setuptools
> -PYTHON_REGEX_LICENSE = CNRI-Python
> +PYTHON_REGEX_LICENSE = Apache-2.0
> +PYTHON_REGEX_LICENSE_FILES = LICENSE.txt
>   
>   $(eval $(python-package))
> diff --git a/package/python3-regex/python3-regex.mk b/package/python3-regex/python3-regex.mk
> index 0b71768e9d..5c08338437 100644
> --- a/package/python3-regex/python3-regex.mk
> +++ b/package/python3-regex/python3-regex.mk
> @@ -9,7 +9,8 @@ PYTHON3_REGEX_VERSION = 2021.4.4
>   PYTHON3_REGEX_SOURCE = regex-$(PYTHON3_REGEX_VERSION).tar.gz
>   PYTHON3_REGEX_SITE = https://files.pythonhosted.org/packages/38/3f/4c42a98c9ad7d08c16e7d23b2194a0e4f3b2914662da8bc88986e4e6de1f
>   PYTHON3_REGEX_SETUP_TYPE = setuptools
> -PYTHON3_REGEX_LICENSE = CNRI-Python
> +PYTHON3_REGEX_LICENSE = Apache-2.0
> +PYTHON3_REGEX_LICENSE_FILES = LICENSE.txt
>   HOST_PYTHON3_REGEX_DL_SUBDIR = python-regex
>   HOST_PYTHON3_REGEX_NEEDS_HOST_PYTHON = python3
>   
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/python-regex: fix license
  2022-02-06 22:08 [Buildroot] [PATCH 1/1] package/python-regex: fix license Fabrice Fontaine
  2022-02-14 20:42 ` Arnout Vandecappelle
@ 2022-02-27 20:26 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-02-27 20:26 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Asaf Kahlon, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > License is Apache-2.0 since bump to version 2021.4.4 in commit
 > d973fac7ca2e7c0c4864e8045e5205764e84c45b and
 > https://github.com/mrabarnett/mrab-regex/commit/b693a1fba731a9aa0dc6ae37b441267d4b7b0419

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2021.11.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-02-27 20:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-06 22:08 [Buildroot] [PATCH 1/1] package/python-regex: fix license Fabrice Fontaine
2022-02-14 20:42 ` Arnout Vandecappelle
2022-02-27 20:26 ` Peter Korsgaard

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.