From: "Tim Orling" <ticotimo@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 00/18] Move python3-pytest to oe-core
Date: Fri, 27 Nov 2020 20:24:13 -0800 [thread overview]
Message-ID: <cover.1606536874.git.timothy.t.orling@linux.intel.com> (raw)
From: Tim Orling <timothy.t.orling@linux.intel.com>
We are increasingly needing pytest in oe-core, so it is time to move it
from meta-python.
This series first imports the recipes -- as-is -- from meta-python.
Second, the maintainers.inc is updated to add myself as maintainer for all
the new recipes.
Third, the two recipes that have stable updates are updated to their
latest releases.
Finally, a fix caught during ptest runs is added for RDEPENDS for
pytest.
This was built on 'nodistro' with only openembedded-core and tested on
qemux86-64. All the new recipes that have ptests pass all tests.
The following changes since commit 6e3785a3f1f3cf68f5fe101cd6bebe91db165973:
uninative: Don't use single sstate for pseudo-native (2020-11-24 15:53:04 +0000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib timo/add-pytest-to-oe-core
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=timo/add-pytest-to-oe-core
For convenience, the same series is also available at the Git repository
at:
git://git.yoctoproject.org/poky-contrib timo/move-pytest-to-core
http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=timo/move-pytest-to-core
Tim Orling (18):
python3-atomicwrites: move from meta-python
python3-attrs: move from meta-python
python3-iniconfig: move from meta-python
python3-more-itertools: move from meta-python
python3-pathlib2: move from meta-python
python3-toml: move from meta-python
python3-py: move from meta-python
python3-setuptools-scm: move from meta-python
python3-packaging: move from meta-python
python3-wcwidth: move from meta-python
python3-zipp: move from meta-python
python3-importlib-metadata: move from meta-python
python3-pluggy: move from meta-python
python3-pytest: move from meta-python
maintainers.inc: add self for new pytest packages
python3-more-itertools: upgrade 8.5.0 -> 8.6.0
python3-importlib-metadata: upgrade 2.0.0 to 3.1.0
python3-pytest: RDEPENDS on python3-toml
meta/conf/distro/include/maintainers.inc | 14 +++++++
.../python/python3-atomicwrites/run-ptest | 3 ++
.../python/python3-atomicwrites_1.4.0.bb | 25 ++++++++++++
.../python/python3-attrs_20.3.0.bb | 20 ++++++++++
.../python3-importlib-metadata_3.1.0.bb | 18 +++++++++
.../python/python3-iniconfig_1.1.1.bb | 9 +++++
.../python/python3-more-itertools/run-ptest | 3 ++
.../python/python3-more-itertools_8.6.0.bb | 23 +++++++++++
.../python/python3-packaging_20.4.bb | 14 +++++++
.../python/python3-pathlib2_2.3.5.bb | 13 +++++++
.../python/python3-pluggy/run-ptest | 3 ++
.../python/python3-pluggy_0.13.1.bb | 27 +++++++++++++
.../python/python3-py_1.9.0.bb | 15 +++++++
...he-setup_requires-for-setuptools-scm.patch | 39 +++++++++++++++++++
.../python/python3-pytest_6.1.2.bb | 39 +++++++++++++++++++
.../python/python3-setuptools-scm_4.1.2.bb | 21 ++++++++++
.../python/python3-toml_0.10.2.bb | 15 +++++++
.../python/python3-wcwidth/run-ptest | 3 ++
.../python/python3-wcwidth_0.2.5.bb | 25 ++++++++++++
.../python/python3-zipp_3.4.0.bb | 19 +++++++++
20 files changed, 348 insertions(+)
create mode 100644 meta/recipes-devtools/python/python3-atomicwrites/run-ptest
create mode 100644 meta/recipes-devtools/python/python3-atomicwrites_1.4.0.bb
create mode 100644 meta/recipes-devtools/python/python3-attrs_20.3.0.bb
create mode 100644 meta/recipes-devtools/python/python3-importlib-metadata_3.1.0.bb
create mode 100644 meta/recipes-devtools/python/python3-iniconfig_1.1.1.bb
create mode 100644 meta/recipes-devtools/python/python3-more-itertools/run-ptest
create mode 100644 meta/recipes-devtools/python/python3-more-itertools_8.6.0.bb
create mode 100644 meta/recipes-devtools/python/python3-packaging_20.4.bb
create mode 100644 meta/recipes-devtools/python/python3-pathlib2_2.3.5.bb
create mode 100644 meta/recipes-devtools/python/python3-pluggy/run-ptest
create mode 100644 meta/recipes-devtools/python/python3-pluggy_0.13.1.bb
create mode 100644 meta/recipes-devtools/python/python3-py_1.9.0.bb
create mode 100644 meta/recipes-devtools/python/python3-pytest/0001-setup.py-remove-the-setup_requires-for-setuptools-scm.patch
create mode 100644 meta/recipes-devtools/python/python3-pytest_6.1.2.bb
create mode 100644 meta/recipes-devtools/python/python3-setuptools-scm_4.1.2.bb
create mode 100644 meta/recipes-devtools/python/python3-toml_0.10.2.bb
create mode 100644 meta/recipes-devtools/python/python3-wcwidth/run-ptest
create mode 100644 meta/recipes-devtools/python/python3-wcwidth_0.2.5.bb
create mode 100644 meta/recipes-devtools/python/python3-zipp_3.4.0.bb
--
2.25.0
next reply other threads:[~2020-11-28 4:24 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-28 4:24 Tim Orling [this message]
2020-11-28 4:24 ` [PATCH 01/18] python3-atomicwrites: move from meta-python Tim Orling
2020-11-28 4:24 ` [PATCH 02/18] python3-attrs: " Tim Orling
2020-11-28 4:24 ` [PATCH 03/18] python3-iniconfig: " Tim Orling
2020-11-28 4:24 ` [PATCH 04/18] python3-more-itertools: " Tim Orling
2020-11-28 4:24 ` [PATCH 05/18] python3-pathlib2: " Tim Orling
2020-11-28 4:24 ` [PATCH 06/18] python3-toml: " Tim Orling
2020-11-28 4:24 ` [PATCH 07/18] python3-py: " Tim Orling
2020-11-28 4:24 ` [PATCH 08/18] python3-setuptools-scm: " Tim Orling
2020-11-28 4:24 ` [PATCH 09/18] python3-packaging: " Tim Orling
2020-11-28 4:24 ` [PATCH 10/18] python3-wcwidth: " Tim Orling
2020-11-28 4:24 ` [PATCH 11/18] python3-zipp: " Tim Orling
2020-11-28 4:24 ` [PATCH 12/18] python3-importlib-metadata: " Tim Orling
2020-11-28 4:24 ` [PATCH 13/18] python3-pluggy: " Tim Orling
2020-11-28 4:24 ` [PATCH 14/18] python3-pytest: " Tim Orling
2020-11-28 4:24 ` [PATCH 15/18] maintainers.inc: add self for new pytest packages Tim Orling
2020-11-28 4:24 ` [PATCH 16/18] python3-more-itertools: upgrade 8.5.0 -> 8.6.0 Tim Orling
2020-11-28 4:24 ` [PATCH 17/18] python3-importlib-metadata: upgrade 2.0.0 to 3.1.0 Tim Orling
2020-11-28 4:24 ` [PATCH 18/18] python3-pytest: RDEPENDS on python3-toml Tim Orling
2020-11-28 7:31 ` [OE-core] [PATCH 00/18] Move python3-pytest to oe-core Khem Raj
2020-11-30 3:52 ` akuster
2020-11-30 21:36 ` Richard Purdie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1606536874.git.timothy.t.orling@linux.intel.com \
--to=ticotimo@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox