All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs
@ 2020-01-29  9:07 Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 02/24] findutils: drop upstream-version-is-even Alexander Kanavin
                   ` (22 more replies)
  0 siblings, 23 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

The lists of ptests are defined via PTESTS_FAST and PTESTS_SLOW;
ptests-pkgs also pulls in additional items that are specifically
excluded from those due to causing issues with ptesting (particularly,
bash-ptest is non-deterministic and was dropped from PTESTS_FAST/SLOW
yet still gets pulled in via ptest-pkgs, and is causing failures).

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-sato/images/core-image-sato-sdk-ptest.bb | 2 --
 1 file changed, 2 deletions(-)

diff --git a/meta/recipes-sato/images/core-image-sato-sdk-ptest.bb b/meta/recipes-sato/images/core-image-sato-sdk-ptest.bb
index 85b5adbc693..58c257c49fb 100644
--- a/meta/recipes-sato/images/core-image-sato-sdk-ptest.bb
+++ b/meta/recipes-sato/images/core-image-sato-sdk-ptest.bb
@@ -3,8 +3,6 @@ require conf/distro/include/ptest-packagelists.inc
 
 DESCRIPTION += "Also includes ptest packages."
 
-IMAGE_FEATURES += "ptest-pkgs"
-
 PROVIDES += "core-image-sato-ptest"
 
 # Also include ptests which may not otherwise be included in a sato image
-- 
2.25.0



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

* [PATCH 02/24] findutils: drop upstream-version-is-even
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 03/24] libva-utils: fix upstream version check Alexander Kanavin
                   ` (21 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Upstream seems to have dropped the odd-even policy

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-extended/findutils/findutils.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/findutils/findutils.inc b/meta/recipes-extended/findutils/findutils.inc
index a0e1f8962c5..9aa7239825b 100644
--- a/meta/recipes-extended/findutils/findutils.inc
+++ b/meta/recipes-extended/findutils/findutils.inc
@@ -8,7 +8,7 @@ SECTION = "console/utils"
 
 SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.xz"
 
-inherit autotools gettext texinfo update-alternatives upstream-version-is-even
+inherit autotools gettext texinfo update-alternatives
 
 ALTERNATIVE_${PN} = "find xargs"
 ALTERNATIVE_PRIORITY = "100"
-- 
2.25.0



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

* [PATCH 03/24] libva-utils: fix upstream version check
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 02/24] findutils: drop upstream-version-is-even Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 04/24] speexdsp: " Alexander Kanavin
                   ` (20 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-graphics/libva/libva-utils_2.6.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/libva/libva-utils_2.6.0.bb b/meta/recipes-graphics/libva/libva-utils_2.6.0.bb
index 0037fdfd854..03b38027a13 100644
--- a/meta/recipes-graphics/libva/libva-utils_2.6.0.bb
+++ b/meta/recipes-graphics/libva/libva-utils_2.6.0.bb
@@ -18,7 +18,7 @@ SRC_URI = "git://github.com/intel/libva-utils.git;branch=v2.6-branch"
 SRCREV = "8ea1eba433dcbceb0e5dcb54b8e3f984987f7a17"
 S = "${WORKDIR}/git"
 
-UPSTREAM_CHECK_URI = "https://github.com/intel/libva-utils/releases"
+UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
 
 DEPENDS = "libva"
 
-- 
2.25.0



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

* [PATCH 04/24] speexdsp: fix upstream version check
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 02/24] findutils: drop upstream-version-is-even Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 03/24] libva-utils: fix upstream version check Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 05/24] shared-mime-info: fix (sort of) " Alexander Kanavin
                   ` (19 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-multimedia/speex/speexdsp_1.2.0.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-multimedia/speex/speexdsp_1.2.0.bb b/meta/recipes-multimedia/speex/speexdsp_1.2.0.bb
index 2f934ebe3ab..63696467613 100644
--- a/meta/recipes-multimedia/speex/speexdsp_1.2.0.bb
+++ b/meta/recipes-multimedia/speex/speexdsp_1.2.0.bb
@@ -7,6 +7,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=314649d8ba9dd7045dfb6683f298d0a8"
 
 SRC_URI = "http://downloads.xiph.org/releases/speex/speexdsp-${PV}.tar.gz"
 
+UPSTREAM_CHECK_REGEX = "speexdsp-(?P<pver>\d+(\.\d+)+)\.tar"
+
 SRC_URI[md5sum] = "b722df341576dc185d897131321008fc"
 SRC_URI[sha256sum] = "682042fc6f9bee6294ec453f470dadc26c6ff29b9c9e9ad2ffc1f4312fd64771"
 
-- 
2.25.0



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

* [PATCH 05/24] shared-mime-info: fix (sort of) upstream version check
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (2 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 04/24] speexdsp: " Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 06/24] bison: upgrade 3.4.2 -> 3.5 Alexander Kanavin
                   ` (18 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Upstream is using - to separate version components which
version checker at the moment can't deal with (i.e 1-15-1 when
1.15.1 is meant).

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-support/shared-mime-info/shared-mime-info_git.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-support/shared-mime-info/shared-mime-info_git.bb b/meta/recipes-support/shared-mime-info/shared-mime-info_git.bb
index f0d5bc62e9e..7a060b09ad9 100644
--- a/meta/recipes-support/shared-mime-info/shared-mime-info_git.bb
+++ b/meta/recipes-support/shared-mime-info/shared-mime-info_git.bb
@@ -12,6 +12,9 @@ SRCREV = "829b26d85e7d89a0caee03046c3bce373f04c80a"
 PV = "1.15"
 S = "${WORKDIR}/git"
 
+UPSTREAM_CHECK_GITTAGREGEX = "Release-(?P<pver>(\d+(\-\d+)+))"
+UPSTREAM_VERSION_UNKNOWN = "1"
+
 inherit autotools pkgconfig gettext python3native mime
 
 EXTRA_OECONF = "--disable-update-mimedb"
-- 
2.25.0



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

* [PATCH 06/24] bison: upgrade 3.4.2 -> 3.5
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (3 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 05/24] shared-mime-info: fix (sort of) " Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-02-03 15:33   ` Khem Raj
  2020-01-29  9:07 ` [PATCH 07/24] puzzles: upgrade to latest revision Alexander Kanavin
                   ` (17 subsequent siblings)
  22 siblings, 1 reply; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-devtools/bison/{bison_3.4.2.bb => bison_3.5.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/bison/{bison_3.4.2.bb => bison_3.5.bb} (90%)

diff --git a/meta/recipes-devtools/bison/bison_3.4.2.bb b/meta/recipes-devtools/bison/bison_3.5.bb
similarity index 90%
rename from meta/recipes-devtools/bison/bison_3.4.2.bb
rename to meta/recipes-devtools/bison/bison_3.5.bb
index 46f0f908dd4..3d8f6579b9e 100644
--- a/meta/recipes-devtools/bison/bison_3.4.2.bb
+++ b/meta/recipes-devtools/bison/bison_3.5.bb
@@ -17,8 +17,8 @@ SRC_URI = "${GNU_MIRROR}/bison/bison-${PV}.tar.xz \
 # No point in hardcoding path to m4, just use PATH
 EXTRA_OECONF += "M4=m4"
 
-SRC_URI[md5sum] = "d1ceb9dfde2d03b24a4c1137f7f1b572"
-SRC_URI[sha256sum] = "27d05534699735dc69e86add5b808d6cb35900ad3fd63fa82e3eb644336abfa0"
+SRC_URI[md5sum] = "c0230be066069f33c8445766833f3205"
+SRC_URI[sha256sum] = "55e4a023b1b4ad19095a5f8279f0dc048fa29f970759cea83224a6d5e7a3a641"
 
 inherit autotools gettext texinfo
 
-- 
2.25.0



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

* [PATCH 07/24] puzzles: upgrade to latest revision
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (4 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 06/24] bison: upgrade 3.4.2 -> 3.5 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 08/24] socat: upgrade 1.7.3.3 -> 1.7.3.4 Alexander Kanavin
                   ` (16 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

License-Update: list of contributors updated.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-sato/puzzles/puzzles_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-sato/puzzles/puzzles_git.bb b/meta/recipes-sato/puzzles/puzzles_git.bb
index 57f2af48eb8..41b78d6fe12 100644
--- a/meta/recipes-sato/puzzles/puzzles_git.bb
+++ b/meta/recipes-sato/puzzles/puzzles_git.bb
@@ -1,7 +1,7 @@
 SUMMARY = "Simon Tatham's Portable Puzzle Collection"
 HOMEPAGE = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENCE;md5=da6110d4ed1225a287eab2bf0ac0193b"
+LIC_FILES_CHKSUM = "file://LICENCE;md5=6099f4981f9461d7f411091e69a7f07a"
 
 DEPENDS = "libxt"
 
@@ -17,7 +17,7 @@ SRC_URI = "git://git.tartarus.org/simon/puzzles.git \
            "
 
 UPSTREAM_CHECK_COMMITS = "1"
-SRCREV = "1c0c49dd5cd8df6ae87f7be5371be84589fa2662"
+SRCREV = "79a5378b5adc46ee33ba34d55738f916fb8adfc9"
 PE = "2"
 PV = "0.0+git${SRCPV}"
 
-- 
2.25.0



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

* [PATCH 08/24] socat: upgrade 1.7.3.3 -> 1.7.3.4
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (5 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 07/24] puzzles: upgrade to latest revision Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 09/24] linux-firmware: upgrade to latest revision Alexander Kanavin
                   ` (15 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../socat/{socat_1.7.3.3.bb => socat_1.7.3.4.bb}              | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-connectivity/socat/{socat_1.7.3.3.bb => socat_1.7.3.4.bb} (92%)

diff --git a/meta/recipes-connectivity/socat/socat_1.7.3.3.bb b/meta/recipes-connectivity/socat/socat_1.7.3.4.bb
similarity index 92%
rename from meta/recipes-connectivity/socat/socat_1.7.3.3.bb
rename to meta/recipes-connectivity/socat/socat_1.7.3.4.bb
index ee01578c1aa..9b0d4071acd 100644
--- a/meta/recipes-connectivity/socat/socat_1.7.3.3.bb
+++ b/meta/recipes-connectivity/socat/socat_1.7.3.4.bb
@@ -14,8 +14,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
 SRC_URI = "http://www.dest-unreach.org/socat/download/socat-${PV}.tar.bz2 \
 "
 
-SRC_URI[md5sum] = "b2a032a47b8b89a18485697fa975154f"
-SRC_URI[sha256sum] = "0dd63ffe498168a4aac41d307594c5076ff307aa0ac04b141f8f1cec6594d04a"
+SRC_URI[md5sum] = "3cca4f8cd9d2d1caabd9cc099451bac9"
+SRC_URI[sha256sum] = "972374ca86f65498e23e3259c2ee1b8f9dbeb04d12c2a78c0c9b5d1cb97dfdfc"
 
 inherit autotools
 
-- 
2.25.0



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

* [PATCH 09/24] linux-firmware: upgrade to latest revision
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (6 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 08/24] socat: upgrade 1.7.3.3 -> 1.7.3.4 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-03-04  9:17   ` linux-firmware broken (was: Re: [PATCH 09/24] linux-firmware: upgrade to latest revision) André Draszik
  2020-01-29  9:07 ` [PATCH 10/24] libxpm: upgrade 3.5.12 -> 3.5.13 Alexander Kanavin
                   ` (14 subsequent siblings)
  22 siblings, 1 reply; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

License-Update: Copyright years, file lists
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...ux-firmware_20190815.bb => linux-firmware_20200117.bb} | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
 rename meta/recipes-kernel/linux-firmware/{linux-firmware_20190815.bb => linux-firmware_20200117.bb} (99%)

diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_20190815.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_20200117.bb
similarity index 99%
rename from meta/recipes-kernel/linux-firmware/linux-firmware_20190815.bb
rename to meta/recipes-kernel/linux-firmware/linux-firmware_20200117.bb
index d83000b64f0..8111c410161 100644
--- a/meta/recipes-kernel/linux-firmware/linux-firmware_20190815.bb
+++ b/meta/recipes-kernel/linux-firmware/linux-firmware_20200117.bb
@@ -66,7 +66,7 @@ LICENSE = "\
 LIC_FILES_CHKSUM = "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
                     file://LICENCE.adsp_sst;md5=615c45b91a5a4a9fe046d6ab9a2df728 \
                     file://LICENCE.agere;md5=af0133de6b4a9b2522defd5f188afd31 \
-                    file://LICENSE.amdgpu;md5=ab515ef6495ab5c5a3b08ab2db62df11 \
+                    file://LICENSE.amdgpu;md5=d357524f5099e2a3db3c1838921c593f \
                     file://LICENSE.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
                     file://LICENSE.amlogic_vdec;md5=dc44f59bf64a81643e500ad3f39a468a \
                     file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
@@ -88,6 +88,7 @@ LIC_FILES_CHKSUM = "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
                     file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
                     file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
                     file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
+                    file://LICENSE.ice;md5=742ab4850f2670792940e6d15c974b2f \
                     file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
                     file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
                     file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
@@ -98,6 +99,7 @@ LIC_FILES_CHKSUM = "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
                     file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
                     file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
                     file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
+                    file://LICENCE.NXP;md5=58bb8ba632cd729b9ba6183bc6aed36f \
                     file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
                     file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837 \
                     file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
@@ -123,7 +125,7 @@ LIC_FILES_CHKSUM = "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
                     file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
                     file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
                     file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
-                    file://WHENCE;md5=37a01e379219d1e06dbccfa90a8fc0ad \
+                    file://WHENCE;md5=cdcd9f664a404c681bb745bcac6253a3 \
                     "
 
 # These are not common licenses, set NO_GENERIC_LICENSE for them
@@ -192,7 +194,7 @@ NO_GENERIC_LICENSE[WHENCE] = "WHENCE"
 
 PE = "1"
 
-SRCREV = "07b925b450bfb4cf3e141c612ec5b104658cd020"
+SRCREV = "9c340bd1bdabf53808a9178a7be98c5f2ad599a7"
 
 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"
 
-- 
2.25.0



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

* [PATCH 10/24] libxpm: upgrade 3.5.12 -> 3.5.13
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (7 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 09/24] linux-firmware: upgrade to latest revision Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 11/24] ccache: upgrade 3.7.3 -> 3.7.7 Alexander Kanavin
                   ` (13 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../xorg-lib/{libxpm_3.5.12.bb => libxpm_3.5.13.bb}           | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/xorg-lib/{libxpm_3.5.12.bb => libxpm_3.5.13.bb} (81%)

diff --git a/meta/recipes-graphics/xorg-lib/libxpm_3.5.12.bb b/meta/recipes-graphics/xorg-lib/libxpm_3.5.13.bb
similarity index 81%
rename from meta/recipes-graphics/xorg-lib/libxpm_3.5.12.bb
rename to meta/recipes-graphics/xorg-lib/libxpm_3.5.13.bb
index 64d829b31eb..fda8e32d2c5 100644
--- a/meta/recipes-graphics/xorg-lib/libxpm_3.5.12.bb
+++ b/meta/recipes-graphics/xorg-lib/libxpm_3.5.13.bb
@@ -21,7 +21,7 @@ PACKAGES =+ "sxpm cxpm"
 FILES_cxpm = "${bindir}/cxpm"
 FILES_sxpm = "${bindir}/sxpm"
 
-SRC_URI[md5sum] = "20f4627672edb2bd06a749f11aa97302"
-SRC_URI[sha256sum] = "fd6a6de3da48de8d1bb738ab6be4ad67f7cb0986c39bd3f7d51dd24f7854bdec"
+SRC_URI[md5sum] = "6f0ecf8d103d528cfc803aa475137afa"
+SRC_URI[sha256sum] = "9cd1da57588b6cb71450eff2273ef6b657537a9ac4d02d0014228845b935ac25"
 
 BBCLASSEXTEND = "native"
-- 
2.25.0



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

* [PATCH 11/24] ccache: upgrade 3.7.3 -> 3.7.7
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (8 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 10/24] libxpm: upgrade 3.5.12 -> 3.5.13 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 12/24] piglit: upgrade to latest revision Alexander Kanavin
                   ` (12 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

License-Update: copyright years
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-devtools/ccache/ccache_3.7.3.bb | 7 -------
 meta/recipes-devtools/ccache/ccache_3.7.7.bb | 7 +++++++
 2 files changed, 7 insertions(+), 7 deletions(-)
 delete mode 100644 meta/recipes-devtools/ccache/ccache_3.7.3.bb
 create mode 100644 meta/recipes-devtools/ccache/ccache_3.7.7.bb

diff --git a/meta/recipes-devtools/ccache/ccache_3.7.3.bb b/meta/recipes-devtools/ccache/ccache_3.7.3.bb
deleted file mode 100644
index c6a682ee0de..00000000000
--- a/meta/recipes-devtools/ccache/ccache_3.7.3.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-require ccache.inc
-
-LICENSE = "GPLv3+"
-LIC_FILES_CHKSUM = "file://LICENSE.adoc;md5=0094c59039cec66b8a4c905204333514"
-
-SRC_URI[md5sum] = "7be62ea6e190941a8c12a3d5394fd926"
-SRC_URI[sha256sum] = "355955a61562c53c4ec4669e1c92708b0008f50d214b27f07a87cf4a1fa6b01e"
diff --git a/meta/recipes-devtools/ccache/ccache_3.7.7.bb b/meta/recipes-devtools/ccache/ccache_3.7.7.bb
new file mode 100644
index 00000000000..3e7362b28bc
--- /dev/null
+++ b/meta/recipes-devtools/ccache/ccache_3.7.7.bb
@@ -0,0 +1,7 @@
+require ccache.inc
+
+LICENSE = "GPLv3+"
+LIC_FILES_CHKSUM = "file://LICENSE.adoc;md5=22d514dbc01fdf9a9784334b6b59417a"
+
+SRC_URI[md5sum] = "500d7bd9ebc6ee3105d7fc332c1ef395"
+SRC_URI[sha256sum] = "9b61f7fab2ec15305ee8382b03365503232dfb04b57414e7b0433768d530fa8a"
-- 
2.25.0



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

* [PATCH 12/24] piglit: upgrade to latest revision
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (9 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 11/24] ccache: upgrade 3.7.3 -> 3.7.7 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 13/24] kmscube: " Alexander Kanavin
                   ` (11 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-graphics/piglit/piglit_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb
index f53098c45de..d0d83316977 100644
--- a/meta/recipes-graphics/piglit/piglit_git.bb
+++ b/meta/recipes-graphics/piglit/piglit_git.bb
@@ -10,7 +10,7 @@ SRC_URI = "git://gitlab.freedesktop.org/mesa/piglit.git;protocol=https \
            "
 UPSTREAM_CHECK_COMMITS = "1"
 
-SRCREV = "603cfb97542a411e8957a0d689d8b28cf8b9ef4d"
+SRCREV = "6126c2d4e476c7770d216ffa1932c10e2a5a7813"
 # (when PV goes above 1.0 remove the trailing r)
 PV = "1.0+gitr${SRCPV}"
 
-- 
2.25.0



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

* [PATCH 13/24] kmscube: upgrade to latest revision
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (10 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 12/24] piglit: upgrade to latest revision Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 14/24] ncurses: upgrade 6.1+20190803 -> 6.1+20191019 Alexander Kanavin
                   ` (10 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-graphics/kmscube/kmscube_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/kmscube/kmscube_git.bb b/meta/recipes-graphics/kmscube/kmscube_git.bb
index 82720045b31..a1a295f6604 100644
--- a/meta/recipes-graphics/kmscube/kmscube_git.bb
+++ b/meta/recipes-graphics/kmscube/kmscube_git.bb
@@ -6,7 +6,7 @@ DEPENDS = "virtual/libgles2 virtual/egl libdrm"
 
 LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=8b309d4ee67b7315ff7381270dd631fb"
 
-SRCREV = "f632b23a528ed6b4e1fddd774db005c30ab65568"
+SRCREV = "76bb57d539cb43d267e561024c34e031bf351e04"
 SRC_URI = "git://gitlab.freedesktop.org/mesa/kmscube;branch=master;protocol=https \
     file://detect-gst_bo_map-_unmap-and-use-it-or-avoid-it.patch"
 UPSTREAM_CHECK_COMMITS = "1"
-- 
2.25.0



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

* [PATCH 14/24] ncurses: upgrade 6.1+20190803 -> 6.1+20191019
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (11 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 13/24] kmscube: " Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 15/24] python3-gitdb: upgrade 2.0.5 -> 2.0.6 Alexander Kanavin
                   ` (9 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...selective-backport-of-20191012-patch.patch | 169 ------------------
 ....1+20190803.bb => ncurses_6.1+20191019.bb} |   9 +-
 2 files changed, 4 insertions(+), 174 deletions(-)
 delete mode 100644 meta/recipes-core/ncurses/files/0001-ncurses-selective-backport-of-20191012-patch.patch
 rename meta/recipes-core/ncurses/{ncurses_6.1+20190803.bb => ncurses_6.1+20191019.bb} (55%)

diff --git a/meta/recipes-core/ncurses/files/0001-ncurses-selective-backport-of-20191012-patch.patch b/meta/recipes-core/ncurses/files/0001-ncurses-selective-backport-of-20191012-patch.patch
deleted file mode 100644
index 7870c4ba322..00000000000
--- a/meta/recipes-core/ncurses/files/0001-ncurses-selective-backport-of-20191012-patch.patch
+++ /dev/null
@@ -1,169 +0,0 @@
-From 064b77f173337aa790f1cec0d741bfbc61a33d31 Mon Sep 17 00:00:00 2001
-From: Trevor Gamblin <trevor.gamblin@windriver.com>
-Date: Fri, 18 Oct 2019 09:57:43 -0400
-Subject: [PATCH] ncurses: selective backport of 20191012 patch
-
-Upstream-Status: Backport [https://salsa.debian.org/debian/ncurses/commit/243908b1e3d81]
-
-Contents of the upstream patch that are not applied to comp_hash.c, 
-parse_entry.c, or dump_entry.c have been omitted.
-
-CVE: CVE-2019-17594
-CVE: CVE-2019-17595
-
-Signed-off-by: Trevor Gamblin  <trevor.gamblin@windriver.com>
-
----
- ncurses/tinfo/comp_hash.c   | 14 ++++++++++----
- ncurses/tinfo/parse_entry.c | 32 ++++++++++++++++----------------
- progs/dump_entry.c          |  7 ++++---
- 3 files changed, 30 insertions(+), 23 deletions(-)
-
-diff --git a/ncurses/tinfo/comp_hash.c b/ncurses/tinfo/comp_hash.c
-index 21f165ca..a62d38f9 100644
---- a/ncurses/tinfo/comp_hash.c
-+++ b/ncurses/tinfo/comp_hash.c
-@@ -44,7 +44,7 @@
- #include <tic.h>
- #include <hashsize.h>
- 
--MODULE_ID("$Id: comp_hash.c,v 1.49 2019/03/10 00:06:48 tom Exp $")
-+MODULE_ID("$Id: comp_hash.c,v 1.51 2019/10/12 16:32:13 tom Exp $")
- 
- /*
-  * Finds the entry for the given string in the hash table if present.
-@@ -63,7 +63,9 @@ _nc_find_entry(const char *string,
- 
-     hashvalue = data->hash_of(string);
- 
--    if (data->table_data[hashvalue] >= 0) {
-+    if (hashvalue >= 0
-+	&& (unsigned) hashvalue < data->table_size
-+	&& data->table_data[hashvalue] >= 0) {
- 
- 	real_table = _nc_get_table(termcap);
- 	ptr = real_table + data->table_data[hashvalue];
-@@ -96,7 +98,9 @@ _nc_find_type_entry(const char *string,
-     const HashData *data = _nc_get_hash_info(termcap);
-     int hashvalue = data->hash_of(string);
- 
--    if (data->table_data[hashvalue] >= 0) {
-+    if (hashvalue >= 0
-+	&& (unsigned) hashvalue < data->table_size
-+	&& data->table_data[hashvalue] >= 0) {
- 	const struct name_table_entry *const table = _nc_get_table(termcap);
- 
- 	ptr = table + data->table_data[hashvalue];
-@@ -124,7 +128,9 @@ _nc_find_user_entry(const char *string)
- 
-     hashvalue = data->hash_of(string);
- 
--    if (data->table_data[hashvalue] >= 0) {
-+    if (hashvalue >= 0
-+	&& (unsigned) hashvalue < data->table_size
-+	&& data->table_data[hashvalue] >= 0) {
- 
- 	real_table = _nc_get_userdefs_table();
- 	ptr = real_table + data->table_data[hashvalue];
-diff --git a/ncurses/tinfo/parse_entry.c b/ncurses/tinfo/parse_entry.c
-index f8cca8b5..064376c5 100644
---- a/ncurses/tinfo/parse_entry.c
-+++ b/ncurses/tinfo/parse_entry.c
-@@ -47,7 +47,7 @@
- #include <ctype.h>
- #include <tic.h>
- 
--MODULE_ID("$Id: parse_entry.c,v 1.97 2019/08/03 23:10:38 tom Exp $")
-+MODULE_ID("$Id: parse_entry.c,v 1.98 2019/10/12 00:50:31 tom Exp $")
- 
- #ifdef LINT
- static short const parametrized[] =
-@@ -654,12 +654,12 @@ _nc_capcmp(const char *s, const char *t)
- }
- 
- static void
--append_acs0(string_desc * dst, int code, int src)
-+append_acs0(string_desc * dst, int code, char *src, size_t off)
- {
--    if (src != 0) {
-+    if (src != 0 && off < strlen(src)) {
- 	char temp[3];
- 	temp[0] = (char) code;
--	temp[1] = (char) src;
-+	temp[1] = src[off];
- 	temp[2] = 0;
- 	_nc_safe_strcat(dst, temp);
-     }
-@@ -669,7 +669,7 @@ static void
- append_acs(string_desc * dst, int code, char *src)
- {
-     if (VALID_STRING(src) && strlen(src) == 1) {
--	append_acs0(dst, code, *src);
-+	append_acs0(dst, code, src, 0);
-     }
- }
- 
-@@ -1038,17 +1038,17 @@ postprocess_terminfo(TERMTYPE2 *tp)
- 	_nc_str_init(&result, buf2, sizeof(buf2));
- 	_nc_safe_strcat(&result, acs_chars);
- 
--	append_acs0(&result, 'l', box_chars_1[0]);	/* ACS_ULCORNER */
--	append_acs0(&result, 'q', box_chars_1[1]);	/* ACS_HLINE */
--	append_acs0(&result, 'k', box_chars_1[2]);	/* ACS_URCORNER */
--	append_acs0(&result, 'x', box_chars_1[3]);	/* ACS_VLINE */
--	append_acs0(&result, 'j', box_chars_1[4]);	/* ACS_LRCORNER */
--	append_acs0(&result, 'm', box_chars_1[5]);	/* ACS_LLCORNER */
--	append_acs0(&result, 'w', box_chars_1[6]);	/* ACS_TTEE */
--	append_acs0(&result, 'u', box_chars_1[7]);	/* ACS_RTEE */
--	append_acs0(&result, 'v', box_chars_1[8]);	/* ACS_BTEE */
--	append_acs0(&result, 't', box_chars_1[9]);	/* ACS_LTEE */
--	append_acs0(&result, 'n', box_chars_1[10]);	/* ACS_PLUS */
-+	append_acs0(&result, 'l', box_chars_1, 0);	/* ACS_ULCORNER */
-+	append_acs0(&result, 'q', box_chars_1, 1);	/* ACS_HLINE */
-+	append_acs0(&result, 'k', box_chars_1, 2);	/* ACS_URCORNER */
-+	append_acs0(&result, 'x', box_chars_1, 3);	/* ACS_VLINE */
-+	append_acs0(&result, 'j', box_chars_1, 4);	/* ACS_LRCORNER */
-+	append_acs0(&result, 'm', box_chars_1, 5);	/* ACS_LLCORNER */
-+	append_acs0(&result, 'w', box_chars_1, 6);	/* ACS_TTEE */
-+	append_acs0(&result, 'u', box_chars_1, 7);	/* ACS_RTEE */
-+	append_acs0(&result, 'v', box_chars_1, 8);	/* ACS_BTEE */
-+	append_acs0(&result, 't', box_chars_1, 9);	/* ACS_LTEE */
-+	append_acs0(&result, 'n', box_chars_1, 10);	/* ACS_PLUS */
- 
- 	if (buf2[0]) {
- 	    acs_chars = _nc_save_str(buf2);
-diff --git a/progs/dump_entry.c b/progs/dump_entry.c
-index d0e420ec..8a47084a 100644
---- a/progs/dump_entry.c
-+++ b/progs/dump_entry.c
-@@ -39,7 +39,7 @@
- #include "termsort.c"		/* this C file is generated */
- #include <parametrized.h>	/* so is this */
- 
--MODULE_ID("$Id: dump_entry.c,v 1.173 2019/05/11 21:02:24 tom Exp $")
-+MODULE_ID("$Id: dump_entry.c,v 1.175 2019/10/12 15:59:07 tom Exp $")
- 
- #define DISCARD(string) string = ABSENT_STRING
- #define PRINTF (void) printf
-@@ -1136,7 +1136,8 @@ fmt_entry(TERMTYPE2 *tterm,
- 				*d++ = '\\';
- 				*d = ':';
- 			    } else if (*d == '\\') {
--				*++d = *s++;
-+				if ((*++d = *s++) == '\0')
-+				    break;
- 			    }
- 			    d++;
- 			    *d = '\0';
-@@ -1396,7 +1397,7 @@ one_one_mapping(const char *mapping)
- 
-     if (VALID_STRING(mapping)) {
- 	int n = 0;
--	while (mapping[n] != '\0') {
-+	while (mapping[n] != '\0' && mapping[n + 1] != '\0') {
- 	    if (isLine(mapping[n]) &&
- 		mapping[n] != mapping[n + 1]) {
- 		result = FALSE;
--- 
-2.17.1
-
diff --git a/meta/recipes-core/ncurses/ncurses_6.1+20190803.bb b/meta/recipes-core/ncurses/ncurses_6.1+20191019.bb
similarity index 55%
rename from meta/recipes-core/ncurses/ncurses_6.1+20190803.bb
rename to meta/recipes-core/ncurses/ncurses_6.1+20191019.bb
index e638a3737ca..ee7d4bed287 100644
--- a/meta/recipes-core/ncurses/ncurses_6.1+20190803.bb
+++ b/meta/recipes-core/ncurses/ncurses_6.1+20191019.bb
@@ -1,12 +1,11 @@
 require ncurses.inc
 
 SRC_URI += "file://0001-tic-hang.patch \
-            file://0002-configure-reproducible.patch \
-            file://config.cache \
-            file://0001-ncurses-selective-backport-of-20191012-patch.patch \
-"
+           file://0002-configure-reproducible.patch \
+           file://config.cache \
+           "
 # commit id corresponds to the revision in package version
-SRCREV = "3c9b2677c96c645496997321bf2fe465a5e7e21f"
+SRCREV = "ea70ec815b362f5bbad7a827a2edf50fd2b459cc"
 S = "${WORKDIR}/git"
 EXTRA_OECONF += "--with-abi-version=5 --cache-file=${B}/config.cache"
 UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+(\+\d+)*)"
-- 
2.25.0



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

* [PATCH 15/24] python3-gitdb: upgrade 2.0.5 -> 2.0.6
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (12 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 14/24] ncurses: upgrade 6.1+20190803 -> 6.1+20191019 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 16/24] libedit: upgrade 20191025-3.1 -> 20191231-3.1 Alexander Kanavin
                   ` (8 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-devtools/python/python-gitdb.inc                 | 4 ++--
 .../python/{python3-gitdb_2.0.5.bb => python3-gitdb_2.0.6.bb} | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-gitdb_2.0.5.bb => python3-gitdb_2.0.6.bb} (97%)

diff --git a/meta/recipes-devtools/python/python-gitdb.inc b/meta/recipes-devtools/python/python-gitdb.inc
index 633752fd1b0..23ec2986b15 100644
--- a/meta/recipes-devtools/python/python-gitdb.inc
+++ b/meta/recipes-devtools/python/python-gitdb.inc
@@ -8,8 +8,8 @@ inherit pypi
 
 PYPI_PACKAGE = "gitdb2"
 
-SRC_URI[md5sum] = "94e59e5fb00960541f6e137b1456ab0a"
-SRC_URI[sha256sum] = "83361131a1836661a155172932a13c08bda2db3674e4caa32368aa6eb02f38c2"
+SRC_URI[md5sum] = "1a7ea3362e405f8a5634f7ee53636094"
+SRC_URI[sha256sum] = "1b6df1433567a51a4a9c1a5a0de977aa351a405cc56d7d35f3388bad1f630350"
 
 DEPENDS = "${PYTHON_PN}-async ${PYTHON_PN}-setuptools-native ${PYTHON_PN}-smmap"
 
diff --git a/meta/recipes-devtools/python/python3-gitdb_2.0.5.bb b/meta/recipes-devtools/python/python3-gitdb_2.0.6.bb
similarity index 97%
rename from meta/recipes-devtools/python/python3-gitdb_2.0.5.bb
rename to meta/recipes-devtools/python/python3-gitdb_2.0.6.bb
index fe158327cbe..2dcd9c8affb 100644
--- a/meta/recipes-devtools/python/python3-gitdb_2.0.5.bb
+++ b/meta/recipes-devtools/python/python3-gitdb_2.0.6.bb
@@ -1,2 +1,3 @@
 inherit setuptools3
 require python-gitdb.inc
+
-- 
2.25.0



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

* [PATCH 16/24] libedit: upgrade 20191025-3.1 -> 20191231-3.1
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (13 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 15/24] python3-gitdb: upgrade 2.0.5 -> 2.0.6 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 17/24] python3-setuptools: upgrade 42.0.2 -> 45.0.0 Alexander Kanavin
                   ` (7 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../{libedit_20191025-3.1.bb => libedit_20191231-3.1.bb}      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/libedit/{libedit_20191025-3.1.bb => libedit_20191231-3.1.bb} (78%)

diff --git a/meta/recipes-devtools/libedit/libedit_20191025-3.1.bb b/meta/recipes-devtools/libedit/libedit_20191231-3.1.bb
similarity index 78%
rename from meta/recipes-devtools/libedit/libedit_20191025-3.1.bb
rename to meta/recipes-devtools/libedit/libedit_20191231-3.1.bb
index f810013a680..7116c9ddbc0 100644
--- a/meta/recipes-devtools/libedit/libedit_20191025-3.1.bb
+++ b/meta/recipes-devtools/libedit/libedit_20191231-3.1.bb
@@ -13,7 +13,7 @@ inherit autotools
 SRC_URI = "http://www.thrysoee.dk/editline/${BP}.tar.gz \
            file://stdc-predef.patch \
           "
-SRC_URI[md5sum] = "2d6568467080cfd75e715d045102b544"
-SRC_URI[sha256sum] = "6dff036660d478bfaa14e407fc5de26d22da1087118c897b1a3ad2e90cb7bf39"
+SRC_URI[md5sum] = "2e22a51131de94ff2df24901f7cfe416"
+SRC_URI[sha256sum] = "dbb82cb7e116a5f8025d35ef5b4f7d4a3cdd0a3909a146a39112095a2d229071"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.25.0



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

* [PATCH 17/24] python3-setuptools: upgrade 42.0.2 -> 45.0.0
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (14 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 16/24] libedit: upgrade 20191025-3.1 -> 20191231-3.1 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 18/24] python3-git: upgrade 3.0.2 -> 3.0.5 Alexander Kanavin
                   ` (6 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...01-conditionally-do-not-fetch-code-by-easy_install.patch | 6 +++---
 meta/recipes-devtools/python/python-setuptools.inc          | 4 ++--
 ...n3-setuptools_42.0.2.bb => python3-setuptools_45.0.0.bb} | 0
 3 files changed, 5 insertions(+), 5 deletions(-)
 rename meta/recipes-devtools/python/{python3-setuptools_42.0.2.bb => python3-setuptools_45.0.0.bb} (100%)

diff --git a/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch b/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
index 169d1b155bd..b1a6813b2e3 100644
--- a/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
+++ b/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
@@ -1,4 +1,4 @@
-From 5bba4f57f048016aa92ce5909e9e372db619554e Mon Sep 17 00:00:00 2001
+From 50e4ebce9f711391e2fa9f43906259e19ac00e63 Mon Sep 17 00:00:00 2001
 From: Hongxu Jia <hongxu.jia@windriver.com>
 Date: Tue, 17 Jul 2018 10:13:38 +0800
 Subject: [PATCH] conditionally do not fetch code by easy_install
@@ -15,10 +15,10 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
  1 file changed, 5 insertions(+)
 
 diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
-index 05508ce..945e118 100755
+index 09066f8..d3039a5 100644
 --- a/setuptools/command/easy_install.py
 +++ b/setuptools/command/easy_install.py
-@@ -640,6 +640,11 @@ class easy_install(Command):
+@@ -649,6 +649,11 @@ class easy_install(Command):
              os.path.exists(tmpdir) and rmtree(rmtree_safe(tmpdir))
  
      def easy_install(self, spec, deps=False):
diff --git a/meta/recipes-devtools/python/python-setuptools.inc b/meta/recipes-devtools/python/python-setuptools.inc
index d8bce7145eb..c697937887b 100644
--- a/meta/recipes-devtools/python/python-setuptools.inc
+++ b/meta/recipes-devtools/python/python-setuptools.inc
@@ -10,8 +10,8 @@ inherit pypi
 
 SRC_URI_append_class-native = " file://0001-conditionally-do-not-fetch-code-by-easy_install.patch"
 
-SRC_URI[md5sum] = "5ac69b66a6f7d4785517017f37df28e9"
-SRC_URI[sha256sum] = "c5b372090d7c8709ce79a6a66872a91e518f7d65af97fca78135e1cb10d4b940"
+SRC_URI[md5sum] = "14898abd6f436eee58a5a2ba291fcbeb"
+SRC_URI[sha256sum] = "c46d9c8f2289535457d36c676b541ca78f7dcb736b97d02f50d17f7f15b583cc"
 
 DEPENDS += "${PYTHON_PN}"
 
diff --git a/meta/recipes-devtools/python/python3-setuptools_42.0.2.bb b/meta/recipes-devtools/python/python3-setuptools_45.0.0.bb
similarity index 100%
rename from meta/recipes-devtools/python/python3-setuptools_42.0.2.bb
rename to meta/recipes-devtools/python/python3-setuptools_45.0.0.bb
-- 
2.25.0



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

* [PATCH 18/24] python3-git: upgrade 3.0.2 -> 3.0.5
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (15 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 17/24] python3-setuptools: upgrade 42.0.2 -> 45.0.0 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 19/24] gnu-config: upgrade to latest revision Alexander Kanavin
                   ` (5 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../python/{python3-git_3.0.2.bb => python3-git_3.0.5.bb}     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-git_3.0.2.bb => python3-git_3.0.5.bb} (88%)

diff --git a/meta/recipes-devtools/python/python3-git_3.0.2.bb b/meta/recipes-devtools/python/python3-git_3.0.5.bb
similarity index 88%
rename from meta/recipes-devtools/python/python3-git_3.0.2.bb
rename to meta/recipes-devtools/python/python3-git_3.0.5.bb
index 9dd753db4fc..36313ef8b9a 100644
--- a/meta/recipes-devtools/python/python3-git_3.0.2.bb
+++ b/meta/recipes-devtools/python/python3-git_3.0.5.bb
@@ -12,8 +12,8 @@ PYPI_PACKAGE = "GitPython"
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "ccec14a5c9f18702406122983d80032c"
-SRC_URI[sha256sum] = "d2f4945f8260f6981d724f5957bc076398ada55cb5d25aaee10108bcdc894100"
+SRC_URI[md5sum] = "7555ad89a22f663c25cced5f623bdef0"
+SRC_URI[sha256sum] = "9c2398ffc3dcb3c40b27324b316f08a4f93ad646d5a6328cafbb871aa79f5e42"
 
 DEPENDS += " ${PYTHON_PN}-gitdb"
 
-- 
2.25.0



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

* [PATCH 19/24] gnu-config: upgrade to latest revision
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (16 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 18/24] python3-git: upgrade 3.0.2 -> 3.0.5 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 20/24] libarchive: upgrade 3.4.0 -> 3.4.1 Alexander Kanavin
                   ` (4 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-devtools/gnu-config/gnu-config_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/gnu-config/gnu-config_git.bb b/meta/recipes-devtools/gnu-config/gnu-config_git.bb
index 1630c128235..48b7e6d4a61 100644
--- a/meta/recipes-devtools/gnu-config/gnu-config_git.bb
+++ b/meta/recipes-devtools/gnu-config/gnu-config_git.bb
@@ -8,8 +8,8 @@ DEPENDS_class-native = "hostperl-runtime-native"
 
 INHIBIT_DEFAULT_DEPS = "1"
 
-SRCREV = "b98424c249119b79d3f709e26eb86f2fd4d5e5f3"
-PV = "20190501+git${SRCPV}"
+SRCREV = "5256817ace8493502ec88501a19e4051c2e220b0"
+PV = "20200117+git${SRCPV}"
 
 SRC_URI = "git://git.savannah.gnu.org/config.git \
            file://gnu-configize.in"
-- 
2.25.0



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

* [PATCH 20/24] libarchive: upgrade 3.4.0 -> 3.4.1
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (17 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 19/24] gnu-config: upgrade to latest revision Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 21/24] python3-six: upgrade 1.13.0 -> 1.14.0 Alexander Kanavin
                   ` (3 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../libarchive/CVE-2019-19221.patch           | 101 ------------------
 ...ibarchive_3.4.0.bb => libarchive_3.4.1.bb} |   8 +-
 2 files changed, 3 insertions(+), 106 deletions(-)
 delete mode 100644 meta/recipes-extended/libarchive/libarchive/CVE-2019-19221.patch
 rename meta/recipes-extended/libarchive/{libarchive_3.4.0.bb => libarchive_3.4.1.bb} (91%)

diff --git a/meta/recipes-extended/libarchive/libarchive/CVE-2019-19221.patch b/meta/recipes-extended/libarchive/libarchive/CVE-2019-19221.patch
deleted file mode 100644
index b57e87874fe..00000000000
--- a/meta/recipes-extended/libarchive/libarchive/CVE-2019-19221.patch
+++ /dev/null
@@ -1,101 +0,0 @@
-From 22b1db9d46654afc6f0c28f90af8cdc84a199f41 Mon Sep 17 00:00:00 2001
-From: Martin Matuska <martin@matuska.org>
-Date: Thu, 21 Nov 2019 03:08:40 +0100
-Subject: [PATCH] Bugfix and optimize archive_wstring_append_from_mbs()
-
-The cal to mbrtowc() or mbtowc() should read up to mbs_length
-bytes and not wcs_length. This avoids out-of-bounds reads.
-
-mbrtowc() and mbtowc() return (size_t)-1 wit errno EILSEQ when
-they encounter an invalid multibyte character and (size_t)-2 when
-they they encounter an incomplete multibyte character. As we return
-failure and all our callers error out it makes no sense to continue
-parsing mbs.
-
-As we allocate `len` wchars at the beginning and each wchar has
-at least one byte, there will never be need to grow the buffer,
-so the code can be left out. On the other hand, we are always
-allocatng more memory than we need.
-
-As long as wcs_length == mbs_length == len we can omit wcs_length.
-We keep the old code commented if we decide to save memory and
-use autoexpanding wcs_length in the future.
-
-Fixes #1276
-
-Upstream-Status: Backport [https://github.com/libarchive/libarchive/commit/22b1db9d46654afc6f0c28f90af8cdc84a199f41]
-CVE: CVE-2019-19221
-Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
----
- libarchive/archive_string.c | 28 +++++++++++++++++-----------
- 1 file changed, 17 insertions(+), 11 deletions(-)
-
-diff --git a/libarchive/archive_string.c b/libarchive/archive_string.c
-index 979a418b6..bd39c96f1 100644
---- a/libarchive/archive_string.c
-+++ b/libarchive/archive_string.c
-@@ -591,7 +591,7 @@ archive_wstring_append_from_mbs(struct archive_wstring *dest,
- 	 * No single byte will be more than one wide character,
- 	 * so this length estimate will always be big enough.
- 	 */
--	size_t wcs_length = len;
-+	// size_t wcs_length = len;
- 	size_t mbs_length = len;
- 	const char *mbs = p;
- 	wchar_t *wcs;
-@@ -600,7 +600,11 @@ archive_wstring_append_from_mbs(struct archive_wstring *dest,
- 
- 	memset(&shift_state, 0, sizeof(shift_state));
- #endif
--	if (NULL == archive_wstring_ensure(dest, dest->length + wcs_length + 1))
-+	/*
-+	 * As we decided to have wcs_length == mbs_length == len
-+	 * we can use len here instead of wcs_length
-+	 */
-+	if (NULL == archive_wstring_ensure(dest, dest->length + len + 1))
- 		return (-1);
- 	wcs = dest->s + dest->length;
- 	/*
-@@ -609,6 +613,12 @@ archive_wstring_append_from_mbs(struct archive_wstring *dest,
- 	 * multi bytes.
- 	 */
- 	while (*mbs && mbs_length > 0) {
-+		/*
-+		 * The buffer we allocated is always big enough.
-+		 * Keep this code path in a comment if we decide to choose
-+		 * smaller wcs_length in the future
-+		 */
-+/*
- 		if (wcs_length == 0) {
- 			dest->length = wcs - dest->s;
- 			dest->s[dest->length] = L'\0';
-@@ -618,24 +628,20 @@ archive_wstring_append_from_mbs(struct archive_wstring *dest,
- 				return (-1);
- 			wcs = dest->s + dest->length;
- 		}
-+*/
- #if HAVE_MBRTOWC
--		r = mbrtowc(wcs, mbs, wcs_length, &shift_state);
-+		r = mbrtowc(wcs, mbs, mbs_length, &shift_state);
- #else
--		r = mbtowc(wcs, mbs, wcs_length);
-+		r = mbtowc(wcs, mbs, mbs_length);
- #endif
- 		if (r == (size_t)-1 || r == (size_t)-2) {
- 			ret_val = -1;
--			if (errno == EILSEQ) {
--				++mbs;
--				--mbs_length;
--				continue;
--			} else
--				break;
-+			break;
- 		}
- 		if (r == 0 || r > mbs_length)
- 			break;
- 		wcs++;
--		wcs_length--;
-+		// wcs_length--;
- 		mbs += r;
- 		mbs_length -= r;
- 	}
diff --git a/meta/recipes-extended/libarchive/libarchive_3.4.0.bb b/meta/recipes-extended/libarchive/libarchive_3.4.1.bb
similarity index 91%
rename from meta/recipes-extended/libarchive/libarchive_3.4.0.bb
rename to meta/recipes-extended/libarchive/libarchive_3.4.1.bb
index 755a9c7fa40..2d33dd80ab8 100644
--- a/meta/recipes-extended/libarchive/libarchive_3.4.0.bb
+++ b/meta/recipes-extended/libarchive/libarchive_3.4.1.bb
@@ -31,12 +31,10 @@ PACKAGECONFIG[lz4] = "--with-lz4,--without-lz4,lz4,"
 
 EXTRA_OECONF += "--enable-largefile"
 
-SRC_URI = "http://libarchive.org/downloads/libarchive-${PV}.tar.gz \
-           file://CVE-2019-19221.patch \
-"
+SRC_URI = "http://libarchive.org/downloads/libarchive-${PV}.tar.gz"
 
-SRC_URI[md5sum] = "6046396255bd7cf6d0f6603a9bda39ac"
-SRC_URI[sha256sum] = "8643d50ed40c759f5412a3af4e353cffbce4fdf3b5cf321cb72cacf06b2d825e"
+SRC_URI[md5sum] = "59bff5ee6216cbb76c8354f6dd6f5a5a"
+SRC_URI[sha256sum] = "fcf87f3ad8db2e4f74f32526dee62dd1fb9894782b0a503a89c9d7a70a235191"
 
 inherit autotools update-alternatives pkgconfig
 
-- 
2.25.0



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

* [PATCH 21/24] python3-six: upgrade 1.13.0 -> 1.14.0
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (18 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 20/24] libarchive: upgrade 3.4.0 -> 3.4.1 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 22/24] xserver-xorg: upgrade 1.20.6 -> 1.20.7 Alexander Kanavin
                   ` (2 subsequent siblings)
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

License-update: copyright years
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-devtools/python/python-six.inc                 | 6 +++---
 .../python/{python3-six_1.13.0.bb => python3-six_1.14.0.bb} | 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)
 rename meta/recipes-devtools/python/{python3-six_1.13.0.bb => python3-six_1.14.0.bb} (97%)

diff --git a/meta/recipes-devtools/python/python-six.inc b/meta/recipes-devtools/python/python-six.inc
index c386090b4b0..bbbddbec50a 100644
--- a/meta/recipes-devtools/python/python-six.inc
+++ b/meta/recipes-devtools/python/python-six.inc
@@ -2,10 +2,10 @@ SUMMARY = "Python 2 and 3 compatibility library"
 HOMEPAGE = "https://pypi.python.org/pypi/six/"
 SECTION = "devel/python"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=f82eb3a1a7fade60bda5980935084b62"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=43cfc9e4ac0e377acfb9b76f56b8415d"
 
-SRC_URI[md5sum] = "e92c23c882c7d5564ce5773fe31b2771"
-SRC_URI[sha256sum] = "30f610279e8b2578cab6db20741130331735c781b56053c59c4076da27f06b66"
+SRC_URI[md5sum] = "21674588a57e649d1a6d977ec3122140"
+SRC_URI[sha256sum] = "236bdbdce46e6e6a3d61a337c0f8b763ca1e8717c03b369e87a7ec7ce1319c0a"
 
 inherit pypi
 
diff --git a/meta/recipes-devtools/python/python3-six_1.13.0.bb b/meta/recipes-devtools/python/python3-six_1.14.0.bb
similarity index 97%
rename from meta/recipes-devtools/python/python3-six_1.13.0.bb
rename to meta/recipes-devtools/python/python3-six_1.14.0.bb
index 8795313bec6..99e6629b2f5 100644
--- a/meta/recipes-devtools/python/python3-six_1.13.0.bb
+++ b/meta/recipes-devtools/python/python3-six_1.14.0.bb
@@ -1,2 +1,3 @@
 inherit setuptools3
 require python-six.inc
+
-- 
2.25.0



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

* [PATCH 22/24] xserver-xorg: upgrade 1.20.6 -> 1.20.7
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (19 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 21/24] python3-six: upgrade 1.13.0 -> 1.14.0 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-02-03  8:55   ` Richard Purdie
  2020-01-29  9:07 ` [PATCH 23/24] sed: upgrade 4.7 -> 4.8 Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 24/24] libpcre2: upgrade 10.33 -> 10.34 Alexander Kanavin
  22 siblings, 1 reply; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../{xserver-xorg_1.20.6.bb => xserver-xorg_1.20.7.bb}        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/xorg-xserver/{xserver-xorg_1.20.6.bb => xserver-xorg_1.20.7.bb} (88%)

diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.6.bb b/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.7.bb
similarity index 88%
rename from meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.6.bb
rename to meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.7.bb
index a1cd490394f..2bd10adf078 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.6.bb
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.7.bb
@@ -5,8 +5,8 @@ SRC_URI += "file://0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.pat
             file://0001-test-xtest-Initialize-array-with-braces.patch \
             file://sdksyms-no-build-path.patch \
             "
-SRC_URI[md5sum] = "a98170084f2c8fed480d2ff601f8a14b"
-SRC_URI[sha256sum] = "6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1"
+SRC_URI[md5sum] = "d2e96355ad47244c675bce38db2b48a9"
+SRC_URI[sha256sum] = "bd5986f010f34f5b3d6bc99fe395ecb1e0dead15a26807e0c832701809a06ea1"
 
 CFLAGS += "-fcommon"
 
-- 
2.25.0



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

* [PATCH 23/24] sed: upgrade 4.7 -> 4.8
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (20 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 22/24] xserver-xorg: upgrade 1.20.6 -> 1.20.7 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  2020-01-29  9:07 ` [PATCH 24/24] libpcre2: upgrade 10.33 -> 10.34 Alexander Kanavin
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

License-update: copyright years
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-extended/sed/{sed_4.7.bb => sed_4.8.bb} | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
 rename meta/recipes-extended/sed/{sed_4.7.bb => sed_4.8.bb} (91%)

diff --git a/meta/recipes-extended/sed/sed_4.7.bb b/meta/recipes-extended/sed/sed_4.8.bb
similarity index 91%
rename from meta/recipes-extended/sed/sed_4.7.bb
rename to meta/recipes-extended/sed/sed_4.8.bb
index a285941dc4b..39e3a61df5e 100644
--- a/meta/recipes-extended/sed/sed_4.7.bb
+++ b/meta/recipes-extended/sed/sed_4.8.bb
@@ -2,15 +2,16 @@ SUMMARY = "Stream EDitor (text filtering utility)"
 HOMEPAGE = "http://www.gnu.org/software/sed/"
 LICENSE = "GPLv3+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=c678957b0c8e964aa6c70fd77641a71e \
-                    file://sed/sed.h;beginline=1;endline=15;md5=e869c874e5472ba89f63f381b0e93475"
+                    file://sed/sed.h;beginline=1;endline=15;md5=fb3c7e6fbca6f66943859153d4be8efe \
+                    "
 SECTION = "console/utils"
 
 SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.xz \
            file://run-ptest \
 "
 
-SRC_URI[md5sum] = "777ddfd9d71dd06711fe91f0925e1573"
-SRC_URI[sha256sum] = "2885768cd0a29ff8d58a6280a270ff161f6a3deb5690b2be6c49f46d4c67bd6a"
+SRC_URI[md5sum] = "6d906edfdb3202304059233f51f9a71d"
+SRC_URI[sha256sum] = "f79b0cfea71b37a8eeec8490db6c5f7ae7719c35587f21edb0617f370eeff633"
 
 inherit autotools texinfo update-alternatives gettext ptest
 
-- 
2.25.0



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

* [PATCH 24/24] libpcre2: upgrade 10.33 -> 10.34
  2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
                   ` (21 preceding siblings ...)
  2020-01-29  9:07 ` [PATCH 23/24] sed: upgrade 4.7 -> 4.8 Alexander Kanavin
@ 2020-01-29  9:07 ` Alexander Kanavin
  22 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-01-29  9:07 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../libpcre/{libpcre2_10.33.bb => libpcre2_10.34.bb}          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/libpcre/{libpcre2_10.33.bb => libpcre2_10.34.bb} (93%)

diff --git a/meta/recipes-support/libpcre/libpcre2_10.33.bb b/meta/recipes-support/libpcre/libpcre2_10.34.bb
similarity index 93%
rename from meta/recipes-support/libpcre/libpcre2_10.33.bb
rename to meta/recipes-support/libpcre/libpcre2_10.34.bb
index 87da3137696..fa8655e0276 100644
--- a/meta/recipes-support/libpcre/libpcre2_10.33.bb
+++ b/meta/recipes-support/libpcre/libpcre2_10.34.bb
@@ -14,8 +14,8 @@ SRC_URI = "https://ftp.pcre.org/pub/pcre/pcre2-${PV}.tar.bz2 \
            file://pcre-cross.patch \
 "
 
-SRC_URI[md5sum] = "80b355f2dce909a2e2424f5c79eddb44"
-SRC_URI[sha256sum] = "35514dff0ccdf02b55bd2e9fa586a1b9d01f62332c3356e379eabb75f789d8aa"
+SRC_URI[md5sum] = "d280b62ded13f9ccf2fac16ee5286366"
+SRC_URI[sha256sum] = "74c473ffaba9e13db6951fd146e0143fe9887852ce73406a03277af1d9b798ca"
 
 CVE_PRODUCT = "pcre2"
 
-- 
2.25.0



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

* Re: [PATCH 22/24] xserver-xorg: upgrade 1.20.6 -> 1.20.7
  2020-01-29  9:07 ` [PATCH 22/24] xserver-xorg: upgrade 1.20.6 -> 1.20.7 Alexander Kanavin
@ 2020-02-03  8:55   ` Richard Purdie
  0 siblings, 0 replies; 28+ messages in thread
From: Richard Purdie @ 2020-02-03  8:55 UTC (permalink / raw)
  To: Alexander Kanavin, openembedded-core

On Wed, 2020-01-29 at 10:07 +0100, Alexander Kanavin wrote:
> Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> ---
>  .../{xserver-xorg_1.20.6.bb => xserver-xorg_1.20.7.bb}        | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>  rename meta/recipes-graphics/xorg-xserver/{xserver-xorg_1.20.6.bb => xserver-xorg_1.20.7.bb} (88%)
> 
> diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.6.bb b/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.7.bb
> similarity index 88%
> rename from meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.6.bb
> rename to meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.7.bb
> index a1cd490394f..2bd10adf078 100644
> --- a/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.6.bb
> +++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.20.7.bb
> @@ -5,8 +5,8 @@ SRC_URI += "file://0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.pat
>              file://0001-test-xtest-Initialize-array-with-braces.patch \
>              file://sdksyms-no-build-path.patch \
>              "
> -SRC_URI[md5sum] = "a98170084f2c8fed480d2ff601f8a14b"
> -SRC_URI[sha256sum] = "6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1"
> +SRC_URI[md5sum] = "d2e96355ad47244c675bce38db2b48a9"
> +SRC_URI[sha256sum] = "bd5986f010f34f5b3d6bc99fe395ecb1e0dead15a26807e0c832701809a06ea1"
>  
>  CFLAGS += "-fcommon"

https://autobuilder.yoctoproject.org/typhoon/#/builders/47/builds/1534

nodistro build so probably GL distro features related:

../../../../../xorg-server-1.20.7/hw/xfree86/drivers/modesetting/drmmode_display.c: In function 'drmmode_crtc_set_mode':
../../../../../xorg-server-1.20.7/hw/xfree86/drivers/modesetting/drmmode_display.c:757:15: warning: unused variable 'screen' [-Wunused-variable]
  757 |     ScreenPtr screen = crtc->scrn->pScreen;
      |               ^~~~~~
../../../../../xorg-server-1.20.7/hw/xfree86/drivers/modesetting/drmmode_display.c: In function 'drmmode_clear_pixmap':
../../../../../xorg-server-1.20.7/hw/xfree86/drivers/modesetting/drmmode_display.c:1806:9: error: implicit declaration of function 'miClearDrawable'; did you mean 'drmCreateDrawable'? [-Werror=implicit-function-declaration]
 1806 |         miClearDrawable(&pixmap->drawable, gc);
      |         ^~~~~~~~~~~~~~~
      |         drmCreateDrawable
../../../../../xorg-server-1.20.7/hw/xfree86/drivers/modesetting/drmmode_display.c:1806:9: warning: nested extern declaration of 'miClearDrawable' [-Wnested-externs]
cc1: some warnings being treated as errors
make[5]: *** [Makefile:789: drmmode_display.lo] Error 1

Cheers,

Richard



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

* Re: [PATCH 06/24] bison: upgrade 3.4.2 -> 3.5
  2020-01-29  9:07 ` [PATCH 06/24] bison: upgrade 3.4.2 -> 3.5 Alexander Kanavin
@ 2020-02-03 15:33   ` Khem Raj
  0 siblings, 0 replies; 28+ messages in thread
From: Khem Raj @ 2020-02-03 15:33 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: Patches and discussions about the oe-core layer

http://errors.yoctoproject.org/Errors/Details/368059/

On Fri, Jan 31, 2020 at 1:34 AM Alexander Kanavin
<alex.kanavin@gmail.com> wrote:
>
> Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> ---
>  meta/recipes-devtools/bison/{bison_3.4.2.bb => bison_3.5.bb} | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>  rename meta/recipes-devtools/bison/{bison_3.4.2.bb => bison_3.5.bb} (90%)
>
> diff --git a/meta/recipes-devtools/bison/bison_3.4.2.bb b/meta/recipes-devtools/bison/bison_3.5.bb
> similarity index 90%
> rename from meta/recipes-devtools/bison/bison_3.4.2.bb
> rename to meta/recipes-devtools/bison/bison_3.5.bb
> index 46f0f908dd4..3d8f6579b9e 100644
> --- a/meta/recipes-devtools/bison/bison_3.4.2.bb
> +++ b/meta/recipes-devtools/bison/bison_3.5.bb
> @@ -17,8 +17,8 @@ SRC_URI = "${GNU_MIRROR}/bison/bison-${PV}.tar.xz \
>  # No point in hardcoding path to m4, just use PATH
>  EXTRA_OECONF += "M4=m4"
>
> -SRC_URI[md5sum] = "d1ceb9dfde2d03b24a4c1137f7f1b572"
> -SRC_URI[sha256sum] = "27d05534699735dc69e86add5b808d6cb35900ad3fd63fa82e3eb644336abfa0"
> +SRC_URI[md5sum] = "c0230be066069f33c8445766833f3205"
> +SRC_URI[sha256sum] = "55e4a023b1b4ad19095a5f8279f0dc048fa29f970759cea83224a6d5e7a3a641"
>
>  inherit autotools gettext texinfo
>
> --
> 2.25.0
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* linux-firmware broken (was: Re: [PATCH 09/24] linux-firmware: upgrade to latest revision)
  2020-01-29  9:07 ` [PATCH 09/24] linux-firmware: upgrade to latest revision Alexander Kanavin
@ 2020-03-04  9:17   ` André Draszik
  2020-03-04 10:13     ` Alexander Kanavin
  0 siblings, 1 reply; 28+ messages in thread
From: André Draszik @ 2020-03-04  9:17 UTC (permalink / raw)
  To: openembedded-core

On Wed, 2020-01-29 at 10:07 +0100, Alexander Kanavin wrote:
> License-Update: Copyright years, file lists
> Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>

This recipe update has broken linux-firmware for various devices I think.

It appears that since upstream's 20191022 release, linux-firmware is not
meant to be installed via simple copying anymore  (as this recipe still
does in do_install()), but instead you're meant to use their
copy-firmware.sh script.

In particular, all the symlinks that used to be part of the upstream git
are missing now, because copy-firmware extracts them on the fly from the
WHENCE file, they're not part of the git repository anymore. Without those
various kernel drivers will fail to load their firmware...


Cheers,
Andre'


> ---
>  ...ux-firmware_20190815.bb => linux-firmware_20200117.bb} | 8 +++++---
>  1 file changed, 5 insertions(+), 3 deletions(-)
>  rename meta/recipes-kernel/linux-firmware/{linux-firmware_20190815.bb => linux-firmware_20200117.bb} (99%)
> 
> diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_20190815.bb b/meta/recipes-kernel/linux-firmware/linux-
> firmware_20200117.bb
> similarity index 99%
> rename from meta/recipes-kernel/linux-firmware/linux-firmware_20190815.bb
> rename to meta/recipes-kernel/linux-firmware/linux-firmware_20200117.bb
> index d83000b64f0..8111c410161 100644
> --- a/meta/recipes-kernel/linux-firmware/linux-firmware_20190815.bb
> +++ b/meta/recipes-kernel/linux-firmware/linux-firmware_20200117.bb
> @@ -66,7 +66,7 @@ LICENSE = "\
>  LIC_FILES_CHKSUM = "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
>                      file://LICENCE.adsp_sst;md5=615c45b91a5a4a9fe046d6ab9a2df728 \
>                      file://LICENCE.agere;md5=af0133de6b4a9b2522defd5f188afd31 \
> -                    file://LICENSE.amdgpu;md5=ab515ef6495ab5c5a3b08ab2db62df11 \
> +                    file://LICENSE.amdgpu;md5=d357524f5099e2a3db3c1838921c593f \
>                      file://LICENSE.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
>                      file://LICENSE.amlogic_vdec;md5=dc44f59bf64a81643e500ad3f39a468a \
>                      file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
> @@ -88,6 +88,7 @@ LIC_FILES_CHKSUM = "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
>                      file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
>                      file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
>                      file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
> +                    file://LICENSE.ice;md5=742ab4850f2670792940e6d15c974b2f \
>                      file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
>                      file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
>                      file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
> @@ -98,6 +99,7 @@ LIC_FILES_CHKSUM = "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
>                      file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
>                      file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
>                      file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
> +                    file://LICENCE.NXP;md5=58bb8ba632cd729b9ba6183bc6aed36f \
>                      file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
>                      file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837 \
>                      file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
> @@ -123,7 +125,7 @@ LIC_FILES_CHKSUM = "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
>                      file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
>                      file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
>                      file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
> -                    file://WHENCE;md5=37a01e379219d1e06dbccfa90a8fc0ad \
> +                    file://WHENCE;md5=cdcd9f664a404c681bb745bcac6253a3 \
>                      "
>  
>  # These are not common licenses, set NO_GENERIC_LICENSE for them
> @@ -192,7 +194,7 @@ NO_GENERIC_LICENSE[WHENCE] = "WHENCE"
>  
>  PE = "1"
>  
> -SRCREV = "07b925b450bfb4cf3e141c612ec5b104658cd020"
> +SRCREV = "9c340bd1bdabf53808a9178a7be98c5f2ad599a7"
>  
>  SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"
>  
> -- 
> 2.25.0
> 



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

* Re: linux-firmware broken (was: Re: [PATCH 09/24] linux-firmware: upgrade to latest revision)
  2020-03-04  9:17   ` linux-firmware broken (was: Re: [PATCH 09/24] linux-firmware: upgrade to latest revision) André Draszik
@ 2020-03-04 10:13     ` Alexander Kanavin
  0 siblings, 0 replies; 28+ messages in thread
From: Alexander Kanavin @ 2020-03-04 10:13 UTC (permalink / raw)
  To: André Draszik; +Cc: OE-core

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

Patch sent :)

Alex

On Wed, 4 Mar 2020 at 10:17, André Draszik <git@andred.net> wrote:

> On Wed, 2020-01-29 at 10:07 +0100, Alexander Kanavin wrote:
> > License-Update: Copyright years, file lists
> > Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
>
> This recipe update has broken linux-firmware for various devices I think.
>
> It appears that since upstream's 20191022 release, linux-firmware is not
> meant to be installed via simple copying anymore  (as this recipe still
> does in do_install()), but instead you're meant to use their
> copy-firmware.sh script.
>
> In particular, all the symlinks that used to be part of the upstream git
> are missing now, because copy-firmware extracts them on the fly from the
> WHENCE file, they're not part of the git repository anymore. Without those
> various kernel drivers will fail to load their firmware...
>
>
> Cheers,
> Andre'
>
>
> > ---
> >  ...ux-firmware_20190815.bb => linux-firmware_20200117.bb} | 8 +++++---
> >  1 file changed, 5 insertions(+), 3 deletions(-)
> >  rename meta/recipes-kernel/linux-firmware/{linux-firmware_20190815.bb
> => linux-firmware_20200117.bb} (99%)
> >
> > diff --git a/meta/recipes-kernel/linux-firmware/
> linux-firmware_20190815.bb b/meta/recipes-kernel/linux-firmware/linux-
> > firmware_20200117.bb
> > similarity index 99%
> > rename from meta/recipes-kernel/linux-firmware/
> linux-firmware_20190815.bb
> > rename to meta/recipes-kernel/linux-firmware/linux-firmware_20200117.bb
> > index d83000b64f0..8111c410161 100644
> > --- a/meta/recipes-kernel/linux-firmware/linux-firmware_20190815.bb
> > +++ b/meta/recipes-kernel/linux-firmware/linux-firmware_20200117.bb
> > @@ -66,7 +66,7 @@ LICENSE = "\
> >  LIC_FILES_CHKSUM =
> "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
> >
> file://LICENCE.adsp_sst;md5=615c45b91a5a4a9fe046d6ab9a2df728 \
> >
> file://LICENCE.agere;md5=af0133de6b4a9b2522defd5f188afd31 \
> > -
> file://LICENSE.amdgpu;md5=ab515ef6495ab5c5a3b08ab2db62df11 \
> > +
> file://LICENSE.amdgpu;md5=d357524f5099e2a3db3c1838921c593f \
> >
> file://LICENSE.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
> >
> file://LICENSE.amlogic_vdec;md5=dc44f59bf64a81643e500ad3f39a468a \
> >
> file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
> > @@ -88,6 +88,7 @@ LIC_FILES_CHKSUM =
> "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
> >
> file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
> >
> file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
> >
> file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
> > +
> file://LICENSE.ice;md5=742ab4850f2670792940e6d15c974b2f \
> >
> file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
> >
> file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
> >
> file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
> > @@ -98,6 +99,7 @@ LIC_FILES_CHKSUM =
> "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
> >
> file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
> >
> file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
> >
> file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
> > +
> file://LICENCE.NXP;md5=58bb8ba632cd729b9ba6183bc6aed36f \
> >
> file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
> >
> file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837
> \
> >
> file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
> > @@ -123,7 +125,7 @@ LIC_FILES_CHKSUM =
> "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \
> >
> file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
> >
> file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
> >
> file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
> > -                    file://WHENCE;md5=37a01e379219d1e06dbccfa90a8fc0ad \
> > +                    file://WHENCE;md5=cdcd9f664a404c681bb745bcac6253a3 \
> >                      "
> >
> >  # These are not common licenses, set NO_GENERIC_LICENSE for them
> > @@ -192,7 +194,7 @@ NO_GENERIC_LICENSE[WHENCE] = "WHENCE"
> >
> >  PE = "1"
> >
> > -SRCREV = "07b925b450bfb4cf3e141c612ec5b104658cd020"
> > +SRCREV = "9c340bd1bdabf53808a9178a7be98c5f2ad599a7"
> >
> >  SRC_URI = "git://
> git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"
> >
> > --
> > 2.25.0
> >
>
>

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

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

end of thread, other threads:[~2020-03-04 10:13 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-29  9:07 [PATCH 01/24] core-image-sato-sdk-ptest: do not pull in ptest-pkgs Alexander Kanavin
2020-01-29  9:07 ` [PATCH 02/24] findutils: drop upstream-version-is-even Alexander Kanavin
2020-01-29  9:07 ` [PATCH 03/24] libva-utils: fix upstream version check Alexander Kanavin
2020-01-29  9:07 ` [PATCH 04/24] speexdsp: " Alexander Kanavin
2020-01-29  9:07 ` [PATCH 05/24] shared-mime-info: fix (sort of) " Alexander Kanavin
2020-01-29  9:07 ` [PATCH 06/24] bison: upgrade 3.4.2 -> 3.5 Alexander Kanavin
2020-02-03 15:33   ` Khem Raj
2020-01-29  9:07 ` [PATCH 07/24] puzzles: upgrade to latest revision Alexander Kanavin
2020-01-29  9:07 ` [PATCH 08/24] socat: upgrade 1.7.3.3 -> 1.7.3.4 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 09/24] linux-firmware: upgrade to latest revision Alexander Kanavin
2020-03-04  9:17   ` linux-firmware broken (was: Re: [PATCH 09/24] linux-firmware: upgrade to latest revision) André Draszik
2020-03-04 10:13     ` Alexander Kanavin
2020-01-29  9:07 ` [PATCH 10/24] libxpm: upgrade 3.5.12 -> 3.5.13 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 11/24] ccache: upgrade 3.7.3 -> 3.7.7 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 12/24] piglit: upgrade to latest revision Alexander Kanavin
2020-01-29  9:07 ` [PATCH 13/24] kmscube: " Alexander Kanavin
2020-01-29  9:07 ` [PATCH 14/24] ncurses: upgrade 6.1+20190803 -> 6.1+20191019 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 15/24] python3-gitdb: upgrade 2.0.5 -> 2.0.6 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 16/24] libedit: upgrade 20191025-3.1 -> 20191231-3.1 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 17/24] python3-setuptools: upgrade 42.0.2 -> 45.0.0 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 18/24] python3-git: upgrade 3.0.2 -> 3.0.5 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 19/24] gnu-config: upgrade to latest revision Alexander Kanavin
2020-01-29  9:07 ` [PATCH 20/24] libarchive: upgrade 3.4.0 -> 3.4.1 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 21/24] python3-six: upgrade 1.13.0 -> 1.14.0 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 22/24] xserver-xorg: upgrade 1.20.6 -> 1.20.7 Alexander Kanavin
2020-02-03  8:55   ` Richard Purdie
2020-01-29  9:07 ` [PATCH 23/24] sed: upgrade 4.7 -> 4.8 Alexander Kanavin
2020-01-29  9:07 ` [PATCH 24/24] libpcre2: upgrade 10.33 -> 10.34 Alexander Kanavin

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.