* [meta-oe][zeus][PATCH 1/3] python-more-itertools.inc: fix python2 package not incorrectly generated
@ 2019-11-22 16:30 Adrian Bunk
2019-11-22 16:30 ` [meta-oe][zeus][PATCH 2/3] python-more-itertools: downgrade 7.2.0 -> 5.0.0 Adrian Bunk
2019-11-22 16:30 ` [meta-oe][zeus][PATCH 3/3] python-more-itertools: Add PE Adrian Bunk
0 siblings, 2 replies; 5+ messages in thread
From: Adrian Bunk @ 2019-11-22 16:30 UTC (permalink / raw)
To: openembedded-devel
From: Hongxu Jia <hongxu.jia@windriver.com>
The package of python2 is incorrected generated to python3
...
tmp-glibc/work/core2-64-wrs-linux/python-more-itertools/7.2.0-r0$ find image/
image/
image/usr
image/usr/lib64
image/usr/lib64/python3.7
image/usr/lib64/python3.7/site-packages
image/usr/lib64/python3.7/site-packages/more_itertools
image/usr/lib64/python3.7/site-packages/more_itertools/__init__.py
image/usr/lib64/python3.7/site-packages/more_itertools/more.py
image/usr/lib64/python3.7/site-packages/more_itertools/recipes.py
image/usr/lib64/python3.7/site-packages/more_itertools/tests
image/usr/lib64/python3.7/site-packages/more_itertools/tests/__init__.py
image/usr/lib64/python3.7/site-packages/more_itertools/tests/test_more.py
image/usr/lib64/python3.7/site-packages/more_itertools/tests/test_recipes.py
image/usr/lib64/python3.7/site-packages/more_itertools/tests/__pycache__
image/usr/lib64/python3.7/site-packages/more_itertools/tests/__pycache__/__init__.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools/tests/__pycache__/test_more.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools/tests/__pycache__/test_recipes.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools/__pycache__
image/usr/lib64/python3.7/site-packages/more_itertools/__pycache__/__init__.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools/__pycache__/more.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools/__pycache__/recipes.cpython-37.pyc
image/usr/lib64/python3.7/site-packages/more_itertools-7.2.0-py3.7.egg-info
image/usr/lib64/python3.7/site-packages/more_itertools-7.2.0-py3.7.egg-info/PKG-INFO
image/usr/lib64/python3.7/site-packages/more_itertools-7.2.0-py3.7.egg-info/SOURCES.txt
image/usr/lib64/python3.7/site-packages/more_itertools-7.2.0-py3.7.egg-info/dependency_links.txt
image/usr/lib64/python3.7/site-packages/more_itertools-7.2.0-py3.7.egg-info/top_level.txt
...
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
meta-python/recipes-devtools/python/python-more-itertools.inc | 2 --
1 file changed, 2 deletions(-)
diff --git a/meta-python/recipes-devtools/python/python-more-itertools.inc b/meta-python/recipes-devtools/python/python-more-itertools.inc
index 41c334e8d..8d814a6f0 100644
--- a/meta-python/recipes-devtools/python/python-more-itertools.inc
+++ b/meta-python/recipes-devtools/python/python-more-itertools.inc
@@ -5,5 +5,3 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
SRC_URI[md5sum] = "f647bfd27243a7bebe53b5ddb6a3b1c4"
SRC_URI[sha256sum] = "409cd48d4db7052af495b09dec721011634af3753ae1ef92d2b32f73a745f832"
-
-inherit pypi setuptools3
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-oe][zeus][PATCH 2/3] python-more-itertools: downgrade 7.2.0 -> 5.0.0
2019-11-22 16:30 [meta-oe][zeus][PATCH 1/3] python-more-itertools.inc: fix python2 package not incorrectly generated Adrian Bunk
@ 2019-11-22 16:30 ` Adrian Bunk
2019-11-24 19:46 ` akuster808
2019-11-22 16:30 ` [meta-oe][zeus][PATCH 3/3] python-more-itertools: Add PE Adrian Bunk
1 sibling, 1 reply; 5+ messages in thread
From: Adrian Bunk @ 2019-11-22 16:30 UTC (permalink / raw)
To: openembedded-devel
From: Hongxu Jia <hongxu.jia@windriver.com>
Python 2.7 is no longer supported. The 5.0.0 release will be the last
version targeting Python 2.7. [1]
[1] https://github.com/erikrose/more-itertools/commit/560b045b430e8292c18cf5283de4fdc3e13e56f7
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
.../recipes-devtools/python/python-more-itertools.inc | 3 ---
.../recipes-devtools/python/python-more-itertools_5.0.0.bb | 5 +++++
.../recipes-devtools/python/python-more-itertools_7.2.0.bb | 2 --
.../recipes-devtools/python/python3-more-itertools_7.2.0.bb | 3 +++
4 files changed, 8 insertions(+), 5 deletions(-)
create mode 100644 meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb
delete mode 100644 meta-python/recipes-devtools/python/python-more-itertools_7.2.0.bb
diff --git a/meta-python/recipes-devtools/python/python-more-itertools.inc b/meta-python/recipes-devtools/python/python-more-itertools.inc
index 8d814a6f0..33095b3d3 100644
--- a/meta-python/recipes-devtools/python/python-more-itertools.inc
+++ b/meta-python/recipes-devtools/python/python-more-itertools.inc
@@ -2,6 +2,3 @@ DESCRIPTION = "More routines for operating on iterables, beyond itertools"
HOMEPAGE = "https://github.com/erikrose/more-itertools"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
-
-SRC_URI[md5sum] = "f647bfd27243a7bebe53b5ddb6a3b1c4"
-SRC_URI[sha256sum] = "409cd48d4db7052af495b09dec721011634af3753ae1ef92d2b32f73a745f832"
diff --git a/meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb b/meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb
new file mode 100644
index 000000000..c66e55cac
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb
@@ -0,0 +1,5 @@
+inherit pypi setuptools
+require python-more-itertools.inc
+
+SRC_URI[md5sum] = "f2ea58aa336ce6c13b7b225b3bbe305d"
+SRC_URI[sha256sum] = "38a936c0a6d98a38bcc2d03fdaaedaba9f412879461dd2ceff8d37564d6522e4"
diff --git a/meta-python/recipes-devtools/python/python-more-itertools_7.2.0.bb b/meta-python/recipes-devtools/python/python-more-itertools_7.2.0.bb
deleted file mode 100644
index 0702aad4e..000000000
--- a/meta-python/recipes-devtools/python/python-more-itertools_7.2.0.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-inherit pypi setuptools
-require python-more-itertools.inc
diff --git a/meta-python/recipes-devtools/python/python3-more-itertools_7.2.0.bb b/meta-python/recipes-devtools/python/python3-more-itertools_7.2.0.bb
index 28ddf88fb..06d45ce54 100644
--- a/meta-python/recipes-devtools/python/python3-more-itertools_7.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-more-itertools_7.2.0.bb
@@ -1,2 +1,5 @@
inherit pypi setuptools3
require python-more-itertools.inc
+
+SRC_URI[md5sum] = "f647bfd27243a7bebe53b5ddb6a3b1c4"
+SRC_URI[sha256sum] = "409cd48d4db7052af495b09dec721011634af3753ae1ef92d2b32f73a745f832"
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-oe][zeus][PATCH 3/3] python-more-itertools: Add PE
2019-11-22 16:30 [meta-oe][zeus][PATCH 1/3] python-more-itertools.inc: fix python2 package not incorrectly generated Adrian Bunk
2019-11-22 16:30 ` [meta-oe][zeus][PATCH 2/3] python-more-itertools: downgrade 7.2.0 -> 5.0.0 Adrian Bunk
@ 2019-11-22 16:30 ` Adrian Bunk
1 sibling, 0 replies; 5+ messages in thread
From: Adrian Bunk @ 2019-11-22 16:30 UTC (permalink / raw)
To: openembedded-devel
The recipe was downgraded to the last version supporting Python 2.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
.../recipes-devtools/python/python-more-itertools_5.0.0.bb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb b/meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb
index c66e55cac..6c44df40a 100644
--- a/meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb
+++ b/meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb
@@ -3,3 +3,5 @@ require python-more-itertools.inc
SRC_URI[md5sum] = "f2ea58aa336ce6c13b7b225b3bbe305d"
SRC_URI[sha256sum] = "38a936c0a6d98a38bcc2d03fdaaedaba9f412879461dd2ceff8d37564d6522e4"
+
+PE = "1"
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-oe][zeus][PATCH 2/3] python-more-itertools: downgrade 7.2.0 -> 5.0.0
2019-11-22 16:30 ` [meta-oe][zeus][PATCH 2/3] python-more-itertools: downgrade 7.2.0 -> 5.0.0 Adrian Bunk
@ 2019-11-24 19:46 ` akuster808
2019-11-24 20:26 ` Adrian Bunk
0 siblings, 1 reply; 5+ messages in thread
From: akuster808 @ 2019-11-24 19:46 UTC (permalink / raw)
To: Adrian Bunk, openembedded-devel
On 11/22/19 8:30 AM, Adrian Bunk wrote:
> From: Hongxu Jia <hongxu.jia@windriver.com>
>
> Python 2.7 is no longer supported. The 5.0.0 release will be the last
> version targeting Python 2.7. [1]
why is this a zeus issue? Zeus core is still supporting 2.7. Please clarify.
- armin
> [1] https://github.com/erikrose/more-itertools/commit/560b045b430e8292c18cf5283de4fdc3e13e56f7
>
> Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> Signed-off-by: Adrian Bunk <bunk@stusta.de>
> ---
> .../recipes-devtools/python/python-more-itertools.inc | 3 ---
> .../recipes-devtools/python/python-more-itertools_5.0.0.bb | 5 +++++
> .../recipes-devtools/python/python-more-itertools_7.2.0.bb | 2 --
> .../recipes-devtools/python/python3-more-itertools_7.2.0.bb | 3 +++
> 4 files changed, 8 insertions(+), 5 deletions(-)
> create mode 100644 meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb
> delete mode 100644 meta-python/recipes-devtools/python/python-more-itertools_7.2.0.bb
>
> diff --git a/meta-python/recipes-devtools/python/python-more-itertools.inc b/meta-python/recipes-devtools/python/python-more-itertools.inc
> index 8d814a6f0..33095b3d3 100644
> --- a/meta-python/recipes-devtools/python/python-more-itertools.inc
> +++ b/meta-python/recipes-devtools/python/python-more-itertools.inc
> @@ -2,6 +2,3 @@ DESCRIPTION = "More routines for operating on iterables, beyond itertools"
> HOMEPAGE = "https://github.com/erikrose/more-itertools"
> LICENSE = "MIT"
> LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
> -
> -SRC_URI[md5sum] = "f647bfd27243a7bebe53b5ddb6a3b1c4"
> -SRC_URI[sha256sum] = "409cd48d4db7052af495b09dec721011634af3753ae1ef92d2b32f73a745f832"
> diff --git a/meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb b/meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb
> new file mode 100644
> index 000000000..c66e55cac
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-more-itertools_5.0.0.bb
> @@ -0,0 +1,5 @@
> +inherit pypi setuptools
> +require python-more-itertools.inc
> +
> +SRC_URI[md5sum] = "f2ea58aa336ce6c13b7b225b3bbe305d"
> +SRC_URI[sha256sum] = "38a936c0a6d98a38bcc2d03fdaaedaba9f412879461dd2ceff8d37564d6522e4"
> diff --git a/meta-python/recipes-devtools/python/python-more-itertools_7.2.0.bb b/meta-python/recipes-devtools/python/python-more-itertools_7.2.0.bb
> deleted file mode 100644
> index 0702aad4e..000000000
> --- a/meta-python/recipes-devtools/python/python-more-itertools_7.2.0.bb
> +++ /dev/null
> @@ -1,2 +0,0 @@
> -inherit pypi setuptools
> -require python-more-itertools.inc
> diff --git a/meta-python/recipes-devtools/python/python3-more-itertools_7.2.0.bb b/meta-python/recipes-devtools/python/python3-more-itertools_7.2.0.bb
> index 28ddf88fb..06d45ce54 100644
> --- a/meta-python/recipes-devtools/python/python3-more-itertools_7.2.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-more-itertools_7.2.0.bb
> @@ -1,2 +1,5 @@
> inherit pypi setuptools3
> require python-more-itertools.inc
> +
> +SRC_URI[md5sum] = "f647bfd27243a7bebe53b5ddb6a3b1c4"
> +SRC_URI[sha256sum] = "409cd48d4db7052af495b09dec721011634af3753ae1ef92d2b32f73a745f832"
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-oe][zeus][PATCH 2/3] python-more-itertools: downgrade 7.2.0 -> 5.0.0
2019-11-24 19:46 ` akuster808
@ 2019-11-24 20:26 ` Adrian Bunk
0 siblings, 0 replies; 5+ messages in thread
From: Adrian Bunk @ 2019-11-24 20:26 UTC (permalink / raw)
To: akuster808; +Cc: openembedded-devel
On Sun, Nov 24, 2019 at 11:46:10AM -0800, akuster808 wrote:
>
>
> On 11/22/19 8:30 AM, Adrian Bunk wrote:
> > From: Hongxu Jia <hongxu.jia@windriver.com>
> >
> > Python 2.7 is no longer supported. The 5.0.0 release will be the last
> > version targeting Python 2.7. [1]
> why is this a zeus issue? Zeus core is still supporting 2.7. Please clarify.
python-more-itertools > 5.0.0 does not support Python 2.7.
> - armin
>...
cu
Adrian
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-11-24 20:27 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-22 16:30 [meta-oe][zeus][PATCH 1/3] python-more-itertools.inc: fix python2 package not incorrectly generated Adrian Bunk
2019-11-22 16:30 ` [meta-oe][zeus][PATCH 2/3] python-more-itertools: downgrade 7.2.0 -> 5.0.0 Adrian Bunk
2019-11-24 19:46 ` akuster808
2019-11-24 20:26 ` Adrian Bunk
2019-11-22 16:30 ` [meta-oe][zeus][PATCH 3/3] python-more-itertools: Add PE Adrian Bunk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox