All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/7] python3-hypothesis: upgrade 6.15.0 -> 6.23.2
@ 2021-10-12  2:08 Tim Orling
  2021-10-12  2:08 ` [PATCH 2/7] python3-importlib-metadata: upgrade 4.6.4 -> 4.8.1 Tim Orling
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Tim Orling @ 2021-10-12  2:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tim Orling

For changes, see:
https://hypothesis.readthedocs.io/en/latest/changes.html#v6-23-2

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
---
 ...ython3-hypothesis_6.15.0.bb => python3-hypothesis_6.23.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-hypothesis_6.15.0.bb => python3-hypothesis_6.23.2.bb} (91%)

diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.15.0.bb b/meta/recipes-devtools/python/python3-hypothesis_6.23.2.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-hypothesis_6.15.0.bb
rename to meta/recipes-devtools/python/python3-hypothesis_6.23.2.bb
index 1ea6bb56e6d..4ffba1c612a 100644
--- a/meta/recipes-devtools/python/python3-hypothesis_6.15.0.bb
+++ b/meta/recipes-devtools/python/python3-hypothesis_6.23.2.bb
@@ -13,7 +13,7 @@ SRC_URI += " \
     file://test_rle.py \
     "
 
-SRC_URI[sha256sum] = "10699f595eebb9410fd902908aa13aece19be5c437b405092be34f60f69f7999"
+SRC_URI[sha256sum] = "b71b257916c91484716a10220ed2b9a0cf82acc3ed8ef421bb2aa0a671761053"
 
 RDEPENDS:${PN} += " \
     python3-attrs \
-- 
2.30.2



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

* [PATCH 2/7] python3-importlib-metadata: upgrade 4.6.4 -> 4.8.1
  2021-10-12  2:08 [PATCH 1/7] python3-hypothesis: upgrade 6.15.0 -> 6.23.2 Tim Orling
@ 2021-10-12  2:08 ` Tim Orling
  2021-10-12  2:08 ` [PATCH 3/7] python3-more-itertools: upgrade 8.9.0 -> 8.10.0 Tim Orling
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Tim Orling @ 2021-10-12  2:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tim Orling

v4.8.1
  #348: Restored support for EntryPoint access by item, deprecating
        support in the process. Users are advised to use direct member
        access instead of item-based access:

    - ep[0] -> ep.name
    - ep[1] -> ep.value
    - ep[2] -> ep.group
    - ep[:] -> ep.name, ep.value, ep.group

v4.8.0
  #337: Rewrote EntryPoint as a simple class, still immutable and
        still with the attributes, but without any expectation for
        namedtuple functionality such as _asdict.

v4.7.1
  #344: Fixed regression in packages_distributions when neither
        top-level.txt nor a files manifest is present.

v4.7.0
  #330: In packages_distributions, now infer top-level names from
        .files() when a top-level.txt (Setuptools-specific metadata)
        is not present.

References:
  https://github.com/python/importlib_metadata/issues/348
  https://github.com/python/importlib_metadata/issues/337
  https://github.com/python/importlib_metadata/issues/344
  https://github.com/python/importlib_metadata/issues/330

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
---
 ...ib-metadata_4.6.4.bb => python3-importlib-metadata_4.8.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-importlib-metadata_4.6.4.bb => python3-importlib-metadata_4.8.1.bb} (88%)

diff --git a/meta/recipes-devtools/python/python3-importlib-metadata_4.6.4.bb b/meta/recipes-devtools/python/python3-importlib-metadata_4.8.1.bb
similarity index 88%
rename from meta/recipes-devtools/python/python3-importlib-metadata_4.6.4.bb
rename to meta/recipes-devtools/python/python3-importlib-metadata_4.8.1.bb
index e5aad991e4c..3f756684314 100644
--- a/meta/recipes-devtools/python/python3-importlib-metadata_4.6.4.bb
+++ b/meta/recipes-devtools/python/python3-importlib-metadata_4.8.1.bb
@@ -8,7 +8,7 @@ inherit pypi setuptools3
 PYPI_PACKAGE = "importlib_metadata"
 UPSTREAM_CHECK_REGEX = "/importlib-metadata/(?P<pver>(\d+[\.\-_]*)+)/"
 
-SRC_URI[sha256sum] = "7b30a78db2922d78a6f47fb30683156a14f3c6aa5cc23f77cc8967e9ab2d002f"
+SRC_URI[sha256sum] = "f284b3e11256ad1e5d03ab86bb2ccd6f5339688ff17a4d797a0fe7df326f23b1"
 
 S = "${WORKDIR}/importlib_metadata-${PV}"
 
-- 
2.30.2



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

* [PATCH 3/7] python3-more-itertools: upgrade 8.9.0 -> 8.10.0
  2021-10-12  2:08 [PATCH 1/7] python3-hypothesis: upgrade 6.15.0 -> 6.23.2 Tim Orling
  2021-10-12  2:08 ` [PATCH 2/7] python3-importlib-metadata: upgrade 4.6.4 -> 4.8.1 Tim Orling
