All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/4] python3-packaging: Consolidate in a single file
@ 2020-06-12  9:47 Leon Anavi
  2020-06-12  9:47 ` [meta-python][PATCH 2/4] python3-packaging: Upgrade 20.3 -> 20.4 Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Leon Anavi @ 2020-06-12  9:47 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-packaging.inc     | 10 ----------
 .../python/python3-packaging_20.3.bb                 | 12 +++++++++++-
 2 files changed, 11 insertions(+), 11 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-packaging.inc

diff --git a/meta-python/recipes-devtools/python/python-packaging.inc b/meta-python/recipes-devtools/python/python-packaging.inc
deleted file mode 100644
index 418483f4e..000000000
--- a/meta-python/recipes-devtools/python/python-packaging.inc
+++ /dev/null
@@ -1,10 +0,0 @@
-DESCRIPTION = "Core utilities for Python packages"
-HOMEPAGE = "https://github.com/pypa/packaging"
-LICENSE = "Apache-2.0 & BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"
-
-SRC_URI[md5sum] = "19e0d1f82a9007b448650ccfeffd0a26"
-SRC_URI[sha256sum] = "3c292b474fda1671ec57d46d739d072bfd495a4f51ad01a055121d81e952b7a3"
-
-DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
-RDEPENDS_${PN} += "${PYTHON_PN}-six ${PYTHON_PN}-pyparsing"
diff --git a/meta-python/recipes-devtools/python/python3-packaging_20.3.bb b/meta-python/recipes-devtools/python/python3-packaging_20.3.bb
index aa20fb26f..9eee84b1b 100644
--- a/meta-python/recipes-devtools/python/python3-packaging_20.3.bb
+++ b/meta-python/recipes-devtools/python/python3-packaging_20.3.bb
@@ -1,2 +1,12 @@
+DESCRIPTION = "Core utilities for Python packages"
+HOMEPAGE = "https://github.com/pypa/packaging"
+LICENSE = "Apache-2.0 & BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"
+
+SRC_URI[md5sum] = "19e0d1f82a9007b448650ccfeffd0a26"
+SRC_URI[sha256sum] = "3c292b474fda1671ec57d46d739d072bfd495a4f51ad01a055121d81e952b7a3"
+
 inherit pypi setuptools3
-require python-packaging.inc
+
+DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
+RDEPENDS_${PN} += "${PYTHON_PN}-six ${PYTHON_PN}-pyparsing"
-- 
2.17.1


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

* [meta-python][PATCH 2/4] python3-packaging: Upgrade 20.3 -> 20.4
  2020-06-12  9:47 [meta-python][PATCH 1/4] python3-packaging: Consolidate in a single file Leon Anavi
@ 2020-06-12  9:47 ` Leon Anavi
  2020-06-12 14:40   ` [oe] " Trevor Gamblin
  2020-06-12  9:47 ` [meta-python][PATCH 3/4] python3-parse-type: Consolidate in a single file Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Leon Anavi @ 2020-06-12  9:47 UTC (permalink / raw
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 20.4 with the following improvements:

- Canonicalize version before comparing specifiers
- specifiers: don't rely on hashes for equality
- Add a NewType for normalized names
- Bug fixes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-packaging_20.3.bb => python3-packaging_20.4.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-packaging_20.3.bb => python3-packaging_20.4.bb} (70%)

diff --git a/meta-python/recipes-devtools/python/python3-packaging_20.3.bb b/meta-python/recipes-devtools/python/python3-packaging_20.4.bb
similarity index 70%
rename from meta-python/recipes-devtools/python/python3-packaging_20.3.bb
rename to meta-python/recipes-devtools/python/python3-packaging_20.4.bb
index 9eee84b1b..0f78fd016 100644
--- a/meta-python/recipes-devtools/python/python3-packaging_20.3.bb
+++ b/meta-python/recipes-devtools/python/python3-packaging_20.4.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/pypa/packaging"
 LICENSE = "Apache-2.0 & BSD"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"
 
