All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-python] [PATCH] python3-jdcal: Enable ptest
@ 2020-04-21  1:58 zangrc
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-jinja2: " zangrc
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: zangrc @ 2020-04-21  1:58 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python3-jdcal/run-ptest                 |  3 +++
 .../recipes-devtools/python/python3-jdcal_1.4.1.bb | 14 +++++++++++++-
 2 files changed, 16 insertions(+), 1 deletion(-)
 create mode 100644 meta-python/recipes-devtools/python/python3-jdcal/run-ptest

diff --git a/meta-python/recipes-devtools/python/python3-jdcal/run-ptest b/meta-python/recipes-devtools/python/python3-jdcal/run-ptest
new file mode 100644
index 000000000..5cec71169
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-jdcal/run-ptest
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+pytest
diff --git a/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb b/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb
index c8b5c953b..46deeae15 100644
--- a/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb
@@ -7,9 +7,21 @@ HOMEPAGE = "https://github.com/phn/jdcal"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://PKG-INFO;md5=bd236e1f590973467a427bb354be0f46"
 
-inherit pypi setuptools3
+inherit pypi setuptools3 ptest
 
 SRC_URI[md5sum] = "e05bdb60fa80f25bc60e73e0c6b7c5dc"
 SRC_URI[sha256sum] = "472872e096eb8df219c23f2689fc336668bdb43d194094b5cc1707e1640acfc8"
 
 RDEPENDS_${PN} += "${PYTHON_PN}-compression ${PYTHON_PN}-io ${PYTHON_PN}-pprint ${PYTHON_PN}-shell"
+
+SRC_URI += " \
+	file://run-ptest \
+"
+
+RDEPENDS_${PN}-ptest += " \
+	${PYTHON_PN}-pytest \
+"
+
+do_install_ptest() {
+	cp -f ${S}/test_jdcal.py ${D}${PTEST_PATH}/
+}
-- 
2.20.1




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

* [oe] [meta-python] [PATCH] python3-jinja2: Enable ptest
  2020-04-21  1:58 [oe] [meta-python] [PATCH] python3-jdcal: Enable ptest zangrc
@ 2020-04-21  1:58 ` zangrc
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-jsonpointer: " zangrc
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: zangrc @ 2020-04-21  1:58 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-jinja2.inc    | 16 ++++++++++++++++
 .../python/python3-jinja2/run-ptest              |  3 +++
 2 files changed, 19 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-jinja2/run-ptest

diff --git a/meta-python/recipes-devtools/python/python-jinja2.inc b/meta-python/recipes-devtools/python/python-jinja2.inc
index 6a95b953f..927230515 100644
--- a/meta-python/recipes-devtools/python/python-jinja2.inc
+++ b/meta-python/recipes-devtools/python/python-jinja2.inc
@@ -15,3 +15,19 @@ RDEPENDS_${PN} += "${PYTHON_PN}-io ${PYTHON_PN}-pickle ${PYTHON_PN}-crypt \
 CLEANBROKEN = "1"
 
 BBCLASSEXTEND = "native nativesdk"
+
+inherit ptest
+
+SRC_URI += " \
+	file://run-ptest \
+"
+
+RDEPENDS_${PN}-ptest += " \
+	${PYTHON_PN}-pytest \
+	${PYTHON_PN}-unixadmin \
+"
+
+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-jinja2/run-ptest b/meta-python/recipes-devtools/python/python3-jinja2/run-ptest
new file mode 100644
index 000000000..5cec71169
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-jinja2/run-ptest
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+pytest
-- 
2.20.1




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

* [oe] [meta-python] [PATCH] python3-jsonpointer: Enable ptest
  2020-04-21  1:58 [oe] [meta-python] [PATCH] python3-jdcal: Enable ptest zangrc
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-jinja2: " zangrc
@ 2020-04-21  1:58 ` zangrc
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-license-expression: " zangrc
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: zangrc @ 2020-04-21  1:58 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-jsonpointer.inc | 14 +++++++++++++-
 .../python/python3-jsonpointer/run-ptest           |  3 +++
 2 files changed, 16 insertions(+), 1 deletion(-)
 create mode 100644 meta-python/recipes-devtools/python/python3-jsonpointer/run-ptest

diff --git a/meta-python/recipes-devtools/python/python-jsonpointer.inc b/meta-python/recipes-devtools/python/python-jsonpointer.inc
index b6e4836ef..3e41b70b8 100644
--- a/meta-python/recipes-devtools/python/python-jsonpointer.inc
+++ b/meta-python/recipes-devtools/python/python-jsonpointer.inc
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/stefankoegl/python-json-pointer"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=32b15c843b7a329130f4e266a281ebb3"
 