@ 2021-10-12  2:08 ` Tim Orling
  2021-10-12  2:08 ` [PATCH 4/7] python3-zipp: upgrade 3.5.0 -> 3.6.0 Tim Orling
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Tim Orling @ 2021-10-12  2:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tim Orling

8.10.0
  Changes to existing functions
    - The type stub for iter_except was improved (thanks to
      MarcinKonowalczyk)

  Other changes:
    - Type stubs now ship with the source release (thanks to
      saaketp)
    - The Sphinx docs were improved (thanks to MarcinKonowalczyk)

8.9.0
  New functions
    - interleave_evenly (thanks to mbugert)
    - repeat_each (thanks to FinalSh4re)
    - chunked_even (thanks to valtron)
    - map_if (thanks to sassbalint)
    - zip_broadcast (thanks to kalekundert)

  Changes to existing functions
    - The type stub for chunked was improved (thanks to
      PhilMacKay)
    - The type stubs for zip_equal and zip_offset were improved
      (thanks to maffoo)
    - Building Sphinx docs locally was improved (thanks to
      MarcinKonowalczyk)

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
---
 ...more-itertools_8.9.0.bb => python3-more-itertools_8.10.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-more-itertools_8.9.0.bb => python3-more-itertools_8.10.0.bb} (86%)

diff --git a/meta/recipes-devtools/python/python3-more-itertools_8.9.0.bb b/meta/recipes-devtools/python/python3-more-itertools_8.10.0.bb
similarity index 86%
rename from meta/recipes-devtools/python/python3-more-itertools_8.9.0.bb
rename to meta/recipes-devtools/python/python3-more-itertools_8.10.0.bb
index 041c865ef60..93d3ad60f8c 100644
--- a/meta/recipes-devtools/python/python3-more-itertools_8.9.0.bb
+++ b/meta/recipes-devtools/python/python3-more-itertools_8.10.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/erikrose/more-itertools"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
 
-SRC_URI[sha256sum] = "8c746e0d09871661520da4f1241ba6b908dc903839733c8203b552cffaf173bd"
+SRC_URI[sha256sum] = "1debcabeb1df793814859d64a81ad7cb10504c24349368ccf214c664c474f41f"
 
 inherit pypi setuptools3 ptest
 
-- 
2.30.2



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

* [PATCH 4/7] python3-zipp: upgrade 3.5.0 -> 3.6.0
  2021-10-12  2:08 [PATCH 1/7] python3-hypothesis: upgrade 6.15.0 -> 6.23.2 Tim Orling
  2021-10-12  2:08 ` [PATCH 2/7] python3-importlib-metadata: upgrade 4.6.4 -> 4.8.1 Tim Orling
  2021-10-12  2:08 ` [PATCH 3/7] python3-more-itertools: upgrade 8.9.0 -> 8.10.0 Tim Orling