-SRC_URI[md5sum] = "19e0d1f82a9007b448650ccfeffd0a26"
-SRC_URI[sha256sum] = "3c292b474fda1671ec57d46d739d072bfd495a4f51ad01a055121d81e952b7a3"
+SRC_URI[md5sum] = "3208229da731c5d8e29d4d8941e75005"
+SRC_URI[sha256sum] = "4357f74f47b9c12db93624a82154e9b120fa8293699949152b22065d556079f8"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 3/4] python3-parse-type: Consolidate in a single file
  2020-06-12  9:47 [meta-python][PATCH 1/4] python3-packaging: Consolidate in a single file Leon Anavi
  2020-06-12  9:47 ` [meta-python][PATCH 2/4] python3-packaging: Upgrade 20.3 -> 20.4 Leon Anavi
@ 2020-06-12  9:47 ` Leon Anavi
  2020-06-12 14:41   ` [oe] " Trevor Gamblin
  2020-06-12  9:47 ` [meta-python][PATCH 4/4] python3-parse-type: Upgrade 0.4.2 -> 0.5.2 Leon Anavi
  2020-06-12 14:40 ` [oe] [meta-python][PATCH 1/4] python3-packaging: Consolidate in a single file Trevor Gamblin
  3 siblings, 1 reply; 8+ messages in thread
From: Leon Anavi @ 2020-06-12  9:47 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>
---
 .../python/python-parse-type.inc              | 25 -----------------
 .../python/python3-parse-type_0.4.2.bb        | 27 +++++++++++++++++--
 2 files changed, 25 insertions(+), 27 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-parse-type.inc

diff --git a/meta-python/recipes-devtools/python/python-parse-type.inc b/meta-python/recipes-devtools/python/python-parse-type.inc
deleted file mode 100644
index 147ea6443..000000000
--- a/meta-python/recipes-devtools/python/python-parse-type.inc
+++ /dev/null
@@ -1,25 +0,0 @@
-SUMMARY = "Simplifies building parse types based on the parse module"
-HOMEPAGE = "https://github.com/jenisys/parse_type"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=d07323820cca0f1d192cbbf8a0516f95"
-
-SRC_URI[md5sum] = "b5fa59e45965d1b2896023742df2e707"
-SRC_URI[sha256sum] = "f596bdc75d3dd93036fbfe3d04127da9f6df0c26c36e01e76da85adef4336b3c"
-
-PYPI_PACKAGE = "parse_type"
-inherit pypi ptest
-
-RDEPENDS_${PN} += "${PYTHON_PN}-parse"
-
-SRC_URI += " \
-	file://run-ptest \
-"
-
-RDEPENDS_${PN}-ptest += " \
-	${PYTHON_PN}-pytest \
-"
-
-do_install_ptest() {
-	install -d ${D}${PTEST_PATH}/tests
-	cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
-}
diff --git a/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb b/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb
index 91d9ce2d4..a9e7a53ee 100644
--- a/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb
+++ b/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb
@@ -1,2 +1,25 @@
-inherit setuptools3
-require python-parse-type.inc
+SUMMARY = "Simplifies building parse types based on the parse module"
+HOMEPAGE = "https://github.com/jenisys/parse_type"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d07323820cca0f1d192cbbf8a0516f95"
+
+SRC_URI[md5sum] = "b5fa59e45965d1b2896023742df2e707"
+SRC_URI[sha256sum] = "f596bdc75d3dd93036fbfe3d04127da9f6df0c26c36e01e76da85adef4336b3c"
+
+PYPI_PACKAGE = "parse_type"
+inherit pypi ptest setuptools3
+
+RDEPENDS_${PN} += "${PYTHON_PN}-parse"
+
+SRC_URI += " \
+	file://run-ptest \
+"
+
+RDEPENDS_${PN}-ptest += " \
+	${PYTHON_PN}-pytest \
+"
+
+do_install_ptest() {
+	install -d ${D}${PTEST_PATH}/tests
+	cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
+}
-- 
2.17.1


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

* [meta-python][PATCH 4/4] python3-parse-type: Upgrade 0.4.2 -> 0.5.2
  2020-06-12  9:47 [meta-python][PATCH 1/4] python3-packaging: Consolidate in a single file Leon Anavi
  2020-06-12  9:47 ` [meta-python][PATCH 2/4] python3-packaging: Upgrade 20.3 -> 20.4 Leon Anavi
  2020-06-12  9:47 ` [meta-python][PATCH 3/4] python3-parse-type: Consolidate in a single file Leon Anavi
@ 2020-06-12  9:47 ` Leon Anavi
  2020-06-12 14:41   ` [oe] " Trevor Gamblin
  2020-06-12 14:40 ` [oe] [meta-python][PATCH 1/4] python3-packaging: Consolidate in a single file Trevor Gamblin
  3 siblings, 1 reply; 8+ messages in thread