-inherit pypi
+inherit pypi ptest
 
 SRC_URI[md5sum] = "741b98d0e693b08b5e44e0a9da5a7bb7"
 SRC_URI[sha256sum] = "c192ba86648e05fdae4f08a17ec25180a9aef5008d973407b581798a83975362"
@@ -13,3 +13,15 @@ RDEPENDS_${PN} += " \
 "
 
 BBCLASSEXTEND = "native nativesdk"
+
+SRC_URI += " \
+	file://run-ptest \
+"
+
+RDEPENDS_${PN}-ptest += " \
+	${PYTHON_PN}-pytest \
+"
+
+do_install_ptest() {
+	cp -f ${S}/tests.py ${D}${PTEST_PATH}/
+}
diff --git a/meta-python/recipes-devtools/python/python3-jsonpointer/run-ptest b/meta-python/recipes-devtools/python/python3-jsonpointer/run-ptest
new file mode 100644
index 000000000..51e609f4b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-jsonpointer/run-ptest
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+python3 tests.py
-- 
2.20.1




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

* [oe] [meta-python] [PATCH] python3-license-expression: Enable ptest
  2020-04-21  1:58 [oe] [meta-python] [PATCH] python3-jdcal: Enable ptest zangrc
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-jinja2: " zangrc
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-jsonpointer: " zangrc
@ 2020-04-21  1:58 ` zangrc
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-markupsafe: " zangrc
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: zangrc @ 2020-04-21  1:58 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python-license-expression.inc          | 15 ++++++++++++++-
 .../python/python3-license-expression/run-ptest   |  3 +++
 2 files changed, 17 insertions(+), 1 deletion(-)
 create mode 100644 meta-python/recipes-devtools/python/python3-license-expression/run-ptest

diff --git a/meta-python/recipes-devtools/python/python-license-expression.inc b/meta-python/recipes-devtools/python/python-license-expression.inc
index 4c35e8dd7..add25810d 100644
--- a/meta-python/recipes-devtools/python/python-license-expression.inc
+++ b/meta-python/recipes-devtools/python/python-license-expression.inc
@@ -7,10 +7,23 @@ LIC_FILES_CHKSUM = "file://apache-2.0.LICENSE;md5=e23fadd6ceef8c618fc1c65191d846
 SRC_URI[md5sum] = "81477f779099f55071c6a7b88a29bb01"
 SRC_URI[sha256sum] = "8aaa455c5b97c4f2174090178b19792b2a1c620e80591aafd4e0a99b713f9e8d"
 
-inherit pypi
+inherit pypi ptest
 
 RDEPENDS_${PN} += "\
     ${PYTHON_PN}-booleanpy \
     "
 
 BBCLASSEXTEND = "native nativesdk"
+
+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-license-expression/run-ptest b/meta-python/recipes-devtools/python/python3-license-expression/run-ptest
new file mode 100644
index 000000000..5cec71169
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-license-expression/run-ptest
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+pytest
-- 
2.20.1




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

* [oe] [meta-python] [PATCH] python3-markupsafe: Enable ptest
  2020-04-21  1:58 [oe] [meta-python] [PATCH] python3-jdcal: Enable ptest zangrc
                   ` (2 preceding siblings ...)
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-license-expression: " zangrc
@ 2020-04-21  1:58 ` zangrc
  2020-04-21  4:20   ` Khem Raj
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-more-itertools: " zangrc
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-msgpack: " zangrc
  5 siblings, 1 reply; 10+ messages in thread
From: zangrc @ 2020-04-21  1:58 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-markupsafe.inc | 15 ++++++++++++++-
 .../python/python3-markupsafe/run-ptest           |  3 +++
 2 files changed, 17 insertions(+), 1 deletion(-)
 create mode 100644 meta-python/recipes-devtools/python/python3-markupsafe/run-ptest

diff --git a/meta-python/recipes-devtools/python/python-markupsafe.inc b/meta-python/recipes-devtools/python/python-markupsafe.inc
index 33d63b3e5..480876268 100644
--- a/meta-python/recipes-devtools/python/python-markupsafe.inc
+++ b/meta-python/recipes-devtools/python/python-markupsafe.inc
@@ -7,8 +7,21 @@ SRC_URI[md5sum] = "43fd756864fe42063068e092e220c57b"
 SRC_URI[sha256sum] = "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b"
 
 PYPI_PACKAGE = "MarkupSafe"
-inherit pypi
+inherit pypi ptest
 
 RDEPENDS_${PN} += "${PYTHON_PN}-stringold"
 
 BBCLASSEXTEND = "native nativesdk"