@ 2021-10-12  2:08 ` Tim Orling
  2021-10-12  2:08 ` [PATCH 5/7] libconvert-asn1-perl: upgrade 0.31 -> 0.33 Tim Orling
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Tim Orling @ 2021-10-12  2:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tim Orling

v3.6.0
  #78: Only Path is exposed in the public API.

v3.5.1
  #77: Remove news file intended only for CPython.

References:
  https://github.com/jaraco/zipp/issues/78
  https://github.com/jaraco/zipp/issues/77

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
---
 .../python/{python3-zipp_3.5.0.bb => python3-zipp_3.6.0.bb}     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-zipp_3.5.0.bb => python3-zipp_3.6.0.bb} (84%)

diff --git a/meta/recipes-devtools/python/python3-zipp_3.5.0.bb b/meta/recipes-devtools/python/python3-zipp_3.6.0.bb
similarity index 84%
rename from meta/recipes-devtools/python/python3-zipp_3.5.0.bb
rename to meta/recipes-devtools/python/python3-zipp_3.6.0.bb
index d6f4676542a..c98bc7a3a49 100644
--- a/meta/recipes-devtools/python/python3-zipp_3.5.0.bb
+++ b/meta/recipes-devtools/python/python3-zipp_3.6.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/jaraco/zipp"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=7a7126e068206290f3fe9f8d6c713ea6"
 
-SRC_URI[sha256sum] = "f5812b1e007e48cff63449a5e9f4e7ebea716b4111f9c4f9a645f91d579bf0c4"
+SRC_URI[sha256sum] = "71c644c5369f4a6e07636f0aa966270449561fcea2e3d6747b8d23efaa9d7832"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 
-- 
2.30.2



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

* [PATCH 5/7] libconvert-asn1-perl: upgrade 0.31 -> 0.33
  2021-10-12  2:08 [PATCH 1/7] python3-hypothesis: upgrade 6.15.0 -> 6.23.2 Tim Orling
                   ` (2 preceding siblings ...)
  2021-10-12  2:08 ` [PATCH 4/7] python3-zipp: upgrade 3.5.0 -> 3.6.0 Tim Orling
@ 2021-10-12  2:08 ` Tim Orling
  2021-10-12  2:08 ` [PATCH 6/7] at-spi2-core: upgrade 2.40.3 -> 2.42.0 Tim Orling
  2021-10-12  2:08 ` [PATCH 7/7] python3-pytest: upgrade 6.2.4 -> 6.2.5 Tim Orling
  5 siblings, 0 replies; 8+ messages in thread
From: Tim Orling @ 2021-10-12  2:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tim Orling

0.33 -- Wed Sep 22 19:49:53 ADT 2021
  * Official CPAN release of 0.33

0.32 -- Tue Sep 21 18:45:20 ADT 2021
  * examples/x509decode: parameters are optional for AlgorithmIdentifier
    when using [ec]dsa algorithms
  * t/19issue14.t: issue with warnings
  * Fixes #44 Redundant argument in printf warning
  * examples/x509decode: fix prototype error
  * examples/ldap: fix asn1_dump not working

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
---
 ...bconvert-asn1-perl_0.31.bb => libconvert-asn1-perl_0.33.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta/recipes-extended/perl/{libconvert-asn1-perl_0.31.bb => libconvert-asn1-perl_0.33.bb} (86%)

diff --git a/meta/recipes-extended/perl/libconvert-asn1-perl_0.31.bb b/meta/recipes-extended/perl/libconvert-asn1-perl_0.33.bb
similarity index 86%
rename from meta/recipes-extended/perl/libconvert-asn1-perl_0.31.bb
rename to meta/recipes-extended/perl/libconvert-asn1-perl_0.33.bb
index 1848ef67e10..4f5a78df142 100644
--- a/meta/recipes-extended/perl/libconvert-asn1-perl_0.31.bb
+++ b/meta/recipes-extended/perl/libconvert-asn1-perl_0.33.bb
@@ -7,8 +7,7 @@ LIC_FILES_CHKSUM = "file://README.md;beginline=91;endline=97;md5=ceff7fd286eb6d8
 
 SRC_URI = "https://cpan.metacpan.org/authors/id/T/TI/TIMLEGGE/Convert-ASN1-${PV}.tar.gz"
 
-SRC_URI[md5sum] = "1e12b263a5042804bb1c59ddce899876"
-SRC_URI[sha256sum] = "6fe4c1ba744c3a8212bf2c9b2703d93530acc153435cf2f93633540b439fbbeb"
+SRC_URI[sha256sum] = "1fdf004520c79e3a244cf9688616293516c11793d746c761f367496eb3d06076"
 
 S = "${WORKDIR}/Convert-ASN1-${PV}"
 
-- 
2.30.2



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

* [PATCH 6/7] at-spi2-core: upgrade 2.40.3 -> 2.42.0
  2021-10-12  2:08 [PATCH 1/7] python3-hypothesis: upgrade 6.15.0 -> 6.23.2 Tim Orling
                   ` (3 preceding siblings ...)
  2021-10-12  2:08 ` [PATCH 5/7] libconvert-asn1-perl: upgrade 0.31 -> 0.33 Tim Orling
@ 2021-10-12  2:08 ` Tim Orling
  2021-10-13  9:45   ` [OE-core] " Alexandre Belloni
  2021-10-12  2:08 ` [PATCH 7/7] python3-pytest: upgrade 6.2.4 -> 6.2.5 Tim Orling
  5 siblings, 1 reply; 8+ messages in thread