From: Leon Anavi @ 2020-06-12  9:47 UTC (permalink / raw
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.5.2. The year in file LICENCE has been
changed therefore the checksum has been changed but it still
remains a BSD License. Add python3-six as a run-time dependency.
The new release brings:

- Update to parse-1.12.0
- Code cleanups
- Bug fixes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...n3-parse-type_0.4.2.bb => python3-parse-type_0.5.2.bb} | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-parse-type_0.4.2.bb => python3-parse-type_0.5.2.bb} (60%)

diff --git a/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb b/meta-python/recipes-devtools/python/python3-parse-type_0.5.2.bb
similarity index 60%
rename from meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb
rename to meta-python/recipes-devtools/python/python3-parse-type_0.5.2.bb
index a9e7a53ee..f61c480bd 100644
--- a/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb
+++ b/meta-python/recipes-devtools/python/python3-parse-type_0.5.2.bb
@@ -1,15 +1,15 @@
 SUMMARY = "Simplifies building parse types based on the parse module"
 HOMEPAGE = "https://github.com/jenisys/parse_type"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=d07323820cca0f1d192cbbf8a0516f95"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=16374dbaeaca1890153edb3f41371222"
 
-SRC_URI[md5sum] = "b5fa59e45965d1b2896023742df2e707"
-SRC_URI[sha256sum] = "f596bdc75d3dd93036fbfe3d04127da9f6df0c26c36e01e76da85adef4336b3c"
+SRC_URI[md5sum] = "b954062f14ab723a91fe1e2be15e859d"
+SRC_URI[sha256sum] = "7f690b18d35048c15438d6d0571f9045cffbec5907e0b1ccf006f889e3a38c0b"
 
 PYPI_PACKAGE = "parse_type"
 inherit pypi ptest setuptools3
 
-RDEPENDS_${PN} += "${PYTHON_PN}-parse"
+RDEPENDS_${PN} += "${PYTHON_PN}-parse ${PYTHON_PN}-six"
 
 SRC_URI += " \
 	file://run-ptest \
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/4] python3-packaging: Consolidate in a single file
  2020-06-12  9:47 [meta-python][PATCH 1/4] python3-packaging: Consolidate in a single file Leon Anavi
                   ` (2 preceding siblings ...)
  2020-06-12  9:47 ` [meta-python][PATCH 4/4] python3-parse-type: Upgrade 0.4.2 -> 0.5.2 Leon Anavi
@ 2020-06-12 14:40 ` Trevor Gamblin
  3 siblings, 0 replies; 8+ messages in thread
From: Trevor Gamblin @ 2020-06-12 14:40 UTC (permalink / raw
  To: Leon Anavi, openembedded-devel

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


On 6/12/20 5:47 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-packaging.inc     | 10 ----------
>   .../python/python3-packaging_20.3.bb                 | 12 +++++++++++-
>   2 files changed, 11 insertions(+), 11 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-packaging.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-packaging.inc b/meta-python/recipes-devtools/python/python-packaging.inc
> deleted file mode 100644
> index 418483f4e..000000000
> --- a/meta-python/recipes-devtools/python/python-packaging.inc
> +++ /dev/null
> @@ -1,10 +0,0 @@
> -DESCRIPTION = "Core utilities for Python packages"
> -HOMEPAGE = "https://github.com/pypa/packaging"
> -LICENSE = "Apache-2.0 & BSD"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"
> -
> -SRC_URI[md5sum] = "19e0d1f82a9007b448650ccfeffd0a26"
> -SRC_URI[sha256sum] = "3c292b474fda1671ec57d46d739d072bfd495a4f51ad01a055121d81e952b7a3"
> -
> -DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
> -RDEPENDS_${PN} += "${PYTHON_PN}-six ${PYTHON_PN}-pyparsing"
> diff --git a/meta-python/recipes-devtools/python/python3-packaging_20.3.bb b/meta-python/recipes-devtools/python/python3-packaging_20.3.bb
> index aa20fb26f..9eee84b1b 100644
> --- a/meta-python/recipes-devtools/python/python3-packaging_20.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-packaging_20.3.bb
> @@ -1,2 +1,12 @@
> +DESCRIPTION = "Core utilities for Python packages"
> +HOMEPAGE = "https://github.com/pypa/packaging"
> +LICENSE = "Apache-2.0 & BSD"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"
> +
> +SRC_URI[md5sum] = "19e0d1f82a9007b448650ccfeffd0a26"
> +SRC_URI[sha256sum] = "3c292b474fda1671ec57d46d739d072bfd495a4f51ad01a055121d81e952b7a3"
> +
>   inherit pypi setuptools3
> -require python-packaging.inc
> +
> +DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
> +RDEPENDS_${PN} += "${PYTHON_PN}-six ${PYTHON_PN}-pyparsing"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 2/4] python3-packaging: Upgrade 20.3 -> 20.4
  2020-06-12  9:47 ` [meta-python][PATCH 2/4] python3-packaging: Upgrade 20.3 -> 20.4 Leon Anavi
