All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/2] python3-booleanpy: add recipe
@ 2019-12-27 17:11 Peter Kolbus
  2019-12-27 17:11 ` [meta-python][PATCH 2/2] python3-license-expression: " Peter Kolbus
  2019-12-28 18:16 ` [meta-python][PATCH 1/2] python3-booleanpy: " Khem Raj
  0 siblings, 2 replies; 4+ messages in thread
From: Peter Kolbus @ 2019-12-27 17:11 UTC (permalink / raw)
  To: openembedded-devel

boolean.py is a library to define and parse boolean algebras. It is
used by python3-license-expression.

Signed-off-by: Peter Kolbus <peter.kolbus@garmin.com>
---
 .../recipes-devtools/python/python-booleanpy.inc   | 14 ++++++++++++++
 .../python/python3-booleanpy_3.7.bb                |  2 ++
 2 files changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-booleanpy.inc
 create mode 100644 meta-python/recipes-devtools/python/python3-booleanpy_3.7.bb

diff --git a/meta-python/recipes-devtools/python/python-booleanpy.inc b/meta-python/recipes-devtools/python/python-booleanpy.inc
new file mode 100644
index 000000000..4484af29b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-booleanpy.inc
@@ -0,0 +1,14 @@
+SUMMARY = "Define boolean algebras, create and parse boolean expressions and create custom boolean DSL"
+HOMEPAGE = "https://github.com/bastikr/boolean.py"
+
+LICENSE = "BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7f538584cc3407bf76042def7168548a"
+
+SRC_URI[md5sum] = "1189d115a38f84f5df743014926a9159"
+SRC_URI[sha256sum] = "bd19b412435611ecc712603d0fd7d0e280e24698e7a6e3d5f610473870c5dd1e"
+
+PYPI_PACKAGE = "boolean.py"
+
+inherit pypi
+
+BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-booleanpy_3.7.bb b/meta-python/recipes-devtools/python/python3-booleanpy_3.7.bb
new file mode 100644
index 000000000..5f8602d18
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-booleanpy_3.7.bb
@@ -0,0 +1,2 @@
+inherit setuptools3
+require python-booleanpy.inc
-- 
2.24.1



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

* [meta-python][PATCH 2/2] python3-license-expression: add recipe
  2019-12-27 17:11 [meta-python][PATCH 1/2] python3-booleanpy: add recipe Peter Kolbus
@ 2019-12-27 17:11 ` Peter Kolbus
  2019-12-28 18:17   ` Khem Raj
  2019-12-28 18:16 ` [meta-python][PATCH 1/2] python3-booleanpy: " Khem Raj
  1 sibling, 1 reply; 4+ messages in thread
From: Peter Kolbus @ 2019-12-27 17:11 UTC (permalink / raw)
  To: openembedded-devel

python3-license-expression is a utility library to parse and work with
license expressions.

Signed-off-by: Peter Kolbus <peter.kolbus@garmin.com>
---
 .../python/python-license-expression.inc         | 16 ++++++++++++++++
 .../python/python3-license-expression_1.0.bb     |  2 ++
 2 files changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-license-expression.inc
 create mode 100644 meta-python/recipes-devtools/python/python3-license-expression_1.0.bb

diff --git a/meta-python/recipes-devtools/python/python-license-expression.inc b/meta-python/recipes-devtools/python/python-license-expression.inc
new file mode 100644
index 000000000..5b18f2e96
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-license-expression.inc
@@ -0,0 +1,16 @@
+SUMMARY = "Utility library to parse, compare, simplify and normalize license expressions"
+HOMEPAGE = "https://github.com/nexB/license-expression"
+
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://apache-2.0.LICENSE;md5=7f538584cc3407bf76042def7168548a"
+
+SRC_URI[md5sum] = "81477f779099f55071c6a7b88a29bb01"
+SRC_URI[sha256sum] = "8aaa455c5b97c4f2174090178b19792b2a1c620e80591aafd4e0a99b713f9e8d"
+
+inherit pypi
+
+RDEPENDS_${PN} += "\
+    ${PYTHON_PN}-booleanpy \
+    "
+
+BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-license-expression_1.0.bb b/meta-python/recipes-devtools/python/python3-license-expression_1.0.bb
new file mode 100644
index 000000000..10a702ca4
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-license-expression_1.0.bb
@@ -0,0 +1,2 @@
+inherit setuptools3
+require python-license-expression.inc
-- 
2.24.1



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

* Re: [meta-python][PATCH 1/2] python3-booleanpy: add recipe
  2019-12-27 17:11 [meta-python][PATCH 1/2] python3-booleanpy: add recipe Peter Kolbus
  2019-12-27 17:11 ` [meta-python][PATCH 2/2] python3-license-expression: " Peter Kolbus