+
+SRC_URI += " \
+	file://run-ptest \
+"
+
+RDEPENDS_${PN}-ptest += " \
+	${PYTHON_PN}-pytest \
+"
+
+do_install_ptest() {
+	install -d ${D}${PTEST_PATH}/tests
+	cp -f ${S}/tests/* ${D}${PTEST_PATH}/tests/
+}
diff --git a/meta-python/recipes-devtools/python/python3-markupsafe/run-ptest b/meta-python/recipes-devtools/python/python3-markupsafe/run-ptest
new file mode 100644
index 000000000..5cec71169
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-markupsafe/run-ptest
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+pytest
-- 
2.20.1




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

* [oe] [meta-python] [PATCH] python3-more-itertools: Enable ptest
  2020-04-21  1:58 [oe] [meta-python] [PATCH] python3-jdcal: Enable ptest zangrc
                   ` (3 preceding siblings ...)
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-markupsafe: " zangrc
@ 2020-04-21  1:58 ` zangrc
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-msgpack: " zangrc
  5 siblings, 0 replies; 10+ messages in thread
From: zangrc @ 2020-04-21  1:58 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python-more-itertools.inc              | 15 +++++++++++++++
 .../python/python3-more-itertools/run-ptest       |  3 +++
 2 files changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-more-itertools/run-ptest

diff --git a/meta-python/recipes-devtools/python/python-more-itertools.inc b/meta-python/recipes-devtools/python/python-more-itertools.inc
index 8dcf00b3f..0b684c1b1 100644
--- a/meta-python/recipes-devtools/python/python-more-itertools.inc
+++ b/meta-python/recipes-devtools/python/python-more-itertools.inc
@@ -4,3 +4,18 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
 
 BBCLASSEXTEND = "native nativesdk"
+
+inherit ptest
+
+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-more-itertools/run-ptest b/meta-python/recipes-devtools/python/python3-more-itertools/run-ptest
new file mode 100644
index 000000000..5cec71169
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-more-itertools/run-ptest
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+pytest
-- 
2.20.1




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

* [oe] [meta-python] [PATCH] python3-msgpack: Enable ptest
  2020-04-21  1:58 [oe] [meta-python] [PATCH] python3-jdcal: Enable ptest zangrc
                   ` (4 preceding siblings ...)
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-more-itertools: " zangrc
@ 2020-04-21  1:58 ` zangrc
  2020-04-21 10:37   ` Ross Burton
  5 siblings, 1 reply; 10+ messages in thread
From: zangrc @ 2020-04-21  1:58 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python3-msgpack/run-ptest              |  3 +++
 .../python/python3-msgpack_0.6.2.bb               | 15 ++++++++++++++-
 2 files changed, 17 insertions(+), 1 deletion(-)
 create mode 100644 meta-python/recipes-devtools/python/python3-msgpack/run-ptest

diff --git a/meta-python/recipes-devtools/python/python3-msgpack/run-ptest b/meta-python/recipes-devtools/python/python3-msgpack/run-ptest
new file mode 100644
index 000000000..5cec71169
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-msgpack/run-ptest
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+pytest
diff --git a/meta-python/recipes-devtools/python/python3-msgpack_0.6.2.bb b/meta-python/recipes-devtools/python/python3-msgpack_0.6.2.bb
index 7cfaf1c51..6d7e7a0dc 100644
--- a/meta-python/recipes-devtools/python/python3-msgpack_0.6.2.bb
+++ b/meta-python/recipes-devtools/python/python3-msgpack_0.6.2.bb
@@ -3,7 +3,7 @@ LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://COPYING;md5=cd9523181d9d4fbf7ffca52eaa2a5751"
 
 PYPI_PACKAGE = "msgpack"
-inherit pypi setuptools3
+inherit pypi setuptools3 ptest
 
 SRC_URI[md5sum] = "ba46fdee995565f40e332bd7eea882f1"
 SRC_URI[sha256sum] = "ea3c2f859346fcd55fc46e96885301d9c2f7a36d453f5d8f2967840efa1e1830"
@@ -13,3 +13,16 @@ RDEPENDS_${PN}_class-target += "\
 "
 
 BBCLASSEXTEND = "native nativesdk"
+
+SRC_URI += " \
+	file://run-ptest \
+"
+
+RDEPENDS_${PN}-ptest += " \
+	${PYTHON_PN}-pytest \
+"
+
+do_install_ptest() {
+	install -d ${D}${PTEST_PATH}/test
+	cp -rf ${S}/test/* ${D}${PTEST_PATH}/test/
+}
-- 
2.20.1




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

* Re: [oe] [meta-python] [PATCH] python3-markupsafe: Enable ptest
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-markupsafe: " zangrc
@ 2020-04-21  4:20   ` Khem Raj
  0 siblings, 0 replies; 10+ messages in thread
From: Khem Raj @ 2020-04-21  4:20 UTC (permalink / raw)
  To: zangrc; +Cc: openembedded-devel

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

On Mon, Apr 20, 2020 at 7:01 PM zangrc <zangrc.fnst@cn.fujitsu.com> wrote:

> Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
> ---
>  .../recipes-devtools/python/python-markupsafe.inc | 15 ++++++++++++++-
>  .../python/python3-markupsafe/run-ptest           |  3 +++
>  2 files changed, 17 insertions(+), 1 deletion(-)
>  create mode 100644
> meta-python/recipes-devtools/python/python3-markupsafe/run-ptest
>
> diff --git a/meta-python/recipes-devtools/python/python-markupsafe.inc
> b/meta-python/recipes-devtools/python/python-markupsafe.inc
> index 33d63b3e5..480876268 100644
> --- a/meta-python/recipes-devtools/python/python-markupsafe.inc
> +++ b/meta-python/recipes-devtools/python/python-markupsafe.inc
> @@ -7,8 +7,21 @@ SRC_URI[md5sum] = "43fd756864fe42063068e092e220c57b"
>  SRC_URI[sha256sum] =
> "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b"
>
>  PYPI_PACKAGE = "MarkupSafe"
> -inherit pypi
> +inherit pypi ptest
>
>  RDEPENDS_${PN} += "${PYTHON_PN}-stringold"
>
>  BBCLASSEXTEND = "native nativesdk"
> +
> +SRC_URI += " \
> +       file://run-ptest \
> +"
> +
> +RDEPENDS_${PN}-ptest += " \
> +       ${PYTHON_PN}-pytest \
> +"
> +
> +do_install_ptest() {
> +       install -d ${D}${PTEST_PATH}/tests
> +       cp -f ${S}/tests/* ${D}${PTEST_PATH}/tests/
> +}


I wonder of cp would need equivalent options to match install behavior to
not preserve user permissions etc


> diff --git
> a/meta-python/recipes-devtools/python/python3-markupsafe/run-ptest
> b/meta-python/recipes-devtools/python/python3-markupsafe/run-ptest
> new file mode 100644
> index 000000000..5cec71169
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-markupsafe/run-ptest
> @@ -0,0 +1,3 @@
> +#!/bin/sh
> +
> +pytest
> --
> 2.20.1
>
>
>
> 
>

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

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

* Re: [oe] [meta-python] [PATCH] python3-msgpack: Enable ptest
  2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-msgpack: " zangrc
@ 2020-04-21 10:37   ` Ross Burton
       [not found]     ` <55ff716b-58fd-955d-13e2-ff2aaa595785@cn.fujitsu.com>
  0 siblings, 1 reply; 10+ messages in thread
From: Ross Burton @ 2020-04-21 10:37 UTC (permalink / raw)
  To: zangrc; +Cc: openembedded-devel

On Tue, 21 Apr 2020 at 03:01, zangrc <zangrc.fnst@cn.fujitsu.com> wrote:
> +#!/bin/sh
> +
> +pytest

What is the format of the output of this?  The expected output from
ptest is the same as automake's simple format,
https://www.gnu.org/software/automake/manual/automake.html#Simple-Tests.

Ross

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

* Re: [oe] [meta-python] [PATCH] python3-msgpack: Enable ptest
       [not found]     ` <55ff716b-58fd-955d-13e2-ff2aaa595785@cn.fujitsu.com>
@ 2020-04-22  8:59       ` Ross Burton
  0 siblings, 0 replies; 10+ messages in thread
From: Ross Burton @ 2020-04-22  8:59 UTC (permalink / raw)
  To: zangrc, openembedded-devel

[ Re-adding oe-devel to the CC list. ]

On Wed, 22 Apr 2020 at 04:57, zangrc <zangrc.fnst@cn.fujitsu.com> wrote:
> For the run-ptest file, I imitated the OSS with ptest enabled in meta-python, but for the test component of python, it is difficult to make the output format the same as automake.

For code using unittest, it's actually fairly simple, you just need a
new unittest reporter implementation (about 10 lines of code) and then
run the tests with that instead.  Pytest has plugins for TAP output so
automake-style output should be simple too.

I'd endorse putting a new unittest class into the python3 recipe and a
pytest plugin into the pytest recipe so that they are available for
everyone to use.


Ross

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

end of thread, other threads:[~2020-04-22  8:59 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-21  1:58 [oe] [meta-python] [PATCH] python3-jdcal: Enable ptest zangrc
2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-jinja2: " zangrc
2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-jsonpointer: " zangrc
2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-license-expression: " zangrc
2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-markupsafe: " zangrc
2020-04-21  4:20   ` Khem Raj
2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-more-itertools: " zangrc
2020-04-21  1:58 ` [oe] [meta-python] [PATCH] python3-msgpack: " zangrc
2020-04-21 10:37   ` Ross Burton
     [not found]     ` <55ff716b-58fd-955d-13e2-ff2aaa595785@cn.fujitsu.com>
2020-04-22  8:59       ` Ross Burton

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.