@ 2020-06-12 14:40   ` Trevor Gamblin
  0 siblings, 0 replies; 8+ messages in thread
From: Trevor Gamblin @ 2020-06-12 14:40 UTC (permalink / raw
  To: Leon Anavi, openembedded-devel

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


On 6/12/20 5:47 AM, Leon Anavi wrote:
> Upgrade to release 20.4 with the following improvements:
>
> - Canonicalize version before comparing specifiers
> - specifiers: don't rely on hashes for equality
> - Add a NewType for normalized names
> - Bug fixes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-packaging_20.3.bb => python3-packaging_20.4.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-packaging_20.3.bb => python3-packaging_20.4.bb} (70%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-packaging_20.3.bb b/meta-python/recipes-devtools/python/python3-packaging_20.4.bb
> similarity index 70%
> rename from meta-python/recipes-devtools/python/python3-packaging_20.3.bb
> rename to meta-python/recipes-devtools/python/python3-packaging_20.4.bb
> index 9eee84b1b..0f78fd016 100644
> --- a/meta-python/recipes-devtools/python/python3-packaging_20.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-packaging_20.4.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/pypa/packaging"
>   LICENSE = "Apache-2.0 & BSD"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"
>   
> -SRC_URI[md5sum] = "19e0d1f82a9007b448650ccfeffd0a26"
> -SRC_URI[sha256sum] = "3c292b474fda1671ec57d46d739d072bfd495a4f51ad01a055121d81e952b7a3"
> +SRC_URI[md5sum] = "3208229da731c5d8e29d4d8941e75005"
> +SRC_URI[sha256sum] = "4357f74f47b9c12db93624a82154e9b120fa8293699949152b22065d556079f8"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 3/4] python3-parse-type: Consolidate in a single file
  2020-06-12  9:47 ` [meta-python][PATCH 3/4] python3-parse-type: Consolidate in a single file Leon Anavi
@ 2020-06-12 14:41   ` Trevor Gamblin
  0 siblings, 0 replies; 8+ messages in thread
From: Trevor Gamblin @ 2020-06-12 14:41 UTC (permalink / raw
  To: Leon Anavi, openembedded-devel

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


On 6/12/20 5:47 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>
> ---
>   .../python/python-parse-type.inc              | 25 -----------------
>   .../python/python3-parse-type_0.4.2.bb        | 27 +++++++++++++++++--
>   2 files changed, 25 insertions(+), 27 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-parse-type.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-parse-type.inc b/meta-python/recipes-devtools/python/python-parse-type.inc
> deleted file mode 100644
> index 147ea6443..000000000
> --- a/meta-python/recipes-devtools/python/python-parse-type.inc
> +++ /dev/null
> @@ -1,25 +0,0 @@
> -SUMMARY = "Simplifies building parse types based on the parse module"
> -HOMEPAGE = "https://github.com/jenisys/parse_type"
> -LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=d07323820cca0f1d192cbbf8a0516f95"
> -
> -SRC_URI[md5sum] = "b5fa59e45965d1b2896023742df2e707"
> -SRC_URI[sha256sum] = "f596bdc75d3dd93036fbfe3d04127da9f6df0c26c36e01e76da85adef4336b3c"
> -
> -PYPI_PACKAGE = "parse_type"
> -inherit pypi ptest
> -
> -RDEPENDS_${PN} += "${PYTHON_PN}-parse"
> -
> -SRC_URI += " \
> -	file://run-ptest \
> -"
> -
> -RDEPENDS_${PN}-ptest += " \
> -	${PYTHON_PN}-pytest \
> -"
> -
> -do_install_ptest() {
> -	install -d ${D}${PTEST_PATH}/tests
> -	cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
> -}
> diff --git a/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb b/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb
> index 91d9ce2d4..a9e7a53ee 100644
> --- a/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb
> @@ -1,2 +1,25 @@
> -inherit setuptools3
> -require python-parse-type.inc
> +SUMMARY = "Simplifies building parse types based on the parse module"
> +HOMEPAGE = "https://github.com/jenisys/parse_type"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=d07323820cca0f1d192cbbf8a0516f95"
> +
> +SRC_URI[md5sum] = "b5fa59e45965d1b2896023742df2e707"
> +SRC_URI[sha256sum] = "f596bdc75d3dd93036fbfe3d04127da9f6df0c26c36e01e76da85adef4336b3c"
> +
> +PYPI_PACKAGE = "parse_type"
> +inherit pypi ptest setuptools3
> +
> +RDEPENDS_${PN} += "${PYTHON_PN}-parse"
> +
> +SRC_URI += " \
> +	file://run-ptest \
> +"
> +
> +RDEPENDS_${PN}-ptest += " \
> +	${PYTHON_PN}-pytest \
> +"
> +
> +do_install_ptest() {
> +	install -d ${D}${PTEST_PATH}/tests
> +	cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
> +}
>
> 

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

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

* Re: [oe] [meta-python][PATCH 4/4] python3-parse-type: Upgrade 0.4.2 -> 0.5.2
  2020-06-12  9:47 ` [meta-python][PATCH 4/4] python3-parse-type: Upgrade 0.4.2 -> 0.5.2 Leon Anavi
