All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH] python3-joblib: new package
@ 2021-07-09 14:39 Bartosz Golaszewski
  2021-07-09 15:15 ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Bartosz Golaszewski @ 2021-07-09 14:39 UTC (permalink / raw)
  To: Khem Raj, Armin Kuster, Tim moto-timo Orling, Derek Straka,
	Trevor Gamblin
  Cc: openembedded-devel, Bartosz Golaszewski

Add a recipe for joblib: a set of tools to provide lightweight pipelining
in Python.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
---
 .../packagegroups/packagegroup-meta-python.bb   |  1 +
 .../python/python3-joblib_1.0.1.bb              | 17 +++++++++++++++++
 2 files changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb

diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
index 9c44d38ce..72ca86b04 100644
--- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
+++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
@@ -196,6 +196,7 @@ RDEPENDS_packagegroup-meta-python3 = "\
     python3-jdcal \
     python3-jedi \
     python3-jmespath \
+    python3-joblib \
     python3-jsmin \
     python3-jsonpatch \
     python3-jsonpath-rw \
diff --git a/meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb b/meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb
new file mode 100644
index 000000000..4e63b056c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb
@@ -0,0 +1,17 @@
+SUMMARY = "Joblib is a set of tools to provide lightweight pipelining in Python."
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=32b289008fb813a27c9025f02b59d03d"
+
+inherit setuptools3 pypi
+
+SRC_URI[md5sum] = "9914b330916395c0a1feca54949867a3"
+SRC_URI[sha256sum] = "9c17567692206d2f3fb9ecf5e991084254fe631665c450b443761c4186a613f7"
+
+RDEPENDS_${PN} += " \
+    python3-asyncio \
+    python3-distutils \
+    python3-json \
+    python3-multiprocessing \
+    python3-pprint \
+    python3-pydoc \
+"
-- 
2.30.1


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

* Re: [meta-python][PATCH] python3-joblib: new package
  2021-07-09 14:39 [meta-python][PATCH] python3-joblib: new package Bartosz Golaszewski
@ 2021-07-09 15:15 ` Khem Raj
  2021-07-12  7:56   ` Bartosz Golaszewski
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2021-07-09 15:15 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Armin Kuster, Tim moto-timo Orling, Derek Straka, Trevor Gamblin,
	openembeded-devel

On Fri, Jul 9, 2021 at 7:40 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>
> Add a recipe for joblib: a set of tools to provide lightweight pipelining
> in Python.
>
> Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
> ---
>  .../packagegroups/packagegroup-meta-python.bb   |  1 +
>  .../python/python3-joblib_1.0.1.bb              | 17 +++++++++++++++++
>  2 files changed, 18 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb
>
> diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> index 9c44d38ce..72ca86b04 100644
> --- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> +++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> @@ -196,6 +196,7 @@ RDEPENDS_packagegroup-meta-python3 = "\
>      python3-jdcal \
>      python3-jedi \
>      python3-jmespath \
> +    python3-joblib \
>      python3-jsmin \
>      python3-jsonpatch \
>      python3-jsonpath-rw \
> diff --git a/meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb b/meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb
> new file mode 100644
> index 000000000..4e63b056c
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb
> @@ -0,0 +1,17 @@
> +SUMMARY = "Joblib is a set of tools to provide lightweight pipelining in Python."
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=32b289008fb813a27c9025f02b59d03d"
> +
> +inherit setuptools3 pypi
> +
> +SRC_URI[md5sum] = "9914b330916395c0a1feca54949867a3"

We do not need md5sum

> +SRC_URI[sha256sum] = "9c17567692206d2f3fb9ecf5e991084254fe631665c450b443761c4186a613f7"
> +
> +RDEPENDS_${PN} += " \
> +    python3-asyncio \
> +    python3-distutils \
> +    python3-json \
> +    python3-multiprocessing \
> +    python3-pprint \
> +    python3-pydoc \
> +"
> --
> 2.30.1
>

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

* Re: [meta-python][PATCH] python3-joblib: new package
  2021-07-09 15:15 ` Khem Raj
@ 2021-07-12  7:56   ` Bartosz Golaszewski
  0 siblings, 0 replies; 3+ messages in thread
From: Bartosz Golaszewski @ 2021-07-12  7:56 UTC (permalink / raw)
  To: Khem Raj
  Cc: Armin Kuster, Tim moto-timo Orling, Derek Straka, Trevor Gamblin,
	openembeded-devel

On Fri, Jul 9, 2021 at 5:16 PM Khem Raj <raj.khem@gmail.com> wrote:
>
> On Fri, Jul 9, 2021 at 7:40 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
> >
> > Add a recipe for joblib: a set of tools to provide lightweight pipelining
> > in Python.
> >
> > Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
> > ---
> >  .../packagegroups/packagegroup-meta-python.bb   |  1 +
> >  .../python/python3-joblib_1.0.1.bb              | 17 +++++++++++++++++
> >  2 files changed, 18 insertions(+)
> >  create mode 100644 meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb
> >
> > diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> > index 9c44d38ce..72ca86b04 100644
> > --- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> > +++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb
> > @@ -196,6 +196,7 @@ RDEPENDS_packagegroup-meta-python3 = "\
> >      python3-jdcal \
> >      python3-jedi \
> >      python3-jmespath \
> > +    python3-joblib \
> >      python3-jsmin \
> >      python3-jsonpatch \
> >      python3-jsonpath-rw \
> > diff --git a/meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb b/meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb
> > new file mode 100644
> > index 000000000..4e63b056c
> > --- /dev/null
> > +++ b/meta-python/recipes-devtools/python/python3-joblib_1.0.1.bb
> > @@ -0,0 +1,17 @@
> > +SUMMARY = "Joblib is a set of tools to provide lightweight pipelining in Python."
> > +LICENSE = "BSD-3-Clause"
> > +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=32b289008fb813a27c9025f02b59d03d"
> > +
> > +inherit setuptools3 pypi
> > +
> > +SRC_URI[md5sum] = "9914b330916395c0a1feca54949867a3"
>
> We do not need md5sum
>

I'll remember in the future. Can you fix it up when applying or do you
want me to resend?

Bart

> > +SRC_URI[sha256sum] = "9c17567692206d2f3fb9ecf5e991084254fe631665c450b443761c4186a613f7"
> > +
> > +RDEPENDS_${PN} += " \
> > +    python3-asyncio \
> > +    python3-distutils \
> > +    python3-json \
> > +    python3-multiprocessing \
> > +    python3-pprint \
> > +    python3-pydoc \
> > +"
> > --
> > 2.30.1
> >

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

end of thread, other threads:[~2021-07-12  7:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-09 14:39 [meta-python][PATCH] python3-joblib: new package Bartosz Golaszewski
2021-07-09 15:15 ` Khem Raj
2021-07-12  7:56   ` Bartosz Golaszewski

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.