All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH] python3-isort: Consolidate in a single file
@ 2020-06-03 11:16 Leon Anavi
  2020-06-05 17:24 ` [oe] " Trevor Gamblin
  0 siblings, 1 reply; 2+ messages in thread
From: Leon Anavi @ 2020-06-03 11:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-devtools/python/python-isort.inc  | 17 -----------------
 .../python/python3-isort_4.3.21.bb            | 19 +++++++++++++++++--
 2 files changed, 17 insertions(+), 19 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-isort.inc

diff --git a/meta-python/recipes-devtools/python/python-isort.inc b/meta-python/recipes-devtools/python/python-isort.inc
deleted file mode 100644
index 324d4cf10..000000000
--- a/meta-python/recipes-devtools/python/python-isort.inc
+++ /dev/null
@@ -1,17 +0,0 @@
-SUMMARY = "A Python utility / library to sort Python imports."
-HOMEPAGE = "https://pypi.python.org/pypi/isort"
-LICENSE = "MIT"
-SECTION = "devel/python"
-LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
-
-SRC_URI[md5sum] = "05d66f2eb7ce2c2d702e86bac24bf9e4"
-SRC_URI[sha256sum] = "54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"
-
-inherit pypi
-
-RDEPENDS_${PN} += "\
-    ${PYTHON_PN}-datetime \
-    ${PYTHON_PN}-shell \
-"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb b/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb
index 755b3e2f2..e0b21ab55 100644
--- a/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb
+++ b/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb
@@ -1,2 +1,17 @@
-inherit setuptools3
-require python-isort.inc
+SUMMARY = "A Python utility / library to sort Python imports."
+HOMEPAGE = "https://pypi.python.org/pypi/isort"
+LICENSE = "MIT"
+SECTION = "devel/python"
+LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
+
+SRC_URI[md5sum] = "05d66f2eb7ce2c2d702e86bac24bf9e4"
+SRC_URI[sha256sum] = "54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += "\
+    ${PYTHON_PN}-datetime \
+    ${PYTHON_PN}-shell \
+"
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH] python3-isort: Consolidate in a single file
  2020-06-03 11:16 [meta-python][PATCH] python3-isort: Consolidate in a single file Leon Anavi
@ 2020-06-05 17:24 ` Trevor Gamblin
  0 siblings, 0 replies; 2+ messages in thread
From: Trevor Gamblin @ 2020-06-05 17:24 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2359 bytes --]


On 6/3/20 7:16 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-devtools/python/python-isort.inc  | 17 -----------------
>   .../python/python3-isort_4.3.21.bb            | 19 +++++++++++++++++--
>   2 files changed, 17 insertions(+), 19 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-isort.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-isort.inc b/meta-python/recipes-devtools/python/python-isort.inc
> deleted file mode 100644
> index 324d4cf10..000000000
> --- a/meta-python/recipes-devtools/python/python-isort.inc
> +++ /dev/null
> @@ -1,17 +0,0 @@
> -SUMMARY = "A Python utility / library to sort Python imports."
> -HOMEPAGE = "https://pypi.python.org/pypi/isort"
> -LICENSE = "MIT"
> -SECTION = "devel/python"
> -LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
> -
> -SRC_URI[md5sum] = "05d66f2eb7ce2c2d702e86bac24bf9e4"
> -SRC_URI[sha256sum] = "54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"
> -
> -inherit pypi
> -
> -RDEPENDS_${PN} += "\
> -    ${PYTHON_PN}-datetime \
> -    ${PYTHON_PN}-shell \
> -"
> -
> -BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb b/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb
> index 755b3e2f2..e0b21ab55 100644
> --- a/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb
> +++ b/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb
> @@ -1,2 +1,17 @@
> -inherit setuptools3
> -require python-isort.inc
> +SUMMARY = "A Python utility / library to sort Python imports."
> +HOMEPAGE = "https://pypi.python.org/pypi/isort"
> +LICENSE = "MIT"
> +SECTION = "devel/python"
> +LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
> +
> +SRC_URI[md5sum] = "05d66f2eb7ce2c2d702e86bac24bf9e4"
> +SRC_URI[sha256sum] = "54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"
> +
> +inherit pypi setuptools3
> +
> +RDEPENDS_${PN} += "\
> +    ${PYTHON_PN}-datetime \
> +    ${PYTHON_PN}-shell \
> +"
> +
> +BBCLASSEXTEND = "native nativesdk"
>
> 

[-- Attachment #2: Type: text/html, Size: 4219 bytes --]

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

end of thread, other threads:[~2020-06-05 17:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-03 11:16 [meta-python][PATCH] python3-isort: Consolidate in a single file Leon Anavi
2020-06-05 17:24 ` [oe] " Trevor Gamblin

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.