@ 2020-06-12 14:41   ` Trevor Gamblin
  0 siblings, 0 replies; 8+ messages in thread
From: Trevor Gamblin @ 2020-06-12 14:41 UTC (permalink / raw
  To: Leon Anavi, openembedded-devel

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


On 6/12/20 5:47 AM, Leon Anavi wrote:
> Upgrade to release 0.5.2. The year in file LICENCE has been
> changed therefore the checksum has been changed but it still
> remains a BSD License. Add python3-six as a run-time dependency.
> The new release brings:
>
> - Update to parse-1.12.0
> - Code cleanups
> - Bug fixes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...n3-parse-type_0.4.2.bb => python3-parse-type_0.5.2.bb} | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-parse-type_0.4.2.bb => python3-parse-type_0.5.2.bb} (60%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb b/meta-python/recipes-devtools/python/python3-parse-type_0.5.2.bb
> similarity index 60%
> rename from meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb
> rename to meta-python/recipes-devtools/python/python3-parse-type_0.5.2.bb
> index a9e7a53ee..f61c480bd 100644
> --- a/meta-python/recipes-devtools/python/python3-parse-type_0.4.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-parse-type_0.5.2.bb
> @@ -1,15 +1,15 @@
>   SUMMARY = "Simplifies building parse types based on the parse module"
>   HOMEPAGE = "https://github.com/jenisys/parse_type"
>   LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=d07323820cca0f1d192cbbf8a0516f95"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=16374dbaeaca1890153edb3f41371222"
>   
> -SRC_URI[md5sum] = "b5fa59e45965d1b2896023742df2e707"
> -SRC_URI[sha256sum] = "f596bdc75d3dd93036fbfe3d04127da9f6df0c26c36e01e76da85adef4336b3c"
> +SRC_URI[md5sum] = "b954062f14ab723a91fe1e2be15e859d"
> +SRC_URI[sha256sum] = "7f690b18d35048c15438d6d0571f9045cffbec5907e0b1ccf006f889e3a38c0b"
>   
>   PYPI_PACKAGE = "parse_type"
>   inherit pypi ptest setuptools3
>   
> -RDEPENDS_${PN} += "${PYTHON_PN}-parse"
> +RDEPENDS_${PN} += "${PYTHON_PN}-parse ${PYTHON_PN}-six"
>   
>   SRC_URI += " \
>   	file://run-ptest \
>
> 

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

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

end of thread, other threads:[~2020-06-12 14:41 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-12  9:47 [meta-python][PATCH 1/4] python3-packaging: Consolidate in a single file Leon Anavi
2020-06-12  9:47 ` [meta-python][PATCH 2/4] python3-packaging: Upgrade 20.3 -> 20.4 Leon Anavi
2020-06-12 14:40   ` [oe] " Trevor Gamblin
2020-06-12  9:47 ` [meta-python][PATCH 3/4] python3-parse-type: Consolidate in a single file Leon Anavi
2020-06-12 14:41   ` [oe] " Trevor Gamblin
2020-06-12  9:47 ` [meta-python][PATCH 4/4] python3-parse-type: Upgrade 0.4.2 -> 0.5.2 Leon Anavi
2020-06-12 14:41   ` [oe] " Trevor Gamblin
2020-06-12 14:40 ` [oe] [meta-python][PATCH 1/4] python3-packaging: Consolidate in a single file 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.