From: Tim Orling @ 2021-10-12  2:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tim Orling

What's new in at-spi2-core 2.42.0:
* Set X root property when Xwayland starts on demand.
* Several dbus introspection fixes.

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
---
 .../atk/{at-spi2-core_2.40.3.bb => at-spi2-core_2.42.0.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/atk/{at-spi2-core_2.40.3.bb => at-spi2-core_2.42.0.bb} (94%)

diff --git a/meta/recipes-support/atk/at-spi2-core_2.40.3.bb b/meta/recipes-support/atk/at-spi2-core_2.42.0.bb
similarity index 94%
rename from meta/recipes-support/atk/at-spi2-core_2.40.3.bb
rename to meta/recipes-support/atk/at-spi2-core_2.42.0.bb
index 427ea7c1650..7e870e728e3 100644
--- a/meta/recipes-support/atk/at-spi2-core_2.40.3.bb
+++ b/meta/recipes-support/atk/at-spi2-core_2.42.0.bb
@@ -11,7 +11,7 @@ MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}"
 
 SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz"
 
-SRC_URI[sha256sum] = "e49837c2ad30d71e1f29ca8e0968a54b95030272f7ff40b89b48968653f37a5c"
+SRC_URI[sha256sum] = "4b5da10e94fa3c6195f95222438f63a0234b99ef9df772c7640e82baeaa6e386"
 
 X11DEPENDS = "virtual/libx11 libxi libxtst"
 
-- 
2.30.2



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

* [PATCH 7/7] python3-pytest: upgrade 6.2.4 -> 6.2.5
  2021-10-12  2:08 [PATCH 1/7] python3-hypothesis: upgrade 6.15.0 -> 6.23.2 Tim Orling
                   ` (4 preceding siblings ...)
  2021-10-12  2:08 ` [PATCH 6/7] at-spi2-core: upgrade 2.40.3 -> 2.42.0 Tim Orling
