All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1
@ 2021-05-22  1:35 Andreas Müller
  2021-05-22  1:35 ` [PATCH 02/17] gnuplot: upgrade 5.2.8 -> 5.4.1 Andreas Müller
                   ` (16 more replies)
  0 siblings, 17 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Checked sources: Back ported CVE-patch can go

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../giflib/files/CVE-2019-15133.patch         | 23 -------------------
 .../{giflib_5.1.4.bb => giflib_5.2.1.bb}      | 19 ++++++++-------
 2 files changed, 11 insertions(+), 31 deletions(-)
 delete mode 100644 meta-oe/recipes-devtools/giflib/files/CVE-2019-15133.patch
 rename meta-oe/recipes-devtools/giflib/{giflib_5.1.4.bb => giflib_5.2.1.bb} (54%)

diff --git a/meta-oe/recipes-devtools/giflib/files/CVE-2019-15133.patch b/meta-oe/recipes-devtools/giflib/files/CVE-2019-15133.patch
deleted file mode 100644
index 9957be82f..000000000
--- a/meta-oe/recipes-devtools/giflib/files/CVE-2019-15133.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 799eb6a3af8a3dd81e2429bf11a72a57e541f908 Mon Sep 17 00:00:00 2001
-From: "Eric S. Raymond" <esr@thyrsus.com>
-Date: Sun, 17 Mar 2019 12:37:21 -0400
-Subject: [PATCH] Address SF bug #119: MemorySanitizer: FPE on unknown address
-
----
- dgif_lib.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-Upstream-status: Backport [https://sourceforge.net/p/giflib/code/ci/799eb6a3af8a3dd81e2429bf11a72a57e541f908/]
-CVE: CVE-2019-15133
-
---- a/lib/dgif_lib.c	2021-01-13 19:28:18.923493586 +0100
-+++ b/lib/dgif_lib.c	2021-01-13 19:28:55.245863085 +0100
-@@ -1099,7 +1099,7 @@ DGifSlurp(GifFileType *GifFile)
- 
-               sp = &GifFile->SavedImages[GifFile->ImageCount - 1];
-               /* Allocate memory for the image */
--              if (sp->ImageDesc.Width < 0 && sp->ImageDesc.Height < 0 &&
-+              if (sp->ImageDesc.Width <= 0 && sp->ImageDesc.Height <= 0 &&
-                       sp->ImageDesc.Width > (INT_MAX / sp->ImageDesc.Height)) {
-                   return GIF_ERROR;
-               }
diff --git a/meta-oe/recipes-devtools/giflib/giflib_5.1.4.bb b/meta-oe/recipes-devtools/giflib/giflib_5.2.1.bb
similarity index 54%
rename from meta-oe/recipes-devtools/giflib/giflib_5.1.4.bb
rename to meta-oe/recipes-devtools/giflib/giflib_5.2.1.bb
index 1871bab46..cbb57782b 100644
--- a/meta-oe/recipes-devtools/giflib/giflib_5.1.4.bb
+++ b/meta-oe/recipes-devtools/giflib/giflib_5.2.1.bb
@@ -3,14 +3,18 @@ SECTION = "libs"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=ae11c61b04b2917be39b11f78d71519a"
 
-SRC_URI = " \
-    ${SOURCEFORGE_MIRROR}/giflib/${BP}.tar.bz2 \
-    file://CVE-2019-15133.patch \
-"
-
 CVE_PRODUCT = "giflib_project:giflib"
 
-inherit autotools
+DEPENDS = "xmlto-native"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/giflib/${BP}.tar.gz"
+SRC_URI[sha256sum] = "31da5562f44c5f15d63340a09a4fd62b48c45620cd302f77a6d9acf0077879bd"
+
+inherit autotools-brokensep
+
+do_install() {
+    oe_runmake DESTDIR=${D} PREFIX=${prefix} LIBDIR=${libdir} install
+}
 
 PACKAGES += "${PN}-utils"
 FILES_${PN} = "${libdir}/libgif.so.*"
@@ -20,5 +24,4 @@ BBCLASSEXTEND = "native"
 
 RDEPENDS_${PN}-utils = "perl"
 
-SRC_URI[md5sum] = "2c171ced93c0e83bb09e6ccad8e3ba2b"
-SRC_URI[sha256sum] = "df27ec3ff24671f80b29e6ab1c4971059c14ac3db95406884fc26574631ba8d5"
+
-- 
2.31.1


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

* [PATCH 02/17] gnuplot: upgrade 5.2.8 -> 5.4.1
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 03/17] zsh: upgrade 5.4.2 -> 5.8 Andreas Müller
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...to-conversion-tools-for-native-build.patch |  9 ++----
 .../gnuplot/0002-do-not-build-demos.patch     | 12 ++++----
 .../0003-Use-native-tools-to-build-docs.patch | 28 +++++++++++--------
 .../{gnuplot_5.2.8.bb => gnuplot_5.4.1.bb}    | 14 +++++-----
 4 files changed, 33 insertions(+), 30 deletions(-)
 rename meta-oe/recipes-extended/gnuplot/{gnuplot_5.2.8.bb => gnuplot_5.4.1.bb} (84%)

diff --git a/meta-oe/recipes-extended/gnuplot/gnuplot/0001-reduce-build-to-conversion-tools-for-native-build.patch b/meta-oe/recipes-extended/gnuplot/gnuplot/0001-reduce-build-to-conversion-tools-for-native-build.patch
index f8f1fd00f..7a2ecdc10 100644
--- a/meta-oe/recipes-extended/gnuplot/gnuplot/0001-reduce-build-to-conversion-tools-for-native-build.patch
+++ b/meta-oe/recipes-extended/gnuplot/gnuplot/0001-reduce-build-to-conversion-tools-for-native-build.patch
@@ -21,11 +21,8 @@ index 9241ce5..b24e291 100644
  ## Process this file with automake to produce Makefile.in -*-Makefile-*-
  AUTOMAKE_OPTIONS = foreign
  
--SUBDIRS = config m4 term src docs man demo tutorial share
+-SUBDIRS = config m4 term src docs man demo share
 +SUBDIRS = docs
  
- EXTRA_DIST = BUGS Copyright FAQ.pdf GNUmakefile INSTALL INSTALL.gnu \
- Makefile.maint PATCHLEVEL PGPKEYS README RELEASE_NOTES \
--- 
-2.14.3
-
+ EXTRA_DIST = BUGS Copyright FAQ.pdf INSTALL INSTALL.gnu \
+ PATCHLEVEL PGPKEYS README RELEASE_NOTES \
diff --git a/meta-oe/recipes-extended/gnuplot/gnuplot/0002-do-not-build-demos.patch b/meta-oe/recipes-extended/gnuplot/gnuplot/0002-do-not-build-demos.patch
index 8e0b4a271..5f96cdf69 100644
--- a/meta-oe/recipes-extended/gnuplot/gnuplot/0002-do-not-build-demos.patch
+++ b/meta-oe/recipes-extended/gnuplot/gnuplot/0002-do-not-build-demos.patch
@@ -14,18 +14,18 @@ Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/Makefile.am b/Makefile.am
-index 9241ce5..b24e291 100644
+index 7e2c400..a8dbf96 100644
 --- a/Makefile.am
 +++ b/Makefile.am
 @@ -1,7 +1,7 @@
  ## Process this file with automake to produce Makefile.in -*-Makefile-*-
  AUTOMAKE_OPTIONS = foreign
  
--SUBDIRS = config m4 term src docs man demo tutorial share
-+SUBDIRS = config m4 term src docs man tutorial share
+-SUBDIRS = config m4 term src docs man demo share
++SUBDIRS = config m4 term src docs man share
  
- EXTRA_DIST = BUGS Copyright FAQ.pdf GNUmakefile INSTALL INSTALL.gnu \
- Makefile.maint PATCHLEVEL PGPKEYS README RELEASE_NOTES \
+ EXTRA_DIST = BUGS Copyright FAQ.pdf INSTALL INSTALL.gnu \
+ PATCHLEVEL PGPKEYS README RELEASE_NOTES \
 -- 
-2.14.3
+2.31.1
 
diff --git a/meta-oe/recipes-extended/gnuplot/gnuplot/0003-Use-native-tools-to-build-docs.patch b/meta-oe/recipes-extended/gnuplot/gnuplot/0003-Use-native-tools-to-build-docs.patch
index a4039c317..c2d2f7f3f 100644
--- a/meta-oe/recipes-extended/gnuplot/gnuplot/0003-Use-native-tools-to-build-docs.patch
+++ b/meta-oe/recipes-extended/gnuplot/gnuplot/0003-Use-native-tools-to-build-docs.patch
@@ -6,16 +6,22 @@ MIME-Version: 1.0
 Content-Type: text/plain; charset=UTF-8
 Content-Transfer-Encoding: 8bit
 
+From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
+
 ---
  docs/Makefile.am | 22 +++++++++++-----------
  1 file changed, 11 insertions(+), 11 deletions(-)
 
 diff --git a/docs/Makefile.am b/docs/Makefile.am
-index 3baf0c4..e82f87d 100644
+index b20918a..47406eb 100644
 --- a/docs/Makefile.am
 +++ b/docs/Makefile.am
-@@ -152,7 +152,7 @@ gnuplot-groff.ps: gnuplot.ms $(srcdir)/titlepag.ms
+@@ -156,7 +156,7 @@ gnuplot-groff.ps: gnuplot.ms $(srcdir)/titlepag.ms
  
  ### doc2xxx dependencies
  gnuplot.ms: doc2ms$(EXEEXT) $(srcdir)/gnuplot.doc
@@ -24,7 +30,7 @@ index 3baf0c4..e82f87d 100644
  
  doc2ms_SOURCES = doc2ms.c termdoc.c
  doc2ms_CPPFLAGS = -DALL_TERM_DOC $(AM_CPPFLAGS)
-@@ -173,10 +173,10 @@ pdf_figures: $(GNUPLOT_EXE) $(srcdir)/plotstyles.gnu
+@@ -177,10 +177,10 @@ pdf_figures: $(GNUPLOT_EXE) $(srcdir)/plotstyles.gnu
  	$(AM_V_GEN)touch $@
  
  figures.tex: allterm.h doc2tex$(EXEEXT) $(srcdir)/gnuplot.doc
@@ -37,7 +43,7 @@ index 3baf0c4..e82f87d 100644
  
  pdf: gnuplot.pdf
  pdf_nofig: nofigures.pdf
-@@ -256,7 +256,7 @@ gnuplot.ps: gnuplot.dvi
+@@ -260,7 +260,7 @@ gnuplot.ps: gnuplot.dvi
  hlp: gnuplot.hlp
  
  gnuplot.hlp: doc2hlp$(EXEEXT) $(srcdir)/gnuplot.doc
@@ -46,7 +52,7 @@ index 3baf0c4..e82f87d 100644
  
  doc2hlp_SOURCES = doc2hlp.c termdoc.c
  
-@@ -264,14 +264,14 @@ doc2hlp_SOURCES = doc2hlp.c termdoc.c
+@@ -268,14 +268,14 @@ doc2hlp_SOURCES = doc2hlp.c termdoc.c
  gih: gnuplot.gih
  
  gnuplot.gih: doc2gih$(EXEEXT) $(srcdir)/gnuplot.doc
@@ -63,16 +69,16 @@ index 3baf0c4..e82f87d 100644
  
  alldoc2gih_SOURCES = doc2gih.c termdoc.c
  alldoc2gih_CPPFLAGS = -DALL_TERM_DOC $(AM_CPPFLAGS)
-@@ -286,7 +286,7 @@ $(srcdir)/windows/wgnuplot.hhk
+@@ -290,7 +290,7 @@ $(srcdir)/windows/wgnuplot.hhk
  wxhelp/wgnuplot.hhc wxhelp/wgnuplot.hhk wxhelp/*.html windows/*.png
  
  wxhelp/wgnuplot.html: doc2wxhtml$(EXEEXT) $(srcdir)/gnuplot.doc 
 -	$(AM_V_GEN) ./doc2wxhtml$(EXEEXT) $(srcdir)/gnuplot.doc wxhelp/
 +	$(AM_V_GEN) doc2wxhtml$(EXEEXT) $(srcdir)/gnuplot.doc wxhelp/
  
- #doc2wxhtml_SOURCES = windows/doc2html.c termdoc.c xref.c allterm.h
- #doc2wxhtml_CPPFLAGS = -DALL_TERM_DOC -DWXHELP -I../src $(AM_CPPFLAGS)
-@@ -336,7 +336,7 @@ install-info: gnuplot.info
+ doc2wxhtml_SOURCES = windows/doc2html.c termdoc.c xref.c allterm.h
+ doc2wxhtml_CPPFLAGS = -DALL_TERM_DOC -DWXHELP -I../src $(AM_CPPFLAGS)
+@@ -340,7 +340,7 @@ install-info: gnuplot.info
  ipf: gnuplot.ipf
  
  gnuplot.ipf: doc2ipf$(EXEEXT) $(srcdir)/gnuplot.doc
@@ -81,7 +87,7 @@ index 3baf0c4..e82f87d 100644
  
  doc2ipf_SOURCES = doc2ipf.c termdoc.c xref.c
  
-@@ -344,7 +344,7 @@ doc2ipf_SOURCES = doc2ipf.c termdoc.c xref.c
+@@ -348,7 +348,7 @@ doc2ipf_SOURCES = doc2ipf.c termdoc.c xref.c
  rtf: gnuplot.rtf
  
  gnuplot.rtf: doc2rtf$(EXEEXT) $(srcdir)/gnuplot.doc
@@ -90,7 +96,7 @@ index 3baf0c4..e82f87d 100644
  
  doc2rtf_SOURCES = doc2rtf.c termdoc.c xref.c
  
-@@ -352,13 +352,13 @@ doc2rtf_SOURCES = doc2rtf.c termdoc.c xref.c
+@@ -356,13 +356,13 @@ doc2rtf_SOURCES = doc2rtf.c termdoc.c xref.c
  rnh: gnuplot.rnh
  
  gnuplot.rnh: doc2rnh$(EXEEXT) $(srcdir)/gnuplot.doc
diff --git a/meta-oe/recipes-extended/gnuplot/gnuplot_5.2.8.bb b/meta-oe/recipes-extended/gnuplot/gnuplot_5.4.1.bb
similarity index 84%
rename from meta-oe/recipes-extended/gnuplot/gnuplot_5.2.8.bb
rename to meta-oe/recipes-extended/gnuplot/gnuplot_5.4.1.bb
index b2c41756e..3d75f0604 100644
--- a/meta-oe/recipes-extended/gnuplot/gnuplot_5.2.8.bb
+++ b/meta-oe/recipes-extended/gnuplot/gnuplot_5.4.1.bb
@@ -11,7 +11,8 @@ inherit autotools features_check
 # depends on virtual/libx11
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI = "${SOURCEFORGE_MIRROR}/gnuplot/${BP}.tar.gz;name=archive \
+SRC_URI = " \
+    ${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/${PV}/${BP}.tar.gz;name=archive \
     http://www.mneuroth.de/privat/zaurus/qtplot-0.2.tar.gz;name=qtplot \
     file://gnuplot.desktop \
     file://gnuplot.png \
@@ -22,9 +23,7 @@ SRC_URI_append_class-target = " \
     file://0004-Add-configure-option-to-find-qt5-native-tools.patch \
 "
 
-SRC_URI[archive.md5sum] = "2df8767c7399bee57a96296d46b4d5fb"
-SRC_URI[archive.sha256sum] = "60a6764ccf404a1668c140f11cc1f699290ab70daa1151bb58fed6139a28ac37"
-SRC_URI[qtplot.md5sum] = "0a481885a496092c77eb4017540b5cf6"
+SRC_URI[archive.sha256sum] = "6b690485567eaeb938c26936e5e0681cf70c856d273cc2c45fabf64d8bc6590e"
 SRC_URI[qtplot.sha256sum] = "6df317183ff62cc82f3dcf88207a267cd6478cb5147f55d7530c94f1ad5f4132"
 
 # for building docs (they deserve it) we need *doc2* tools native
@@ -45,9 +44,10 @@ PACKAGECONFIG[cairo] = "--with-cairo,--without-cairo,cairo pango"
 PACKAGECONFIG[lua] = "--with-lua,--without-lua,lua"
 PACKAGECONFIG[qt5] = "--with-qt --with-qt5nativesysroot=${STAGING_DIR_NATIVE},--without-qt,qtbase-native qtbase qtsvg qttools-native"
 
-EXTRA_OECONF = "--with-readline=${STAGING_LIBDIR}/.. \
-                --without-tutorial \
-                --disable-wxwidgets"
+EXTRA_OECONF = " \
+    --with-readline=${STAGING_LIBDIR}/.. \
+    -disable-wxwidgets \
+"
 
 do_compile_prepend() {
     install -m 0644 ${WORKDIR}/qtplot-0.2/qtopia.trm ${S}/term/
-- 
2.31.1


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

* [PATCH 03/17] zsh: upgrade 5.4.2 -> 5.8
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
  2021-05-22  1:35 ` [PATCH 02/17] gnuplot: upgrade 5.2.8 -> 5.4.1 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 04/17] ttf-lohit: upgrade 2 -> 2.92.1 Andreas Müller
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

* without autotools-brokensep install fails for several isssues. Started to fix
  them but stooped after third
* remove some odd/orphaned code in recipe

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../zsh/{zsh_5.4.2.bb => zsh_5.8.bb}           | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)
 rename meta-oe/recipes-shells/zsh/{zsh_5.4.2.bb => zsh_5.8.bb} (75%)

diff --git a/meta-oe/recipes-shells/zsh/zsh_5.4.2.bb b/meta-oe/recipes-shells/zsh/zsh_5.8.bb
similarity index 75%
rename from meta-oe/recipes-shells/zsh/zsh_5.4.2.bb
rename to meta-oe/recipes-shells/zsh/zsh_5.8.bb
index aa372b70a..6fc5f4d99 100644
--- a/meta-oe/recipes-shells/zsh/zsh_5.4.2.bb
+++ b/meta-oe/recipes-shells/zsh/zsh_5.8.bb
@@ -10,11 +10,10 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=1a4c4cda3e8096d2fd483ff2f4514fec"
 
 DEPENDS = "ncurses bison-native libcap libpcre gdbm groff-native"
 
-SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.gz"
-SRC_URI[md5sum] = "dfe156fd69b0d8d1745ecf6d6e02e047"
-SRC_URI[sha256sum] = "957bcdb2c57f64c02f673693ea5a7518ef24b6557aeb3a4ce222cefa6d74acc9"
+SRC_URI = "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/5.8/${BP}.tar.xz"
+SRC_URI[sha256sum] = "dcc4b54cc5565670a65581760261c163d720991f0d06486da61f8d839b52de27"
 
-inherit autotools gettext update-alternatives
+inherit autotools-brokensep gettext update-alternatives manpages
 
 EXTRA_OECONF = " \
     --bindir=${base_bindir} \
@@ -47,19 +46,8 @@ do_configure () {
     oe_runconf
 }
 
-do_install_append () {
-    rm -fr ${D}/usr/share
-    rmdir --ignore-fail-on-non-empty ${D}/usr
-}
-
 pkg_postinst_${PN} () {
     touch $D${sysconfdir}/shells
     grep -q "bin/zsh" $D${sysconfdir}/shells || echo /bin/zsh >> $D${sysconfdir}/shells
     grep -q "bin/sh" $D${sysconfdir}/shells || echo /bin/sh >> $D${sysconfdir}/shells
 }
-
-FILES_${PN}-dbg += "\
-    ${libdir}/${PN}/${PV}/${PN}/.debug/*.so \
-    ${libdir}/${PN}/${PV}/${PN}/db/.debug/*.so \
-    ${libdir}/${PN}/${PV}/${PN}/net/.debug/*.so \
-"
-- 
2.31.1


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

* [PATCH 04/17] ttf-lohit: upgrade 2 -> 2.92.1
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
  2021-05-22  1:35 ` [PATCH 02/17] gnuplot: upgrade 5.2.8 -> 5.4.1 Andreas Müller
  2021-05-22  1:35 ` [PATCH 03/17] zsh: upgrade 5.4.2 -> 5.8 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 05/17] xrdp: upgrade 0.9.15 -> 0.9.16 Andreas Müller
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../ttf-fonts/{ttf-lohit_2.bb => ttf-lohit_2.92.1.bb}           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-graphics/ttf-fonts/{ttf-lohit_2.bb => ttf-lohit_2.92.1.bb} (91%)

diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-lohit_2.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-lohit_2.92.1.bb
similarity index 91%
rename from meta-oe/recipes-graphics/ttf-fonts/ttf-lohit_2.bb
rename to meta-oe/recipes-graphics/ttf-fonts/ttf-lohit_2.92.1.bb
index 0af0e91d6..c9cb74c9f 100644
--- a/meta-oe/recipes-graphics/ttf-fonts/ttf-lohit_2.bb
+++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-lohit_2.92.1.bb
@@ -7,7 +7,7 @@ HOMEPAGE = "https://fedorahosted.org/lohit"
 LICENSE = "OFL-1.1"
 LIC_FILES_CHKSUM = "file://OFL.txt;md5=7dfa0a236dc535ad2d2548e6170c4402"
 
-SRCREV = "d678f1b1807ea5602586279e90b5db6d62ed475e"
+SRCREV = "a403c9b7f509dad5e58dde85ef63b1c36fde3a21"
 SRC_URI = "git://github.com/pravins/lohit.git;branch=master"
 
 DEPENDS = "fontforge-native"
-- 
2.31.1


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

* [PATCH 05/17] xrdp: upgrade 0.9.15 -> 0.9.16
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (2 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 04/17] ttf-lohit: upgrade 2 -> 2.92.1 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 06/17] snappy: upgrade 1.1.8 -> 1.1.9 Andreas Müller
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../0001-arch-Define-NO_NEED_ALIGN-on-ppc64.patch     | 11 ++++++++---
 .../xrdp/{xrdp_0.9.15.bb => xrdp_0.9.16.bb}           |  2 +-
 2 files changed, 9 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-support/xrdp/{xrdp_0.9.15.bb => xrdp_0.9.16.bb} (98%)

diff --git a/meta-oe/recipes-support/xrdp/xrdp/0001-arch-Define-NO_NEED_ALIGN-on-ppc64.patch b/meta-oe/recipes-support/xrdp/xrdp/0001-arch-Define-NO_NEED_ALIGN-on-ppc64.patch
index c06aa7b6c..ea3eb11f0 100644
--- a/meta-oe/recipes-support/xrdp/xrdp/0001-arch-Define-NO_NEED_ALIGN-on-ppc64.patch
+++ b/meta-oe/recipes-support/xrdp/xrdp/0001-arch-Define-NO_NEED_ALIGN-on-ppc64.patch
@@ -9,14 +9,19 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
  common/arch.h | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
+diff --git a/common/arch.h b/common/arch.h
+index 617feb5e..6edb39db 100644
 --- a/common/arch.h
 +++ b/common/arch.h
-@@ -84,7 +84,7 @@ typedef int bool_t;
+@@ -85,7 +85,7 @@ typedef int bool_t;
  #define NEED_ALIGN
  #elif defined(__x86__) || defined(__x86_64__) || \
        defined(__AMD64__) || defined(_M_IX86) || defined (_M_AMD64) || \
 -      defined(__i386__) || defined(__aarch64__) || \
 +      defined(__i386__) || defined(__aarch64__) || defined(__powerpc64__) || \
+       defined(__PPC__) || defined(__LITTLE_ENDIAN__) || \
+       defined(__s390__) || defined (__s390x__) || \
        defined(__riscv)
- #define NO_NEED_ALIGN
- #else
+-- 
+2.31.1
+
diff --git a/meta-oe/recipes-support/xrdp/xrdp_0.9.15.bb b/meta-oe/recipes-support/xrdp/xrdp_0.9.16.bb
similarity index 98%
rename from meta-oe/recipes-support/xrdp/xrdp_0.9.15.bb
rename to meta-oe/recipes-support/xrdp/xrdp_0.9.16.bb
index 039ba1a76..d7a371b08 100644
--- a/meta-oe/recipes-support/xrdp/xrdp_0.9.15.bb
+++ b/meta-oe/recipes-support/xrdp/xrdp_0.9.16.bb
@@ -16,7 +16,7 @@ SRC_URI = "git://github.com/neutrinolabs/xrdp.git;branch=devel \
            file://0001-Fix-the-compile-error.patch \
            file://0001-arch-Define-NO_NEED_ALIGN-on-ppc64.patch \
            "
-SRCREV = "f24b7b7988140b18202908654db3289659303772"
+SRCREV = "a4c7ee077c049202d73f82f518b2de958d722890"
 
 S = "${WORKDIR}/git"
 
-- 
2.31.1


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

* [PATCH 06/17] snappy: upgrade 1.1.8 -> 1.1.9
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (3 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 05/17] xrdp: upgrade 0.9.15 -> 0.9.16 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 07/17] redis: upgrade 6.2.2 -> 6.2.3 Andreas Müller
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Get sources from github repo

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../snappy/{snappy_1.1.8.bb => snappy_1.1.9.bb}             | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-extended/snappy/{snappy_1.1.8.bb => snappy_1.1.9.bb} (63%)

diff --git a/meta-oe/recipes-extended/snappy/snappy_1.1.8.bb b/meta-oe/recipes-extended/snappy/snappy_1.1.9.bb
similarity index 63%
rename from meta-oe/recipes-extended/snappy/snappy_1.1.8.bb
rename to meta-oe/recipes-extended/snappy/snappy_1.1.9.bb
index d6d1e4110..2ebe3760a 100644
--- a/meta-oe/recipes-extended/snappy/snappy_1.1.8.bb
+++ b/meta-oe/recipes-extended/snappy/snappy_1.1.9.bb
@@ -10,10 +10,10 @@ compression ratio."
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=f62f3080324a97b3159a7a7e61812d0c"
 
-SRC_URI = "https://src.fedoraproject.org/repo/pkgs/snappy/snappy-1.1.8.tar.gz/sha512/efe18ff1b3edda1b4b6cefcbc6da8119c05d63afdbf7a784f3490353c74dced76baed7b5f1aa34b99899729192b9d657c33c76de4b507a51553fa8001ae75c1c/snappy-1.1.8.tar.gz"
+SRC_URI = "gitsm://github.com/google/snappy.git;protocol=https"
+SRCREV = "2b63814b15a2aaae54b7943f0cd935892fae628f"
+S = "${WORKDIR}/git"
 
-SRC_URI[md5sum] = "70e48cba7fecf289153d009791c9977f"
-SRC_URI[sha256sum] = "16b677f07832a612b0836178db7f374e414f94657c138e6993cbfc5dcc58651f"
 
 inherit cmake pkgconfig
 
-- 
2.31.1


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

* [PATCH 07/17] redis: upgrade 6.2.2 -> 6.2.3
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (4 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 06/17] snappy: upgrade 1.1.8 -> 1.1.9 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 08/17] remmina: upgrade 1.4.11 -> 1.4.17 Andreas Müller
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../redis/redis/0001-src-Do-not-reset-FINAL_LIBS.patch | 10 ++++------
 .../redis/{redis_6.2.2.bb => redis_6.2.3.bb}           |  2 +-
 2 files changed, 5 insertions(+), 7 deletions(-)
 rename meta-oe/recipes-extended/redis/{redis_6.2.2.bb => redis_6.2.3.bb} (96%)

diff --git a/meta-oe/recipes-extended/redis/redis/0001-src-Do-not-reset-FINAL_LIBS.patch b/meta-oe/recipes-extended/redis/redis/0001-src-Do-not-reset-FINAL_LIBS.patch
index b5c4133e3..66ab0ee33 100644
--- a/meta-oe/recipes-extended/redis/redis/0001-src-Do-not-reset-FINAL_LIBS.patch
+++ b/meta-oe/recipes-extended/redis/redis/0001-src-Do-not-reset-FINAL_LIBS.patch
@@ -10,15 +10,16 @@ e.g. -latomic is needed on clang/x86 to provide for 64bit atomics
 
 Upstream-Status: Pending
 Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
 ---
  src/Makefile | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/src/Makefile b/src/Makefile
-index 7f7c625..c71dd3b 100644
+index 5564351..83ccd76 100644
 --- a/src/Makefile
 +++ b/src/Makefile
-@@ -75,7 +75,7 @@ endif
+@@ -91,7 +91,7 @@ endif
  
  FINAL_CFLAGS=$(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS)
  FINAL_LDFLAGS=$(LDFLAGS) $(REDIS_LDFLAGS) $(DEBUG)
@@ -26,7 +27,4 @@ index 7f7c625..c71dd3b 100644
 +FINAL_LIBS+=-lm
  DEBUG=-g -ggdb
  
- # Linux ARM needs -latomic at linking time
--- 
-2.23.0
-
+ # Linux ARM32 needs -latomic at linking time
diff --git a/meta-oe/recipes-extended/redis/redis_6.2.2.bb b/meta-oe/recipes-extended/redis/redis_6.2.3.bb
similarity index 96%
rename from meta-oe/recipes-extended/redis/redis_6.2.2.bb
rename to meta-oe/recipes-extended/redis/redis_6.2.3.bb
index 65b525709..67ac974de 100644
--- a/meta-oe/recipes-extended/redis/redis_6.2.2.bb
+++ b/meta-oe/recipes-extended/redis/redis_6.2.3.bb
@@ -17,7 +17,7 @@ SRC_URI = "http://download.redis.io/releases/${BP}.tar.gz \
            file://GNU_SOURCE.patch \
            file://0006-Define-correct-gregs-for-RISCV32.patch \
            "
-SRC_URI[sha256sum] = "7a260bb74860f1b88c3d5942bf8ba60ca59f121c6dce42d3017bed6add0b9535"
+SRC_URI[sha256sum] = "98ed7d532b5e9671f5df0825bb71f0f37483a16546364049384c63db8764512b"
 
 inherit autotools-brokensep update-rc.d systemd useradd
 
-- 
2.31.1


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

* [PATCH 08/17] remmina: upgrade 1.4.11 -> 1.4.17
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (5 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 07/17] redis: upgrade 6.2.2 -> 6.2.3 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 09/17] libpeas: upgrade 1.26.0 -> 1.30.0 Andreas Müller
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

* 1.4.11 fails to fetch
* do_install_append can go the only path left is metainfo and mime

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{remmina_1.4.11.bb => remmina_1.4.17.bb}  | 40 +++++++++++--------
 1 file changed, 24 insertions(+), 16 deletions(-)
 rename meta-oe/recipes-support/remmina/{remmina_1.4.11.bb => remmina_1.4.17.bb} (56%)

diff --git a/meta-oe/recipes-support/remmina/remmina_1.4.11.bb b/meta-oe/recipes-support/remmina/remmina_1.4.17.bb
similarity index 56%
rename from meta-oe/recipes-support/remmina/remmina_1.4.11.bb
rename to meta-oe/recipes-support/remmina/remmina_1.4.17.bb
index 38fcf45c4..ef7876786 100644
--- a/meta-oe/recipes-support/remmina/remmina_1.4.11.bb
+++ b/meta-oe/recipes-support/remmina/remmina_1.4.17.bb
@@ -3,36 +3,44 @@ HOMEPAGE = "https://remmina.org"
 SECTION = "Support"
 LICENSE = "GPLv2 & openssl"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=dab7215512044d49037272ce1ac4ea8f file://LICENSE.OpenSSL;md5=c1eb3cee0a4dea27503c531267a69769"
-DEPENDS += "openssl freerdp gtk+3 gdk-pixbuf atk libgcrypt libsodium libssh vte json-glib libsoup-2.4 libvncserver libsecret libxkbfile"
 
+DEPENDS = " \
+    glib-2.0-native \
+    openssl \
+    freerdp \
+    gtk+3 \
+    gdk-pixbuf \
+    atk \
+    libgcrypt \
+    libsodium \
+    libssh \
+    vte \
+    json-glib \
+    libsoup-2.4 \
+    libvncserver \
+    libsecret \
+    libxkbfile \
+"
 
 DEPENDS_append_libc-musl = " libexecinfo"
 LDFLAGS_append_libc-musl = " -lexecinfo"
 
-SRCREV = "6a8737111adebf571c46f35599cc62e7f7b0bd65"
-SRC_URI = "git://gitlab.com/Remmina/Remmina;protocol=https;branch=rel/v1.4.11 \
-"
-
-PV .= "+git${SRCPV}"
-
+SRCREV = "0ef1621b3e16b3168213147a2bfca39da2c2668f"
+SRC_URI = "git://gitlab.com/Remmina/Remmina;protocol=https"
 S = "${WORKDIR}/git"
 
-inherit cmake features_check mime-xdg
+inherit cmake features_check mime mime-xdg gtk-icon-cache
 REQUIRED_DISTRO_FEATURES = "x11"
 
 EXTRA_OECMAKE += "-DWITH_APPINDICATOR=OFF -DWITH_GETTEXT=OFF -DWITH_TRANSLATIONS=OFF"
 
-do_install_append(){
-    # We dont need the extra stuff form other desktop environments
-    rm -rf ${D}/${datadir}/xsessions
-    rm -rf ${D}/${datadir}/metainfo
-    rm -rf ${D}/${datadir}/gnome-session
-}
-
 PACKAGECONFIG[spice] = "-DWITH_SPICE=ON, -DWITH_SPICE=OFF, spice spice-protocol"
 # Switch on gtk support in avahi recipe if you want to enable avahi support
 PACKAGECONFIG[avahi] = "-DWITH_AVAHI=ON, -DWITH_AVAHI=OFF, avahi"
 
 RDEPENDS_${PN} = "bash"
 
-FILES_${PN}_append = " ${datadir}/icons/hicolor/*"
+FILES_${PN}+= " \
+    ${datadir}/metainfo \
+    ${datadir}/mime \
+"
-- 
2.31.1


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

* [PATCH 09/17] libpeas: upgrade 1.26.0 -> 1.30.0
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (6 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 08/17] remmina: upgrade 1.4.11 -> 1.4.17 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 10/17] modemmanager: upgrade 1.16.2 -> 1.16.4 Andreas Müller
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

(Identical) patches have been applied upstream

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...ts-when-introspection-is-disabled-mi.patch | 36 -------------------
 .../libpeas/add_missing_locale_include.patch  | 21 -----------
 .../{libpeas_1.26.0.bb => libpeas_1.30.0.bb}  |  8 +----
 3 files changed, 1 insertion(+), 64 deletions(-)
 delete mode 100644 meta-oe/recipes-gnome/libpeas/libpeas/0001-Do-not-build-tests-when-introspection-is-disabled-mi.patch
 delete mode 100644 meta-oe/recipes-gnome/libpeas/libpeas/add_missing_locale_include.patch
 rename meta-oe/recipes-gnome/libpeas/{libpeas_1.26.0.bb => libpeas_1.30.0.bb} (70%)

diff --git a/meta-oe/recipes-gnome/libpeas/libpeas/0001-Do-not-build-tests-when-introspection-is-disabled-mi.patch b/meta-oe/recipes-gnome/libpeas/libpeas/0001-Do-not-build-tests-when-introspection-is-disabled-mi.patch
deleted file mode 100644
index 86586fe71..000000000
--- a/meta-oe/recipes-gnome/libpeas/libpeas/0001-Do-not-build-tests-when-introspection-is-disabled-mi.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 53a4f19887d9ae4e77f32dd6d71c8a7b516b4d5d Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
-Date: Mon, 10 Aug 2020 21:53:33 +0200
-Subject: [PATCH] Do not build tests when introspection is disabled/missing
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Fixes:
-| ../libpeas-1.26.0/tests/libpeas/introspection/meson.build:47:0: ERROR: Unknown variable "libpeas_gir".
-
-Upstrem-Status: Submitted[https://gitlab.gnome.org/GNOME/libpeas/-/merge_requests/28]
-
-Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
----
- meson.build | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/meson.build b/meson.build
-index 8322fea..43fb062 100644
---- a/meson.build
-+++ b/meson.build
-@@ -254,7 +254,9 @@ subdir('loaders')
- if build_demos == true
-   subdir('peas-demo')
- endif
--subdir('tests')
-+if generate_gir == true
-+  subdir('tests')
-+endif
- 
- summary = [
-   '',
--- 
-2.26.2
-
diff --git a/meta-oe/recipes-gnome/libpeas/libpeas/add_missing_locale_include.patch b/meta-oe/recipes-gnome/libpeas/libpeas/add_missing_locale_include.patch
deleted file mode 100644
index 664693128..000000000
--- a/meta-oe/recipes-gnome/libpeas/libpeas/add_missing_locale_include.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From 3cc69f1eaa86163c3816265fa64cb660f4def364 Mon Sep 17 00:00:00 2001
-From: Christian Hergert <chergert@redhat.com>
-Date: Fri, 13 Mar 2020 10:32:21 -0700
-Subject: [PATCH] demo: add missing locale.h include
-
-Fixes #39
-
-Upstream-Status: backport
-
-diff --git a/peas-demo/peas-demo.c b/peas-demo/peas-demo.c
-index 47ac005..466a392 100644
---- a/peas-demo/peas-demo.c
-+++ b/peas-demo/peas-demo.c
-@@ -26,6 +26,7 @@
- #include <girepository.h>
- #include <glib/gi18n.h>
- #include <gtk/gtk.h>
-+#include <locale.h>
- 
- #include <libpeas/peas.h>
- #include <libpeas-gtk/peas-gtk.h>
diff --git a/meta-oe/recipes-gnome/libpeas/libpeas_1.26.0.bb b/meta-oe/recipes-gnome/libpeas/libpeas_1.30.0.bb
similarity index 70%
rename from meta-oe/recipes-gnome/libpeas/libpeas_1.26.0.bb
rename to meta-oe/recipes-gnome/libpeas/libpeas_1.30.0.bb
index fd4ce7de5..316a92784 100644
--- a/meta-oe/recipes-gnome/libpeas/libpeas_1.26.0.bb
+++ b/meta-oe/recipes-gnome/libpeas/libpeas_1.30.0.bb
@@ -12,13 +12,7 @@ inherit gnomebase gobject-introspection gtk-doc gtk-icon-cache features_check
 
 ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
 
-SRC_URI += " \
-    file://add_missing_locale_include.patch \
-    file://0001-Do-not-build-tests-when-introspection-is-disabled-mi.patch \
-"
-
-SRC_URI[archive.md5sum] = "f7723bf8433b7984121157e1e9a629b5"
-SRC_URI[archive.sha256sum] = "a976d77e20496479a8e955e6a38fb0e5c5de89cf64d9f44e75c2213ee14f7376"
+SRC_URI[archive.sha256sum] = "0bf5562e9bfc0382a9dcb81f64340787542568762a3a367d9d90f6185898b9a3"
 
 PACKAGECONFIG[python3] = "-Dpython3=true,-Dpython3=false,python3-pygobject"
 
-- 
2.31.1


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

* [PATCH 10/17] modemmanager: upgrade 1.16.2 -> 1.16.4
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (7 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 09/17] libpeas: upgrade 1.26.0 -> 1.30.0 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 11/17] mm-common: upgrade 1.0.2 -> 1.0.3 Andreas Müller
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{modemmanager_1.16.2.bb => modemmanager_1.16.4.bb}          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-connectivity/modemmanager/{modemmanager_1.16.2.bb => modemmanager_1.16.4.bb} (95%)

diff --git a/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.16.2.bb b/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.16.4.bb
similarity index 95%
rename from meta-oe/recipes-connectivity/modemmanager/modemmanager_1.16.2.bb
rename to meta-oe/recipes-connectivity/modemmanager/modemmanager_1.16.4.bb
index d1ba8e43e..f8e8aa1d4 100644
--- a/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.16.2.bb
+++ b/meta-oe/recipes-connectivity/modemmanager/modemmanager_1.16.4.bb
@@ -12,7 +12,7 @@ inherit gnomebase gettext systemd vala gobject-introspection bash-completion
 DEPENDS = "glib-2.0 libgudev intltool-native libxslt-native"
 
 SRC_URI = "http://www.freedesktop.org/software/ModemManager/ModemManager-${PV}.tar.xz"
-SRC_URI[sha256sum] = "efa9a963499e0885f3f163096d433334143c4937545134ecd682e0157fa591e3"
+SRC_URI[sha256sum] = "167e60b26fa05887f87a0b3fb54143d7845e6e4d8c2f2dd93afac059f41e7edf"
 S = "${WORKDIR}/ModemManager-${PV}"
 
 PACKAGECONFIG ??= "mbim qmi \
-- 
2.31.1


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

* [PATCH 11/17] mm-common: upgrade 1.0.2 -> 1.0.3
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (8 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 10/17] modemmanager: upgrade 1.16.2 -> 1.16.4 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 12/17] protobuf: upgrade 3.15.2 -> 3.17.0 Andreas Müller
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../mm-common/{mm-common_1.0.2.bb => mm-common_1.0.3.bb}       | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-oe/recipes-core/mm-common/{mm-common_1.0.2.bb => mm-common_1.0.3.bb} (66%)

diff --git a/meta-oe/recipes-core/mm-common/mm-common_1.0.2.bb b/meta-oe/recipes-core/mm-common/mm-common_1.0.3.bb
similarity index 66%
rename from meta-oe/recipes-core/mm-common/mm-common_1.0.2.bb
rename to meta-oe/recipes-core/mm-common/mm-common_1.0.3.bb
index 207d9394e..ae2bf2d02 100644
--- a/meta-oe/recipes-core/mm-common/mm-common_1.0.2.bb
+++ b/meta-oe/recipes-core/mm-common/mm-common_1.0.3.bb
@@ -6,8 +6,7 @@ GNOMEBASEBUILDCLASS = "meson"
 
 inherit gnomebase
 
-SRC_URI[archive.md5sum] = "440133a2676275ae26770b3651f89827"
-SRC_URI[archive.sha256sum] = "a2a99f3fa943cf662f189163ed39a2cfc19a428d906dd4f92b387d3659d1641d"
+SRC_URI[archive.sha256sum] = "e81596625899aacf1d0bf27ccc2fcc7f373405ec48735ca1c7273c0fbcdc1ef5"
 SRC_URI += "file://0001-meson.build-do-not-ask-for-python-installation-versi.patch"
 
 BBCLASSEXTEND = "native"
-- 
2.31.1


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

* [PATCH 12/17] protobuf: upgrade 3.15.2 -> 3.17.0
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (9 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 11/17] mm-common: upgrade 1.0.2 -> 1.0.3 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 13/17] protobuf-c: upgrade 1.3.3 -> 1.4.0 Andreas Müller
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../protobuf/{protobuf_3.15.2.bb => protobuf_3.17.0.bb}         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-devtools/protobuf/{protobuf_3.15.2.bb => protobuf_3.17.0.bb} (98%)

diff --git a/meta-oe/recipes-devtools/protobuf/protobuf_3.15.2.bb b/meta-oe/recipes-devtools/protobuf/protobuf_3.17.0.bb
similarity index 98%
rename from meta-oe/recipes-devtools/protobuf/protobuf_3.15.2.bb
rename to meta-oe/recipes-devtools/protobuf/protobuf_3.17.0.bb
index 0392f9339..81af2d50f 100644
--- a/meta-oe/recipes-devtools/protobuf/protobuf_3.15.2.bb
+++ b/meta-oe/recipes-devtools/protobuf/protobuf_3.17.0.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=37b5762e07f0af8c74ce80a8bda4266b"
 DEPENDS = "zlib"
 DEPENDS_append_class-target = " protobuf-native"
 
-SRCREV = "d7e943b8d2bc444a8c770644e73d090b486f8b37"
+SRCREV = "652d99a8ee8aa6b801e11977951fbf444cfccc8f"
 
 SRC_URI = "git://github.com/protocolbuffers/protobuf.git \
            file://run-ptest \
-- 
2.31.1


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

* [PATCH 13/17] protobuf-c: upgrade 1.3.3 -> 1.4.0
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (10 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 12/17] protobuf: upgrade 3.15.2 -> 3.17.0 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22 12:44   ` [oe] " Khem Raj
  2021-05-22  1:35 ` [PATCH 14/17] qpdf: upgrade 10.2.0 -> 10.3.2 Andreas Müller
                   ` (4 subsequent siblings)
  16 siblings, 1 reply; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../protobuf-c/0001-avoid-race-condition.patch         | 10 +++++-----
 .../{protobuf-c_1.3.3.bb => protobuf-c_1.4.0.bb}       |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)
 rename meta-oe/recipes-devtools/protobuf/{protobuf-c_1.3.3.bb => protobuf-c_1.4.0.bb} (96%)

diff --git a/meta-oe/recipes-devtools/protobuf/protobuf-c/0001-avoid-race-condition.patch b/meta-oe/recipes-devtools/protobuf/protobuf-c/0001-avoid-race-condition.patch
index 4fc7703d8..17fa14092 100644
--- a/meta-oe/recipes-devtools/protobuf/protobuf-c/0001-avoid-race-condition.patch
+++ b/meta-oe/recipes-devtools/protobuf/protobuf-c/0001-avoid-race-condition.patch
@@ -20,17 +20,17 @@ Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
  1 file changed, 1 insertion(+)
 
 diff --git a/Makefile.am b/Makefile.am
-index b0cb065..1608ae0 100644
+index c7339ef..882756d 100644
 --- a/Makefile.am
 +++ b/Makefile.am
-@@ -156,6 +156,7 @@ noinst_PROGRAMS += \
- t_generated_code2_cxx_generate_packed_data_SOURCES = \
+@@ -166,6 +166,7 @@ t_generated_code2_cxx_generate_packed_data_SOURCES = \
  	t/generated-code2/cxx-generate-packed-data.cc \
- 	t/test-full.pb.cc
+ 	t/test-full.pb.cc \
+ 	protobuf-c/protobuf-c.pb.cc
 +t/generated-code2/cxx-generate-packed-data.cc: t/test-full.pb.h
  $(t_generated_code2_cxx_generate_packed_data_OBJECTS): t/test-full.pb.h
  t_generated_code2_cxx_generate_packed_data_CXXFLAGS = \
  	$(AM_CXXFLAGS) \
 -- 
-2.17.1
+2.31.1
 
diff --git a/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb b/meta-oe/recipes-devtools/protobuf/protobuf-c_1.4.0.bb
similarity index 96%
rename from meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb
rename to meta-oe/recipes-devtools/protobuf/protobuf-c_1.4.0.bb
index 6fef0bed2..85172047a 100644
--- a/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb
+++ b/meta-oe/recipes-devtools/protobuf/protobuf-c_1.4.0.bb
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=cb901168715f4782a2b06c3ddaefa558"
 
 DEPENDS = "protobuf-native protobuf"
 
-SRCREV = "f20a3fa131c275a0e795d99a28f94b4dbbb5af26"
+SRCREV = "f224ab2eeb648a818eb20687d7150a285442c907"
 
 SRC_URI = "git://github.com/protobuf-c/protobuf-c.git \
            file://0001-avoid-race-condition.patch \
-- 
2.31.1


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

* [PATCH 14/17] qpdf: upgrade 10.2.0 -> 10.3.2
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (11 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 13/17] protobuf-c: upgrade 1.3.3 -> 1.4.0 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 15/17] libmxml: upgrade 3.1 -> 3.2 Andreas Müller
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../recipes-printing/qpdf/{qpdf_10.2.0.bb => qpdf_10.3.2.bb}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-oe/recipes-printing/qpdf/{qpdf_10.2.0.bb => qpdf_10.3.2.bb} (86%)

diff --git a/meta-oe/recipes-printing/qpdf/qpdf_10.2.0.bb b/meta-oe/recipes-printing/qpdf/qpdf_10.3.2.bb
similarity index 86%
rename from meta-oe/recipes-printing/qpdf/qpdf_10.2.0.bb
rename to meta-oe/recipes-printing/qpdf/qpdf_10.3.2.bb
index 4f21575c3..53ebf7b6a 100644
--- a/meta-oe/recipes-printing/qpdf/qpdf_10.2.0.bb
+++ b/meta-oe/recipes-printing/qpdf/qpdf_10.3.2.bb
@@ -7,8 +7,7 @@ DEPENDS = "libpcre zlib libjpeg-turbo"
 SRC_URI = "${SOURCEFORGE_MIRROR}/qpdf/qpdf-${PV}.tar.gz"
 
 LIC_FILES_CHKSUM = "file://Artistic-2.0;md5=7806296b9fae874361e6fb10072b7ee3"
-SRC_URI[md5sum] = "c8f4430823603ee3b430b3250015ede5"
-SRC_URI[sha256sum] = "43ef260f4e70672660e1882856d59b9319301c6f170673ab465430a71cffe44c"
+SRC_URI[sha256sum] = "062808c40ef8741ec8160ae00168638a712cfa1d4bf673e8e595ab5eba1da947"
 
 inherit autotools-brokensep gettext
 
-- 
2.31.1


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

* [PATCH 15/17] libmxml: upgrade 3.1 -> 3.2
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (12 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 14/17] qpdf: upgrade 10.2.0 -> 10.3.2 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  1:35 ` [PATCH 16/17] libeigen: upgrade 3.3.7 -> 3.3.7 Andreas Müller
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../libmxml/{libmxml_3.1.bb => libmxml_3.2.bb}                | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-support/libmxml/{libmxml_3.1.bb => libmxml_3.2.bb} (89%)

diff --git a/meta-oe/recipes-support/libmxml/libmxml_3.1.bb b/meta-oe/recipes-support/libmxml/libmxml_3.2.bb
similarity index 89%
rename from meta-oe/recipes-support/libmxml/libmxml_3.1.bb
rename to meta-oe/recipes-support/libmxml/libmxml_3.2.bb
index 4e77d6cc0..c0ed72d99 100644
--- a/meta-oe/recipes-support/libmxml/libmxml_3.1.bb
+++ b/meta-oe/recipes-support/libmxml/libmxml_3.2.bb
@@ -4,8 +4,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 HOMEPAGE = "https://www.msweet.org/mxml/"
 BUGTRACKER = "https://github.com/michaelrsweet/mxml/issues"
 
-SRC_URI = "git://github.com/michaelrsweet/mxml.git"
-SRCREV = "e483e5fd8a33386fd46967681521bdd2da2b548f"
+SRC_URI = "git://github.com/michaelrsweet/mxml.git;nobranch=1"
+SRCREV = "38b044ed8ca2a611ed9ed3e26c4b46416335194e"
 S = "${WORKDIR}/git"
 
 inherit autotools
-- 
2.31.1


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

* [PATCH 16/17] libeigen: upgrade 3.3.7 -> 3.3.7
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (13 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 15/17] libmxml: upgrade 3.1 -> 3.2 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  8:36   ` [oe] " Jose Quaresma
  2021-05-22  1:35 ` [PATCH 17/17] libgusb: upgrade 0.3.5 -> 0.3.6 Andreas Müller
  2021-05-22  2:59 ` [oe] [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Khem Raj
  16 siblings, 1 reply; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Simplify packaging a bit

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../libeigen/{libeigen_3.3.7.bb => libeigen_3.3.9.bb}        | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-support/libeigen/{libeigen_3.3.7.bb => libeigen_3.3.9.bb} (77%)

diff --git a/meta-oe/recipes-support/libeigen/libeigen_3.3.7.bb b/meta-oe/recipes-support/libeigen/libeigen_3.3.9.bb
similarity index 77%
rename from meta-oe/recipes-support/libeigen/libeigen_3.3.7.bb
rename to meta-oe/recipes-support/libeigen/libeigen_3.3.9.bb
index 6ce318d0b..d6ef98f94 100644
--- a/meta-oe/recipes-support/libeigen/libeigen_3.3.7.bb
+++ b/meta-oe/recipes-support/libeigen/libeigen_3.3.9.bb
@@ -6,14 +6,13 @@ LIC_FILES_CHKSUM = "file://COPYING.MPL2;md5=815ca599c9df247a0c7f619bab123dad"
 
 SRC_URI = "git://gitlab.com/libeigen/eigen.git;protocol=http;nobranch=1"
 
-SRCREV = "21ae2afd4edaa1b69782c67a54182d34efe43f9c"
+SRCREV = "0fd6b4f71dd85b2009ee4d1aeb296e2c11fc9d68"
 
 S = "${WORKDIR}/git"
 
 inherit cmake
 
-FILES_${PN} = "${libdir}"
-FILES_${PN}-dev = "${includedir} ${datadir}/eigen3/cmake ${datadir}/cmake/Modules ${datadir}/pkgconfig"
+FILES_${PN}-dev += "${datadir}/eigen3/cmake"
 
 # ${PN} is empty so we need to tweak -dev and -dbg package dependencies
 RDEPENDS_${PN}-dev = ""
-- 
2.31.1


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

* [PATCH 17/17] libgusb: upgrade 0.3.5 -> 0.3.6
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (14 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 16/17] libeigen: upgrade 3.3.7 -> 3.3.7 Andreas Müller
@ 2021-05-22  1:35 ` Andreas Müller
  2021-05-22  2:59 ` [oe] [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Khem Raj
  16 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  1:35 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../libgusb/{libgusb_0.3.5.bb => libgusb_0.3.6.bb}           | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-support/libgusb/{libgusb_0.3.5.bb => libgusb_0.3.6.bb} (68%)

diff --git a/meta-oe/recipes-support/libgusb/libgusb_0.3.5.bb b/meta-oe/recipes-support/libgusb/libgusb_0.3.6.bb
similarity index 68%
rename from meta-oe/recipes-support/libgusb/libgusb_0.3.5.bb
rename to meta-oe/recipes-support/libgusb/libgusb_0.3.6.bb
index c4b0ff372..2f74013ca 100644
--- a/meta-oe/recipes-support/libgusb/libgusb_0.3.5.bb
+++ b/meta-oe/recipes-support/libgusb/libgusb_0.3.6.bb
@@ -6,7 +6,6 @@ DEPENDS = "glib-2.0 libusb"
 
 inherit meson gobject-introspection gtk-doc gettext vala
 
-SRC_URI = "git://github.com/hughsie/libgusb.git \
-           "
-SRCREV = "1f712812327091c42c62b1ab1148d738d1a22b51"
+SRC_URI = "git://github.com/hughsie/libgusb.git"
+SRCREV = "b0464454048cac6779d4d51f12fe7f37ae4bbd57"
 S = "${WORKDIR}/git"
-- 
2.31.1


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

* Re: [oe] [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1
  2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
                   ` (15 preceding siblings ...)
  2021-05-22  1:35 ` [PATCH 17/17] libgusb: upgrade 0.3.5 -> 0.3.6 Andreas Müller
@ 2021-05-22  2:59 ` Khem Raj
  2021-05-22  8:28   ` Andreas Müller
  16 siblings, 1 reply; 23+ messages in thread
From: Khem Raj @ 2021-05-22  2:59 UTC (permalink / raw)
  To: Andreas Müller, openembedded-devel



On 5/21/21 6:35 PM, Andreas Müller wrote:
> Checked sources: Back ported CVE-patch can go
> 
> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> ---
>   .../giflib/files/CVE-2019-15133.patch         | 23 -------------------
>   .../{giflib_5.1.4.bb => giflib_5.2.1.bb}      | 19 ++++++++-------
>   2 files changed, 11 insertions(+), 31 deletions(-)
>   delete mode 100644 meta-oe/recipes-devtools/giflib/files/CVE-2019-15133.patch
>   rename meta-oe/recipes-devtools/giflib/{giflib_5.1.4.bb => giflib_5.2.1.bb} (54%)
> 
> diff --git a/meta-oe/recipes-devtools/giflib/files/CVE-2019-15133.patch b/meta-oe/recipes-devtools/giflib/files/CVE-2019-15133.patch
> deleted file mode 100644
> index 9957be82f..000000000
> --- a/meta-oe/recipes-devtools/giflib/files/CVE-2019-15133.patch
> +++ /dev/null
> @@ -1,23 +0,0 @@
> -From 799eb6a3af8a3dd81e2429bf11a72a57e541f908 Mon Sep 17 00:00:00 2001
> -From: "Eric S. Raymond" <esr@thyrsus.com>
> -Date: Sun, 17 Mar 2019 12:37:21 -0400
> -Subject: [PATCH] Address SF bug #119: MemorySanitizer: FPE on unknown address
> -
> ----
> - dgif_lib.c | 2 +-
> - 1 file changed, 1 insertion(+), 1 deletion(-)
> -
> -Upstream-status: Backport [https://sourceforge.net/p/giflib/code/ci/799eb6a3af8a3dd81e2429bf11a72a57e541f908/]
> -CVE: CVE-2019-15133
> -
> ---- a/lib/dgif_lib.c	2021-01-13 19:28:18.923493586 +0100
> -+++ b/lib/dgif_lib.c	2021-01-13 19:28:55.245863085 +0100
> -@@ -1099,7 +1099,7 @@ DGifSlurp(GifFileType *GifFile)
> -
> -               sp = &GifFile->SavedImages[GifFile->ImageCount - 1];
> -               /* Allocate memory for the image */
> --              if (sp->ImageDesc.Width < 0 && sp->ImageDesc.Height < 0 &&
> -+              if (sp->ImageDesc.Width <= 0 && sp->ImageDesc.Height <= 0 &&
> -                       sp->ImageDesc.Width > (INT_MAX / sp->ImageDesc.Height)) {
> -                   return GIF_ERROR;
> -               }
> diff --git a/meta-oe/recipes-devtools/giflib/giflib_5.1.4.bb b/meta-oe/recipes-devtools/giflib/giflib_5.2.1.bb
> similarity index 54%
> rename from meta-oe/recipes-devtools/giflib/giflib_5.1.4.bb
> rename to meta-oe/recipes-devtools/giflib/giflib_5.2.1.bb
> index 1871bab46..cbb57782b 100644
> --- a/meta-oe/recipes-devtools/giflib/giflib_5.1.4.bb
> +++ b/meta-oe/recipes-devtools/giflib/giflib_5.2.1.bb
> @@ -3,14 +3,18 @@ SECTION = "libs"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=ae11c61b04b2917be39b11f78d71519a"
>   
> -SRC_URI = " \
> -    ${SOURCEFORGE_MIRROR}/giflib/${BP}.tar.bz2 \
> -    file://CVE-2019-15133.patch \
> -"
> -
>   CVE_PRODUCT = "giflib_project:giflib"
>   
> -inherit autotools
> +DEPENDS = "xmlto-native"
> +
> +SRC_URI = "${SOURCEFORGE_MIRROR}/giflib/${BP}.tar.gz"
> +SRC_URI[sha256sum] = "31da5562f44c5f15d63340a09a4fd62b48c45620cd302f77a6d9acf0077879bd"
> +
> +inherit autotools-brokensep
> +

do you know what broke out of tree builds ?

> +do_install() {
> +    oe_runmake DESTDIR=${D} PREFIX=${prefix} LIBDIR=${libdir} install
> +}
>   
>   PACKAGES += "${PN}-utils"
>   FILES_${PN} = "${libdir}/libgif.so.*"
> @@ -20,5 +24,4 @@ BBCLASSEXTEND = "native"
>   
>   RDEPENDS_${PN}-utils = "perl"
>   
> -SRC_URI[md5sum] = "2c171ced93c0e83bb09e6ccad8e3ba2b"
> -SRC_URI[sha256sum] = "df27ec3ff24671f80b29e6ab1c4971059c14ac3db95406884fc26574631ba8d5"
> +
> 
> 
> 
> 
> 

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

* Re: [oe] [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1
  2021-05-22  2:59 ` [oe] [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Khem Raj
@ 2021-05-22  8:28   ` Andreas Müller
  0 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  8:28 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Sat, May 22, 2021 at 4:59 AM Khem Raj <raj.khem@gmail.com> wrote:
> > +
> > +inherit autotools-brokensep
> > +
>
> do you know what broke out of tree builds ?
Just sent out a more verbose V2

Cheers

Andreas

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

* Re: [oe] [PATCH 16/17] libeigen: upgrade 3.3.7 -> 3.3.7
  2021-05-22  1:35 ` [PATCH 16/17] libeigen: upgrade 3.3.7 -> 3.3.7 Andreas Müller
@ 2021-05-22  8:36   ` Jose Quaresma
  2021-05-22  9:10     ` Andreas Müller
  0 siblings, 1 reply; 23+ messages in thread
From: Jose Quaresma @ 2021-05-22  8:36 UTC (permalink / raw)
  To: Andreas Müller; +Cc: openembeded-devel

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

Typo in commit  message, new version should be 3.3.9

A sábado, 22/05/2021, 02:35, Andreas Müller <schnitzeltony@gmail.com>
escreveu:

> Simplify packaging a bit
>
> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> ---
>  .../libeigen/{libeigen_3.3.7.bb => libeigen_3.3.9.bb}        | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
>  rename meta-oe/recipes-support/libeigen/{libeigen_3.3.7.bb =>
> libeigen_3.3.9.bb} (77%)
>
> diff --git a/meta-oe/recipes-support/libeigen/libeigen_3.3.7.bb
> b/meta-oe/recipes-support/libeigen/libeigen_3.3.9.bb
> similarity index 77%
> rename from meta-oe/recipes-support/libeigen/libeigen_3.3.7.bb
> rename to meta-oe/recipes-support/libeigen/libeigen_3.3.9.bb
> index 6ce318d0b..d6ef98f94 100644
> --- a/meta-oe/recipes-support/libeigen/libeigen_3.3.7.bb
> +++ b/meta-oe/recipes-support/libeigen/libeigen_3.3.9.bb
> @@ -6,14 +6,13 @@ LIC_FILES_CHKSUM =
> "file://COPYING.MPL2;md5=815ca599c9df247a0c7f619bab123dad"
>
>  SRC_URI = "git://gitlab.com/libeigen/eigen.git;protocol=http;nobranch=1"
>
> -SRCREV = "21ae2afd4edaa1b69782c67a54182d34efe43f9c"
> +SRCREV = "0fd6b4f71dd85b2009ee4d1aeb296e2c11fc9d68"
>
>  S = "${WORKDIR}/git"
>
>  inherit cmake
>
> -FILES_${PN} = "${libdir}"
> -FILES_${PN}-dev = "${includedir} ${datadir}/eigen3/cmake
> ${datadir}/cmake/Modules ${datadir}/pkgconfig"
> +FILES_${PN}-dev += "${datadir}/eigen3/cmake"
>
>  # ${PN} is empty so we need to tweak -dev and -dbg package dependencies
>  RDEPENDS_${PN}-dev = ""
> --
> 2.31.1
>
>
> 
>
>

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

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

* Re: [oe] [PATCH 16/17] libeigen: upgrade 3.3.7 -> 3.3.7
  2021-05-22  8:36   ` [oe] " Jose Quaresma
@ 2021-05-22  9:10     ` Andreas Müller
  0 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22  9:10 UTC (permalink / raw)
  To: Jose Quaresma; +Cc: openembeded-devel

On Sat, May 22, 2021 at 10:36 AM Jose Quaresma <quaresma.jose@gmail.com> wrote:
>
> Typo in commit  message, new version should be 3.3.9
Indeed - thanks - just sent v2

Andreas

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

* Re: [oe] [PATCH 13/17] protobuf-c: upgrade 1.3.3 -> 1.4.0
  2021-05-22  1:35 ` [PATCH 13/17] protobuf-c: upgrade 1.3.3 -> 1.4.0 Andreas Müller
@ 2021-05-22 12:44   ` Khem Raj
  2021-05-22 15:15     ` Andreas Müller
  0 siblings, 1 reply; 23+ messages in thread
From: Khem Raj @ 2021-05-22 12:44 UTC (permalink / raw)
  To: Andreas Müller; +Cc: openembeded-devel

seeing errors

https://errors.yoctoproject.org/Errors/Details/585453/
https://errors.yoctoproject.org/Errors/Details/585452/

On Fri, May 21, 2021 at 6:35 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> ---
>  .../protobuf-c/0001-avoid-race-condition.patch         | 10 +++++-----
>  .../{protobuf-c_1.3.3.bb => protobuf-c_1.4.0.bb}       |  2 +-
>  2 files changed, 6 insertions(+), 6 deletions(-)
>  rename meta-oe/recipes-devtools/protobuf/{protobuf-c_1.3.3.bb => protobuf-c_1.4.0.bb} (96%)
>
> diff --git a/meta-oe/recipes-devtools/protobuf/protobuf-c/0001-avoid-race-condition.patch b/meta-oe/recipes-devtools/protobuf/protobuf-c/0001-avoid-race-condition.patch
> index 4fc7703d8..17fa14092 100644
> --- a/meta-oe/recipes-devtools/protobuf/protobuf-c/0001-avoid-race-condition.patch
> +++ b/meta-oe/recipes-devtools/protobuf/protobuf-c/0001-avoid-race-condition.patch
> @@ -20,17 +20,17 @@ Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
>   1 file changed, 1 insertion(+)
>
>  diff --git a/Makefile.am b/Makefile.am
> -index b0cb065..1608ae0 100644
> +index c7339ef..882756d 100644
>  --- a/Makefile.am
>  +++ b/Makefile.am
> -@@ -156,6 +156,7 @@ noinst_PROGRAMS += \
> - t_generated_code2_cxx_generate_packed_data_SOURCES = \
> +@@ -166,6 +166,7 @@ t_generated_code2_cxx_generate_packed_data_SOURCES = \
>         t/generated-code2/cxx-generate-packed-data.cc \
> -       t/test-full.pb.cc
> +       t/test-full.pb.cc \
> +       protobuf-c/protobuf-c.pb.cc
>  +t/generated-code2/cxx-generate-packed-data.cc: t/test-full.pb.h
>   $(t_generated_code2_cxx_generate_packed_data_OBJECTS): t/test-full.pb.h
>   t_generated_code2_cxx_generate_packed_data_CXXFLAGS = \
>         $(AM_CXXFLAGS) \
>  --
> -2.17.1
> +2.31.1
>
> diff --git a/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb b/meta-oe/recipes-devtools/protobuf/protobuf-c_1.4.0.bb
> similarity index 96%
> rename from meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb
> rename to meta-oe/recipes-devtools/protobuf/protobuf-c_1.4.0.bb
> index 6fef0bed2..85172047a 100644
> --- a/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb
> +++ b/meta-oe/recipes-devtools/protobuf/protobuf-c_1.4.0.bb
> @@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=cb901168715f4782a2b06c3ddaefa558"
>
>  DEPENDS = "protobuf-native protobuf"
>
> -SRCREV = "f20a3fa131c275a0e795d99a28f94b4dbbb5af26"
> +SRCREV = "f224ab2eeb648a818eb20687d7150a285442c907"
>
>  SRC_URI = "git://github.com/protobuf-c/protobuf-c.git \
>             file://0001-avoid-race-condition.patch \
> --
> 2.31.1
>
>
> 
>

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

* Re: [oe] [PATCH 13/17] protobuf-c: upgrade 1.3.3 -> 1.4.0
  2021-05-22 12:44   ` [oe] " Khem Raj
@ 2021-05-22 15:15     ` Andreas Müller
  0 siblings, 0 replies; 23+ messages in thread
From: Andreas Müller @ 2021-05-22 15:15 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Sat, May 22, 2021 at 2:45 PM Khem Raj <raj.khem@gmail.com> wrote:
>
> seeing errors
>
> https://errors.yoctoproject.org/Errors/Details/585453/
> https://errors.yoctoproject.org/Errors/Details/585452/

Look like [1] - will adjust to CMake tonight and send V2.

[1] https://github.com/protocolbuffers/protobuf/issues/5144

Andreas

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

end of thread, other threads:[~2021-05-22 15:15 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-22  1:35 [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Andreas Müller
2021-05-22  1:35 ` [PATCH 02/17] gnuplot: upgrade 5.2.8 -> 5.4.1 Andreas Müller
2021-05-22  1:35 ` [PATCH 03/17] zsh: upgrade 5.4.2 -> 5.8 Andreas Müller
2021-05-22  1:35 ` [PATCH 04/17] ttf-lohit: upgrade 2 -> 2.92.1 Andreas Müller
2021-05-22  1:35 ` [PATCH 05/17] xrdp: upgrade 0.9.15 -> 0.9.16 Andreas Müller
2021-05-22  1:35 ` [PATCH 06/17] snappy: upgrade 1.1.8 -> 1.1.9 Andreas Müller
2021-05-22  1:35 ` [PATCH 07/17] redis: upgrade 6.2.2 -> 6.2.3 Andreas Müller
2021-05-22  1:35 ` [PATCH 08/17] remmina: upgrade 1.4.11 -> 1.4.17 Andreas Müller
2021-05-22  1:35 ` [PATCH 09/17] libpeas: upgrade 1.26.0 -> 1.30.0 Andreas Müller
2021-05-22  1:35 ` [PATCH 10/17] modemmanager: upgrade 1.16.2 -> 1.16.4 Andreas Müller
2021-05-22  1:35 ` [PATCH 11/17] mm-common: upgrade 1.0.2 -> 1.0.3 Andreas Müller
2021-05-22  1:35 ` [PATCH 12/17] protobuf: upgrade 3.15.2 -> 3.17.0 Andreas Müller
2021-05-22  1:35 ` [PATCH 13/17] protobuf-c: upgrade 1.3.3 -> 1.4.0 Andreas Müller
2021-05-22 12:44   ` [oe] " Khem Raj
2021-05-22 15:15     ` Andreas Müller
2021-05-22  1:35 ` [PATCH 14/17] qpdf: upgrade 10.2.0 -> 10.3.2 Andreas Müller
2021-05-22  1:35 ` [PATCH 15/17] libmxml: upgrade 3.1 -> 3.2 Andreas Müller
2021-05-22  1:35 ` [PATCH 16/17] libeigen: upgrade 3.3.7 -> 3.3.7 Andreas Müller
2021-05-22  8:36   ` [oe] " Jose Quaresma
2021-05-22  9:10     ` Andreas Müller
2021-05-22  1:35 ` [PATCH 17/17] libgusb: upgrade 0.3.5 -> 0.3.6 Andreas Müller
2021-05-22  2:59 ` [oe] [PATCH 01/17] giflib: upgrade 5.1.4 -> 5.2.1 Khem Raj
2021-05-22  8:28   ` Andreas Müller

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.