All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/2] python3-speedtest-cli: fix RDEPENDS
@ 2022-05-19 13:18 Bartosz Golaszewski
  2022-05-19 13:18 ` [meta-oe][PATCH 2/2] speedtest-cli: drop the recipe Bartosz Golaszewski
  2022-05-24 14:49 ` [meta-python][PATCH 1/2] python3-speedtest-cli: fix RDEPENDS Bartosz Golaszewski
  0 siblings, 2 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2022-05-19 13:18 UTC (permalink / raw)
  To: Khem Raj, Bruce Ashfield, openembedded-devel; +Cc: Bartosz Golaszewski

There are packages missing in RDEPENDS needed to run speedtest-cli. Add
them and use += for the assignment as we don't know what inherited
classes may have added.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
---
 .../recipes-devtools/python/python3-speedtest-cli_2.1.3.bb  | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb b/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb
index 06d98cbe1..472113b05 100644
--- a/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb
@@ -7,4 +7,8 @@ SRC_URI[sha256sum] = "5e2773233cedb5fa3d8120eb7f97bcc4974b5221b254d33ff16e2f1d41
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} = "${PYTHON_PN}-misc"
+RDEPENDS:${PN} += " \
+    python3-misc \
+    python3-threading \
+    python3-xml \
+"
-- 
2.34.1



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

* [meta-oe][PATCH 2/2] speedtest-cli: drop the recipe
  2022-05-19 13:18 [meta-python][PATCH 1/2] python3-speedtest-cli: fix RDEPENDS Bartosz Golaszewski
@ 2022-05-19 13:18 ` Bartosz Golaszewski
  2022-05-24 14:49 ` [meta-python][PATCH 1/2] python3-speedtest-cli: fix RDEPENDS Bartosz Golaszewski
  1 sibling, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2022-05-19 13:18 UTC (permalink / raw)
  To: Khem Raj, Bruce Ashfield, openembedded-devel; +Cc: Bartosz Golaszewski

This is the same project as the one in the python3-speedtest-cli recipe
in meta-python except that the other one is downloaded from pypi. Drop
this recipe.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
---
 .../speedtest-cli/speedtest-cli_2.1.3.bb           | 14 --------------
 1 file changed, 14 deletions(-)
 delete mode 100644 meta-oe/dynamic-layers/meta-python/recipes-benchmark/speedtest-cli/speedtest-cli_2.1.3.bb

diff --git a/meta-oe/dynamic-layers/meta-python/recipes-benchmark/speedtest-cli/speedtest-cli_2.1.3.bb b/meta-oe/dynamic-layers/meta-python/recipes-benchmark/speedtest-cli/speedtest-cli_2.1.3.bb
deleted file mode 100644
index df577b1b7..000000000
--- a/meta-oe/dynamic-layers/meta-python/recipes-benchmark/speedtest-cli/speedtest-cli_2.1.3.bb
+++ /dev/null
@@ -1,14 +0,0 @@
-SUMMARY = "Command line interface for testing internet bandwidth using speedtest.net"
-AUTHOR = "Matt Martz"
-
-LICENSE="Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
-
-inherit setuptools3
-
-SRC_URI = "git://github.com/sivel/speedtest-cli.git;branch=master;protocol=https"
-SRCREV = "42e96b13dda2afabbcec2622612d13495a415caa"
-
-S = "${WORKDIR}/git"
-
-RDEPENDS:${PN} = "python3 python3-setuptools-scm"
-- 
2.34.1



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