@ 2019-12-28 18:16 ` Khem Raj
  1 sibling, 0 replies; 4+ messages in thread
From: Khem Raj @ 2019-12-28 18:16 UTC (permalink / raw)
  To: Peter Kolbus; +Cc: openembeded-devel

license checksum fails

http://errors.yoctoproject.org/Errors/Details/300491/


On Fri, Dec 27, 2019 at 9:11 AM Peter Kolbus <peter.kolbus@garmin.com> wrote:
>
> boolean.py is a library to define and parse boolean algebras. It is
> used by python3-license-expression.
>
> Signed-off-by: Peter Kolbus <peter.kolbus@garmin.com>
> ---
>  .../recipes-devtools/python/python-booleanpy.inc   | 14 ++++++++++++++
>  .../python/python3-booleanpy_3.7.bb                |  2 ++
>  2 files changed, 16 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/python-booleanpy.inc
>  create mode 100644 meta-python/recipes-devtools/python/python3-booleanpy_3.7.bb
>
> diff --git a/meta-python/recipes-devtools/python/python-booleanpy.inc b/meta-python/recipes-devtools/python/python-booleanpy.inc
> new file mode 100644
> index 000000000..4484af29b
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-booleanpy.inc
> @@ -0,0 +1,14 @@
> +SUMMARY = "Define boolean algebras, create and parse boolean expressions and create custom boolean DSL"
> +HOMEPAGE = "https://github.com/bastikr/boolean.py"
> +
> +LICENSE = "BSD-2-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7f538584cc3407bf76042def7168548a"
> +
> +SRC_URI[md5sum] = "1189d115a38f84f5df743014926a9159"
> +SRC_URI[sha256sum] = "bd19b412435611ecc712603d0fd7d0e280e24698e7a6e3d5f610473870c5dd1e"
> +
> +PYPI_PACKAGE = "boolean.py"
> +
> +inherit pypi
> +
> +BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-booleanpy_3.7.bb b/meta-python/recipes-devtools/python/python3-booleanpy_3.7.bb
> new file mode 100644
> index 000000000..5f8602d18
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-booleanpy_3.7.bb
> @@ -0,0 +1,2 @@
> +inherit setuptools3
> +require python-booleanpy.inc
> --
> 2.24.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-python][PATCH 2/2] python3-license-expression: add recipe
  2019-12-27 17:11 ` [meta-python][PATCH 2/2] python3-license-expression: " Peter Kolbus
@ 2019-12-28 18:17   ` Khem Raj
  0 siblings, 0 replies; 4+ messages in thread
From: Khem Raj @ 2019-12-28 18:17 UTC (permalink / raw)
  To: Peter Kolbus; +Cc: openembeded-devel

License checksum fails
http://errors.yoctoproject.org/Errors/Details/300493/

On Fri, Dec 27, 2019 at 9:12 AM Peter Kolbus <peter.kolbus@garmin.com> wrote:
>
> python3-license-expression is a utility library to parse and work with
> license expressions.
>
> Signed-off-by: Peter Kolbus <peter.kolbus@garmin.com>
> ---
>  .../python/python-license-expression.inc         | 16 ++++++++++++++++
>  .../python/python3-license-expression_1.0.bb     |  2 ++
>  2 files changed, 18 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/python-license-expression.inc
>  create mode 100644 meta-python/recipes-devtools/python/python3-license-expression_1.0.bb
>
> diff --git a/meta-python/recipes-devtools/python/python-license-expression.inc b/meta-python/recipes-devtools/python/python-license-expression.inc
> new file mode 100644
> index 000000000..5b18f2e96
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-license-expression.inc
> @@ -0,0 +1,16 @@
> +SUMMARY = "Utility library to parse, compare, simplify and normalize license expressions"
> +HOMEPAGE = "https://github.com/nexB/license-expression"
> +
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://apache-2.0.LICENSE;md5=7f538584cc3407bf76042def7168548a"
> +
> +SRC_URI[md5sum] = "81477f779099f55071c6a7b88a29bb01"
> +SRC_URI[sha256sum] = "8aaa455c5b97c4f2174090178b19792b2a1c620e80591aafd4e0a99b713f9e8d"
> +
> +inherit pypi
> +
> +RDEPENDS_${PN} += "\
> +    ${PYTHON_PN}-booleanpy \
> +    "
> +
> +BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-license-expression_1.0.bb b/meta-python/recipes-devtools/python/python3-license-expression_1.0.bb
> new file mode 100644
> index 000000000..10a702ca4
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-license-expression_1.0.bb
> @@ -0,0 +1,2 @@
> +inherit setuptools3
> +require python-license-expression.inc
> --
> 2.24.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

end of thread, other threads:[~2019-12-28 18:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-27 17:11 [meta-python][PATCH 1/2] python3-booleanpy: add recipe Peter Kolbus
2019-12-27 17:11 ` [meta-python][PATCH 2/2] python3-license-expression: " Peter Kolbus
2019-12-28 18:17   ` Khem Raj
2019-12-28 18:16 ` [meta-python][PATCH 1/2] python3-booleanpy: " Khem Raj

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.