@ 2021-10-12  2:08 ` Tim Orling
  5 siblings, 0 replies; 8+ messages in thread
From: Tim Orling @ 2021-10-12  2:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tim Orling

Drop pluggy-1.0 patch; fixed upstream

pytest 6.2.5 (2021-08-29)
  Trivial/Internal Changes
    #8494: Python 3.10 is now supported.
    #9040: Enable compatibility with pluggy 1.0 or later.

References:
  https://github.com/pytest-dev/pytest/pull/8494
  https://github.com/pytest-dev/pytest/pull/9040

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
---
 .../0001-Allow-pluggy-1.0.patch               | 65 -------------------
 ...ytest_6.2.4.bb => python3-pytest_6.2.5.bb} |  3 +-
 2 files changed, 1 insertion(+), 67 deletions(-)
 delete mode 100644 meta/recipes-devtools/python/python3-pytest/0001-Allow-pluggy-1.0.patch
 rename meta/recipes-devtools/python/{python3-pytest_6.2.4.bb => python3-pytest_6.2.5.bb} (89%)

diff --git a/meta/recipes-devtools/python/python3-pytest/0001-Allow-pluggy-1.0.patch b/meta/recipes-devtools/python/python3-pytest/0001-Allow-pluggy-1.0.patch
deleted file mode 100644
index 175ef987adb..00000000000
--- a/meta/recipes-devtools/python/python3-pytest/0001-Allow-pluggy-1.0.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-From 637d4400d2bab0457688f950ea18cc4a04147c11 Mon Sep 17 00:00:00 2001
-From: Bruno Oliveira <nicoddemus@gmail.com>
-Date: Thu, 26 Aug 2021 09:26:51 -0300
-Subject: [PATCH] Allow pluggy >=1.0
-
-Now that pluggy 1.0 has been released, we can allow pluggy 1.0 with new pytest versions.
-
-Upstream-Status: Backport [commit: fbba504]
-
-Modify to use toml and not tomli. We will create a
-python3-tomli recipe when we do an python3-pytest
-upgrade.
-
-Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
----
- setup.cfg | 36 ++++++++++++++++++------------------
- 1 file changed, 18 insertions(+), 18 deletions(-)
-
-diff --git a/setup.cfg b/setup.cfg
-index f919a9491..a8aeab813 100644
---- a/setup.cfg
-+++ b/setup.cfg
-@@ -32,24 +32,24 @@ project_urls =
- 	Tracker=https://github.com/pytest-dev/pytest/issues
- 
- [options]
--packages = 
--	_pytest
--	_pytest._code
--	_pytest._io
--	_pytest.assertion
--	_pytest.config
--	_pytest.mark
--	pytest
--install_requires = 
--	attrs>=19.2.0
--	iniconfig
--	packaging
--	pluggy>=0.12,<1.0.0a1
--	py>=1.8.2
--	toml
--	atomicwrites>=1.0;sys_platform=="win32"
--	colorama;sys_platform=="win32"
--	importlib-metadata>=0.12;python_version<"3.8"
-+packages =
-+    _pytest
-+    _pytest._code
-+    _pytest._io
-+    _pytest.assertion
-+    _pytest.config
-+    _pytest.mark
-+    pytest
-+install_requires =
-+    attrs>=19.2.0
-+    iniconfig
-+    packaging
-+    pluggy>=0.12,<2.0
-+    py>=1.8.2
-+    toml
-+    atomicwrites>=1.0;sys_platform=="win32"
-+    colorama;sys_platform=="win32"
-+    importlib-metadata>=0.12;python_version<"3.8"
- python_requires = >=3.6
- package_dir = 
- 	=src
diff --git a/meta/recipes-devtools/python/python3-pytest_6.2.4.bb b/meta/recipes-devtools/python/python3-pytest_6.2.5.bb
similarity index 89%
rename from meta/recipes-devtools/python/python3-pytest_6.2.4.bb
rename to meta/recipes-devtools/python/python3-pytest_6.2.5.bb
index 2e90acaf366..0d8fdf63733 100644
--- a/meta/recipes-devtools/python/python3-pytest_6.2.4.bb
+++ b/meta/recipes-devtools/python/python3-pytest_6.2.5.bb
@@ -5,8 +5,7 @@ DESCRIPTION = "The pytest framework makes it easy to write small tests, yet scal
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=81eb9f71d006c6b268cf4388e3c98f7b"
 
-SRC_URI += "file://0001-Allow-pluggy-1.0.patch"
-SRC_URI[sha256sum] = "50bcad0a0b9c5a72c8e4e7c9855a3ad496ca6a881a3641b4260605450772c54b"
+SRC_URI[sha256sum] = "131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"
 
 DEPENDS = "python3-setuptools-scm-native"
 
-- 
2.30.2



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

* Re: [OE-core] [PATCH 6/7] at-spi2-core: upgrade 2.40.3 -> 2.42.0
  2021-10-12  2:08 ` [PATCH 6/7] at-spi2-core: upgrade 2.40.3 -> 2.42.0 Tim Orling