* Re: [meta-python][PATCH 1/2] python3-speedtest-cli: fix RDEPENDS
  2022-05-19 13:18 [meta-python][PATCH 1/2] python3-speedtest-cli: fix RDEPENDS Bartosz Golaszewski
  2022-05-19 13:18 ` [meta-oe][PATCH 2/2] speedtest-cli: drop the recipe Bartosz Golaszewski
@ 2022-05-24 14:49 ` Bartosz Golaszewski
  2022-05-24 15:31   ` Khem Raj
  1 sibling, 1 reply; 4+ messages in thread
From: Bartosz Golaszewski @ 2022-05-24 14:49 UTC (permalink / raw)
  To: Khem Raj, Bruce Ashfield, openembedded-devel

On Thu, May 19, 2022 at 3:18 PM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>
> There are packages missing in RDEPENDS needed to run speedtest-cli. Add
> them and use += for the assignment as we don't know what inherited
> classes may have added.
>
> Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
> ---
>  .../recipes-devtools/python/python3-speedtest-cli_2.1.3.bb  | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb b/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb
> index 06d98cbe1..472113b05 100644
> --- a/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb
> @@ -7,4 +7,8 @@ SRC_URI[sha256sum] = "5e2773233cedb5fa3d8120eb7f97bcc4974b5221b254d33ff16e2f1d41
>
>  inherit pypi setuptools3
>
> -RDEPENDS:${PN} = "${PYTHON_PN}-misc"
> +RDEPENDS:${PN} += " \
> +    python3-misc \
> +    python3-threading \
> +    python3-xml \
> +"
> --
> 2.34.1
>

Hi!

This has been in master-next for days but didn't get into master
proper. Just a gentle ping.

Bart


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

* Re: [meta-python][PATCH 1/2] python3-speedtest-cli: fix RDEPENDS
  2022-05-24 14:49 ` [meta-python][PATCH 1/2] python3-speedtest-cli: fix RDEPENDS Bartosz Golaszewski
@ 2022-05-24 15:31   ` Khem Raj
  0 siblings, 0 replies; 4+ messages in thread
From: Khem Raj @ 2022-05-24 15:31 UTC (permalink / raw)
  To: Bartosz Golaszewski; +Cc: Bruce Ashfield, openembedded-devel

On Tue, May 24, 2022 at 7:49 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>
> On Thu, May 19, 2022 at 3:18 PM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
> >
> > There are packages missing in RDEPENDS needed to run speedtest-cli. Add
> > them and use += for the assignment as we don't know what inherited
> > classes may have added.
> >
> > Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
> > ---
> >  .../recipes-devtools/python/python3-speedtest-cli_2.1.3.bb  | 6 +++++-
> >  1 file changed, 5 insertions(+), 1 deletion(-)
> >
> > diff --git a/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb b/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb
> > index 06d98cbe1..472113b05 100644
> > --- a/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb
> > +++ b/meta-python/recipes-devtools/python/python3-speedtest-cli_2.1.3.bb
> > @@ -7,4 +7,8 @@ SRC_URI[sha256sum] = "5e2773233cedb5fa3d8120eb7f97bcc4974b5221b254d33ff16e2f1d41
> >
> >  inherit pypi setuptools3
> >
> > -RDEPENDS:${PN} = "${PYTHON_PN}-misc"
> > +RDEPENDS:${PN} += " \
> > +    python3-misc \
> > +    python3-threading \
> > +    python3-xml \
> > +"
> > --
> > 2.34.1
> >
>
> Hi!
>
> This has been in master-next for days but didn't get into master
> proper. Just a gentle ping.

Thanks for reminder, if you have not heard on it causing issues then
It will be in master in due course soon. Sometimes its other recipes being
sorted with current master etc. that delays merges

>
> Bart


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

end of thread, other threads:[~2022-05-24 15:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-19 13:18 [meta-python][PATCH 1/2] python3-speedtest-cli: fix RDEPENDS Bartosz Golaszewski
2022-05-19 13:18 ` [meta-oe][PATCH 2/2] speedtest-cli: drop the recipe Bartosz Golaszewski
2022-05-24 14:49 ` [meta-python][PATCH 1/2] python3-speedtest-cli: fix RDEPENDS Bartosz Golaszewski
2022-05-24 15:31   ` 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.