@ 2021-10-13  9:45   ` Alexandre Belloni
  0 siblings, 0 replies; 8+ messages in thread
From: Alexandre Belloni @ 2021-10-13  9:45 UTC (permalink / raw)
  To: Tim Orling; +Cc: openembedded-core, Tim Orling

Hi Tim,

This causes the following issue on no-x11:
https://autobuilder.yoctoproject.org/typhoon/#/builders/40/builds/4158/steps/11/logs/stdio

On 12/10/2021 02:08:53+0000, Tim Orling wrote:
> What's new in at-spi2-core 2.42.0:
> * Set X root property when Xwayland starts on demand.
> * Several dbus introspection fixes.
> 
> Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
> ---
>  .../atk/{at-spi2-core_2.40.3.bb => at-spi2-core_2.42.0.bb}      | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>  rename meta/recipes-support/atk/{at-spi2-core_2.40.3.bb => at-spi2-core_2.42.0.bb} (94%)
> 
> diff --git a/meta/recipes-support/atk/at-spi2-core_2.40.3.bb b/meta/recipes-support/atk/at-spi2-core_2.42.0.bb
> similarity index 94%
> rename from meta/recipes-support/atk/at-spi2-core_2.40.3.bb
> rename to meta/recipes-support/atk/at-spi2-core_2.42.0.bb
> index 427ea7c1650..7e870e728e3 100644
> --- a/meta/recipes-support/atk/at-spi2-core_2.40.3.bb
> +++ b/meta/recipes-support/atk/at-spi2-core_2.42.0.bb
> @@ -11,7 +11,7 @@ MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}"
>  
>  SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz"
>  
> -SRC_URI[sha256sum] = "e49837c2ad30d71e1f29ca8e0968a54b95030272f7ff40b89b48968653f37a5c"
> +SRC_URI[sha256sum] = "4b5da10e94fa3c6195f95222438f63a0234b99ef9df772c7640e82baeaa6e386"
>  
>  X11DEPENDS = "virtual/libx11 libxi libxtst"
>  
> -- 
> 2.30.2
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#156857): https://lists.openembedded.org/g/openembedded-core/message/156857
> Mute This Topic: https://lists.openembedded.org/mt/86253241/3617179
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

end of thread, other threads:[~2021-10-13  9:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-12  2:08 [PATCH 1/7] python3-hypothesis: upgrade 6.15.0 -> 6.23.2 Tim Orling
2021-10-12  2:08 ` [PATCH 2/7] python3-importlib-metadata: upgrade 4.6.4 -> 4.8.1 Tim Orling
2021-10-12  2:08 ` [PATCH 3/7] python3-more-itertools: upgrade 8.9.0 -> 8.10.0 Tim Orling
2021-10-12  2:08 ` [PATCH 4/7] python3-zipp: upgrade 3.5.0 -> 3.6.0 Tim Orling
2021-10-12  2:08 ` [PATCH 5/7] libconvert-asn1-perl: upgrade 0.31 -> 0.33 Tim Orling
2021-10-12  2:08 ` [PATCH 6/7] at-spi2-core: upgrade 2.40.3 -> 2.42.0 Tim Orling
2021-10-13  9:45   ` [OE-core] " Alexandre Belloni
2021-10-12  2:08 ` [PATCH 7/7] python3-pytest: upgrade 6.2.4 -> 6.2.5 Tim Orling

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.