All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/42] vim: split the common part into vim.inc
@ 2019-05-20 14:10 Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 02/42] librepo: upgrade 1.9.6 -> 1.10.2 Alexander Kanavin
                   ` (40 more replies)
  0 siblings, 41 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Previously vim-tiny would include the vim recipe wholesale;
this meant that they had to be upgraded in a single transaction
which devtool cannot cope with. This thwarted the latest AUH
run in particular.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-support/vim/vim-tiny_8.1.1240.bb |   2 +-
 meta/recipes-support/vim/vim.inc              | 141 +++++++++++++++++
 meta/recipes-support/vim/vim_8.1.1240.bb      | 142 +-----------------
 3 files changed, 143 insertions(+), 142 deletions(-)
 create mode 100644 meta/recipes-support/vim/vim.inc

diff --git a/meta/recipes-support/vim/vim-tiny_8.1.1240.bb b/meta/recipes-support/vim/vim-tiny_8.1.1240.bb
index 74464833adb..139e626e444 100644
--- a/meta/recipes-support/vim/vim-tiny_8.1.1240.bb
+++ b/meta/recipes-support/vim/vim-tiny_8.1.1240.bb
@@ -1,4 +1,4 @@
-require vim_${PV}.bb
+require vim.inc
 
 SUMMARY += " (with tiny features)"
 
diff --git a/meta/recipes-support/vim/vim.inc b/meta/recipes-support/vim/vim.inc
new file mode 100644
index 00000000000..f5c74684bfa
--- /dev/null
+++ b/meta/recipes-support/vim/vim.inc
@@ -0,0 +1,141 @@
+SUMMARY = "Vi IMproved - enhanced vi editor"
+SECTION = "console/utils"
+
+PROVIDES = "xxd"
+DEPENDS = "ncurses gettext-native"
+# vimdiff doesn't like busybox diff
+RSUGGESTS_${PN} = "diffutils"
+LICENSE = "vim"
+LIC_FILES_CHKSUM = "file://runtime/doc/uganda.txt;endline=287;md5=f1f82b42360005c70b8c19b0ef493f72"
+
+SRC_URI = "git://github.com/vim/vim.git \
+           file://disable_acl_header_check.patch \
+           file://vim-add-knob-whether-elf.h-are-checked.patch \
+           file://0001-src-Makefile-improve-reproducibility.patch \
+"
+SRCREV = "d96dbd6f95ea22f609042cc9c6272f14a21ff1a5"
+
+S = "${WORKDIR}/git"
+
+VIMDIR = "vim${@d.getVar('PV').split('.')[0]}${@d.getVar('PV').split('.')[1]}"
+
+inherit autotools-brokensep update-alternatives
+
+CLEANBROKEN = "1"
+
+# vim configure.in contains functions which got 'dropped' by autotools.bbclass
+do_configure () {
+    cd src
+    rm -f auto/*
+    touch auto/config.mk
+    aclocal
+    autoconf
+    cd ..
+    oe_runconf
+    touch src/auto/configure
+    touch src/auto/config.mk src/auto/config.h
+}
+
+do_compile() {
+    # We do not support fully / correctly the following locales.  Attempting
+    # to use these with msgfmt in order to update the ".desktop" files exposes
+    # this problem and leads to the compile failing.
+    for LOCALE in cs fr ko pl sk zh_CN zh_TW;do
+        echo -n > src/po/${LOCALE}.po
+    done
+    autotools_do_compile
+}
+
+#Available PACKAGECONFIG options are gtkgui, acl, x11, tiny
+PACKAGECONFIG ??= ""
+PACKAGECONFIG += " \
+    ${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)} \
+    ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 gtkgui', '', d)} \
+"
+PACKAGECONFIG_class-native = ""
+
+PACKAGECONFIG[gtkgui] = "--enable-gui=gtk2,--enable-gui=no,gtk+,"
+PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl,"
+PACKAGECONFIG[x11] = "--with-x,--without-x,xt,"
+PACKAGECONFIG[tiny] = "--with-features=tiny,--with-features=big,,"
+PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,"
+PACKAGECONFIG[elfutils] = "--enable-elf-check,,elfutils,"
+
+EXTRA_OECONF = " \
+    --disable-gpm \
+    --disable-gtktest \
+    --disable-xim \
+    --disable-netbeans \
+    --with-tlib=ncurses \
+    ac_cv_small_wchar_t=no \
+    vim_cv_getcwd_broken=no \
+    vim_cv_memmove_handles_overlap=yes \
+    vim_cv_stat_ignores_slash=no \
+    vim_cv_terminfo=yes \
+    vim_cv_tgetent=non-zero \
+    vim_cv_toupper_broken=no \
+    vim_cv_tty_group=world \
+    STRIP=/bin/true \
+"
+
+do_install() {
+    autotools_do_install
+
+    # Work around file-rdeps picking up csh, awk, perl or python as a dep
+    chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/vim132
+    chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/mve.awk
+    chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.pl
+    chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.py
+
+    # Install example vimrc from runtime files
+    install -m 0644 runtime/vimrc_example.vim ${D}/${datadir}/${BPN}/vimrc
+
+    # we use --with-features=big as default
+    mv ${D}${bindir}/${BPN} ${D}${bindir}/${BPN}.${BPN}
+
+    if ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'true', 'false', d)}; then
+	# The mouse being autoenabled is just annoying in xfce4-terminal (mouse
+	# drag make vim go into visual mode and there is no right click menu),
+	# delete the block.
+	sed -i '/the mouse works just fine/,+4d' ${D}/${datadir}/${BPN}/vimrc
+    fi
+}
+
+PARALLEL_MAKEINST = ""
+
+PACKAGES =+ "${PN}-common ${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-tools"
+FILES_${PN}-syntax = "${datadir}/${BPN}/${VIMDIR}/syntax"
+FILES_${PN}-help = "${datadir}/${BPN}/${VIMDIR}/doc"
+FILES_${PN}-tutor = "${datadir}/${BPN}/${VIMDIR}/tutor ${bindir}/${BPN}tutor"
+FILES_${PN}-vimrc = "${datadir}/${BPN}/vimrc"
+FILES_${PN}-data = "${datadir}/${BPN}"
+FILES_${PN}-tools = "${datadir}/${BPN}/${VIMDIR}/tools"
+FILES_${PN}-common = " \
+    ${datadir}/${BPN}/${VIMDIR}/*.vim \
+    ${datadir}/${BPN}/${VIMDIR}/autoload \
+    ${datadir}/${BPN}/${VIMDIR}/colors \
+    ${datadir}/${BPN}/${VIMDIR}/compiler \
+    ${datadir}/${BPN}/${VIMDIR}/ftplugin \
+    ${datadir}/${BPN}/${VIMDIR}/indent \
+    ${datadir}/${BPN}/${VIMDIR}/keymap \
+    ${datadir}/${BPN}/${VIMDIR}/lang \
+    ${datadir}/${BPN}/${VIMDIR}/macros \
+    ${datadir}/${BPN}/${VIMDIR}/plugin \
+    ${datadir}/${BPN}/${VIMDIR}/print \
+    ${datadir}/${BPN}/${VIMDIR}/spell \
+    ${datadir}/icons \
+"
+
+RDEPENDS_${BPN} = "ncurses-terminfo-base"
+# Recommend that runtime data is installed along with vim
+RRECOMMENDS_${BPN} = "${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-common"
+
+ALTERNATIVE_${PN} = "vi vim xxd"
+ALTERNATIVE_PRIORITY = "100"
+ALTERNATIVE_TARGET = "${bindir}/${BPN}.${BPN}"
+ALTERNATIVE_LINK_NAME[vi] = "${base_bindir}/vi"
+ALTERNATIVE_LINK_NAME[vim] = "${bindir}/vim"
+ALTERNATIVE_TARGET[xxd] = "${bindir}/xxd"
+ALTERNATIVE_LINK_NAME[xxd] = "${bindir}/xxd"
+
+BBCLASSEXTEND = "native"
diff --git a/meta/recipes-support/vim/vim_8.1.1240.bb b/meta/recipes-support/vim/vim_8.1.1240.bb
index f5c74684bfa..baaaacc0b77 100644
--- a/meta/recipes-support/vim/vim_8.1.1240.bb
+++ b/meta/recipes-support/vim/vim_8.1.1240.bb
@@ -1,141 +1 @@
-SUMMARY = "Vi IMproved - enhanced vi editor"
-SECTION = "console/utils"
-
-PROVIDES = "xxd"
-DEPENDS = "ncurses gettext-native"
-# vimdiff doesn't like busybox diff
-RSUGGESTS_${PN} = "diffutils"
-LICENSE = "vim"
-LIC_FILES_CHKSUM = "file://runtime/doc/uganda.txt;endline=287;md5=f1f82b42360005c70b8c19b0ef493f72"
-
-SRC_URI = "git://github.com/vim/vim.git \
-           file://disable_acl_header_check.patch \
-           file://vim-add-knob-whether-elf.h-are-checked.patch \
-           file://0001-src-Makefile-improve-reproducibility.patch \
-"
-SRCREV = "d96dbd6f95ea22f609042cc9c6272f14a21ff1a5"
-
-S = "${WORKDIR}/git"
-
-VIMDIR = "vim${@d.getVar('PV').split('.')[0]}${@d.getVar('PV').split('.')[1]}"
-
-inherit autotools-brokensep update-alternatives
-
-CLEANBROKEN = "1"
-
-# vim configure.in contains functions which got 'dropped' by autotools.bbclass
-do_configure () {
-    cd src
-    rm -f auto/*
-    touch auto/config.mk
-    aclocal
-    autoconf
-    cd ..
-    oe_runconf
-    touch src/auto/configure
-    touch src/auto/config.mk src/auto/config.h
-}
-
-do_compile() {
-    # We do not support fully / correctly the following locales.  Attempting
-    # to use these with msgfmt in order to update the ".desktop" files exposes
-    # this problem and leads to the compile failing.
-    for LOCALE in cs fr ko pl sk zh_CN zh_TW;do
-        echo -n > src/po/${LOCALE}.po
-    done
-    autotools_do_compile
-}
-
-#Available PACKAGECONFIG options are gtkgui, acl, x11, tiny
-PACKAGECONFIG ??= ""
-PACKAGECONFIG += " \
-    ${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)} \
-    ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 gtkgui', '', d)} \
-"
-PACKAGECONFIG_class-native = ""
-
-PACKAGECONFIG[gtkgui] = "--enable-gui=gtk2,--enable-gui=no,gtk+,"
-PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl,"
-PACKAGECONFIG[x11] = "--with-x,--without-x,xt,"
-PACKAGECONFIG[tiny] = "--with-features=tiny,--with-features=big,,"
-PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux,"
-PACKAGECONFIG[elfutils] = "--enable-elf-check,,elfutils,"
-
-EXTRA_OECONF = " \
-    --disable-gpm \
-    --disable-gtktest \
-    --disable-xim \
-    --disable-netbeans \
-    --with-tlib=ncurses \
-    ac_cv_small_wchar_t=no \
-    vim_cv_getcwd_broken=no \
-    vim_cv_memmove_handles_overlap=yes \
-    vim_cv_stat_ignores_slash=no \
-    vim_cv_terminfo=yes \
-    vim_cv_tgetent=non-zero \
-    vim_cv_toupper_broken=no \
-    vim_cv_tty_group=world \
-    STRIP=/bin/true \
-"
-
-do_install() {
-    autotools_do_install
-
-    # Work around file-rdeps picking up csh, awk, perl or python as a dep
-    chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/vim132
-    chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/mve.awk
-    chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.pl
-    chmod -x ${D}${datadir}/${BPN}/${VIMDIR}/tools/*.py
-
-    # Install example vimrc from runtime files
-    install -m 0644 runtime/vimrc_example.vim ${D}/${datadir}/${BPN}/vimrc
-
-    # we use --with-features=big as default
-    mv ${D}${bindir}/${BPN} ${D}${bindir}/${BPN}.${BPN}
-
-    if ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'true', 'false', d)}; then
-	# The mouse being autoenabled is just annoying in xfce4-terminal (mouse
-	# drag make vim go into visual mode and there is no right click menu),
-	# delete the block.
-	sed -i '/the mouse works just fine/,+4d' ${D}/${datadir}/${BPN}/vimrc
-    fi
-}
-
-PARALLEL_MAKEINST = ""
-
-PACKAGES =+ "${PN}-common ${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-tools"
-FILES_${PN}-syntax = "${datadir}/${BPN}/${VIMDIR}/syntax"
-FILES_${PN}-help = "${datadir}/${BPN}/${VIMDIR}/doc"
-FILES_${PN}-tutor = "${datadir}/${BPN}/${VIMDIR}/tutor ${bindir}/${BPN}tutor"
-FILES_${PN}-vimrc = "${datadir}/${BPN}/vimrc"
-FILES_${PN}-data = "${datadir}/${BPN}"
-FILES_${PN}-tools = "${datadir}/${BPN}/${VIMDIR}/tools"
-FILES_${PN}-common = " \
-    ${datadir}/${BPN}/${VIMDIR}/*.vim \
-    ${datadir}/${BPN}/${VIMDIR}/autoload \
-    ${datadir}/${BPN}/${VIMDIR}/colors \
-    ${datadir}/${BPN}/${VIMDIR}/compiler \
-    ${datadir}/${BPN}/${VIMDIR}/ftplugin \
-    ${datadir}/${BPN}/${VIMDIR}/indent \
-    ${datadir}/${BPN}/${VIMDIR}/keymap \
-    ${datadir}/${BPN}/${VIMDIR}/lang \
-    ${datadir}/${BPN}/${VIMDIR}/macros \
-    ${datadir}/${BPN}/${VIMDIR}/plugin \
-    ${datadir}/${BPN}/${VIMDIR}/print \
-    ${datadir}/${BPN}/${VIMDIR}/spell \
-    ${datadir}/icons \
-"
-
-RDEPENDS_${BPN} = "ncurses-terminfo-base"
-# Recommend that runtime data is installed along with vim
-RRECOMMENDS_${BPN} = "${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-common"
-
-ALTERNATIVE_${PN} = "vi vim xxd"
-ALTERNATIVE_PRIORITY = "100"
-ALTERNATIVE_TARGET = "${bindir}/${BPN}.${BPN}"
-ALTERNATIVE_LINK_NAME[vi] = "${base_bindir}/vi"
-ALTERNATIVE_LINK_NAME[vim] = "${bindir}/vim"
-ALTERNATIVE_TARGET[xxd] = "${bindir}/xxd"
-ALTERNATIVE_LINK_NAME[xxd] = "${bindir}/xxd"
-
-BBCLASSEXTEND = "native"
+require vim.inc
-- 
2.17.1



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

* [PATCH 02/42] librepo: upgrade 1.9.6 -> 1.10.2
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 03/42] libmodulemd: upgrade 2.2.3 -> 2.4.0 Alexander Kanavin
                   ` (39 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../librepo/{librepo_1.9.6.bb => librepo_1.10.2.bb}             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/librepo/{librepo_1.9.6.bb => librepo_1.10.2.bb} (93%)

diff --git a/meta/recipes-devtools/librepo/librepo_1.9.6.bb b/meta/recipes-devtools/librepo/librepo_1.10.2.bb
similarity index 93%
rename from meta/recipes-devtools/librepo/librepo_1.9.6.bb
rename to meta/recipes-devtools/librepo/librepo_1.10.2.bb
index fecedc981f6..43c1967c2ba 100644
--- a/meta/recipes-devtools/librepo/librepo_1.9.6.bb
+++ b/meta/recipes-devtools/librepo/librepo_1.10.2.bb
@@ -7,7 +7,7 @@ SRC_URI = "git://github.com/rpm-software-management/librepo.git \
            file://0004-Set-gpgme-variables-with-pkg-config-not-with-cmake-m.patch \
            "
 
-SRCREV = "7d8acd45eb09809a5ab729c312744da4b2fe92bb"
+SRCREV = "91ebe846b0320751a264116c36a665a8facf9e0e"
 
 S = "${WORKDIR}/git"
 
-- 
2.17.1



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

* [PATCH 03/42] libmodulemd: upgrade 2.2.3 -> 2.4.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 02/42] librepo: upgrade 1.9.6 -> 1.10.2 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-21 14:41   ` Richard Purdie
  2019-05-20 14:10 ` [PATCH 04/42] createrepo-c: upgrade 0.12.2 -> 0.14.0 Alexander Kanavin
                   ` (38 subsequent siblings)
  40 siblings, 1 reply; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-devtools/libmodulemd/libmodulemd_git.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb b/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
index 40715c06ee2..d7f486868b8 100644
--- a/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
+++ b/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
@@ -7,14 +7,14 @@ SRC_URI = "git://github.com/fedora-modularity/libmodulemd;protocol=https \
            file://0002-modulemd-v1-meson.build-do-not-generate-gir-or-gtkdo.patch \
            "
 
-PV = "2.2.3"
-SRCREV = "4c75c6f8b39ee57aebe8fd36ef84808e893048c0"
+PV = "2.4.0"
+SRCREV = "d0a3eda45e083e8fe8b329a2310a53abdbf1e4d6"
 
 S = "${WORKDIR}/git"
 
 inherit meson gobject-introspection
 
-EXTRA_OEMESON = "-Ddeveloper_build=false -Dbuild_api_v1=true -Dbuild_api_v2=false"
+EXTRA_OEMESON = "-Ddeveloper_build=false -Dbuild_api_v1=true -Dbuild_api_v2=true"
 
 DEPENDS += "glib-2.0 libyaml glib-2.0-native"
 
-- 
2.17.1



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

* [PATCH 04/42] createrepo-c: upgrade 0.12.2 -> 0.14.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 02/42] librepo: upgrade 1.9.6 -> 1.10.2 Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 03/42] libmodulemd: upgrade 2.2.3 -> 2.4.0 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 05/42] libdazzle: upgrade 3.32.1 -> 3.32.2 Alexander Kanavin
                   ` (37 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../{createrepo-c_0.12.2.bb => createrepo-c_0.14.0.bb}        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/createrepo-c/{createrepo-c_0.12.2.bb => createrepo-c_0.14.0.bb} (93%)

diff --git a/meta/recipes-devtools/createrepo-c/createrepo-c_0.12.2.bb b/meta/recipes-devtools/createrepo-c/createrepo-c_0.14.0.bb
similarity index 93%
rename from meta/recipes-devtools/createrepo-c/createrepo-c_0.12.2.bb
rename to meta/recipes-devtools/createrepo-c/createrepo-c_0.14.0.bb
index c70523dca66..2a3007c38df 100644
--- a/meta/recipes-devtools/createrepo-c/createrepo-c_0.12.2.bb
+++ b/meta/recipes-devtools/createrepo-c/createrepo-c_0.14.0.bb
@@ -8,11 +8,11 @@ SRC_URI = "git://github.com/rpm-software-management/createrepo_c \
            file://0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch \
            "
 
-SRCREV = "5b4c06f6af24633f667da37455281f24a4abd461"
+SRCREV = "8cffea9751b14366a7f6f3664f5d39fe4f0f9253"
 
 S = "${WORKDIR}/git"
 
-DEPENDS = "expat curl glib-2.0 libxml2 openssl bzip2 zlib file sqlite3 xz rpm"
+DEPENDS = "expat curl glib-2.0 libxml2 openssl bzip2 zlib file sqlite3 xz rpm libmodulemd"
 DEPENDS_append_class-native = " file-replacement-native"
 
 inherit cmake pkgconfig bash-completion distutils3-base
-- 
2.17.1



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

* [PATCH 05/42] libdazzle: upgrade 3.32.1 -> 3.32.2
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (2 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 04/42] createrepo-c: upgrade 0.12.2 -> 0.14.0 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 06/42] adwaita-icon-theme: upgrade 3.30.1 -> 3.32.0 Alexander Kanavin
                   ` (36 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../libdazzle/{libdazzle_3.32.1.bb => libdazzle_3.32.2.bb}    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-gnome/libdazzle/{libdazzle_3.32.1.bb => libdazzle_3.32.2.bb} (73%)

diff --git a/meta/recipes-gnome/libdazzle/libdazzle_3.32.1.bb b/meta/recipes-gnome/libdazzle/libdazzle_3.32.2.bb
similarity index 73%
rename from meta/recipes-gnome/libdazzle/libdazzle_3.32.1.bb
rename to meta/recipes-gnome/libdazzle/libdazzle_3.32.2.bb
index dac59f86b31..58e78a5b789 100644
--- a/meta/recipes-gnome/libdazzle/libdazzle_3.32.1.bb
+++ b/meta/recipes-gnome/libdazzle/libdazzle_3.32.2.bb
@@ -7,8 +7,8 @@ inherit gnomebase upstream-version-is-even vala distro_features_check gobject-in
 
 DEPENDS = "glib-2.0-native glib-2.0 gtk+3"
 
-SRC_URI[archive.md5sum] = "5f6455ebc47e86f63b9579997137f391"
-SRC_URI[archive.sha256sum] = "238da19fdcc3ae9bb0c2d781d099fb8c6ec70c4dd3dffad80d230344ecc3f972"
+SRC_URI[archive.md5sum] = "b5c99a8f483a0defe7c7124a3220e412"
+SRC_URI[archive.sha256sum] = "413f8dfb8706760e0c649e2994bd10524ac0736601dd03ad2036293bed3bf141"
 
 GIR_MESON_OPTION = 'with_introspection'
 
-- 
2.17.1



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

* [PATCH 06/42] adwaita-icon-theme: upgrade 3.30.1 -> 3.32.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (3 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 05/42] libdazzle: upgrade 3.32.1 -> 3.32.2 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 07/42] piglit: upgrade to latest revision Alexander Kanavin
                   ` (35 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../0001-Don-t-use-AC_CANONICAL_HOST.patch                  | 6 +++---
 ...ta-icon-theme_3.30.1.bb => adwaita-icon-theme_3.32.0.bb} | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)
 rename meta/recipes-gnome/gnome/{adwaita-icon-theme_3.30.1.bb => adwaita-icon-theme_3.32.0.bb} (92%)

diff --git a/meta/recipes-gnome/gnome/adwaita-icon-theme/0001-Don-t-use-AC_CANONICAL_HOST.patch b/meta/recipes-gnome/gnome/adwaita-icon-theme/0001-Don-t-use-AC_CANONICAL_HOST.patch
index 43abdcd85ac..4a983633139 100644
--- a/meta/recipes-gnome/gnome/adwaita-icon-theme/0001-Don-t-use-AC_CANONICAL_HOST.patch
+++ b/meta/recipes-gnome/gnome/adwaita-icon-theme/0001-Don-t-use-AC_CANONICAL_HOST.patch
@@ -1,4 +1,4 @@
-From 499222d95a3d06bc425672d50e8c47868667250b Mon Sep 17 00:00:00 2001
+From 4409423752885f76326d05c1266698155f47c5f9 Mon Sep 17 00:00:00 2001
 From: Jussi Kukkonen <jussi.kukkonen@intel.com>
 Date: Tue, 30 May 2017 14:55:49 +0300
 Subject: [PATCH] Don't use AC_CANONICAL_HOST
@@ -14,12 +14,12 @@ Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
  1 file changed, 1 deletion(-)
 
 diff --git a/configure.ac b/configure.ac
-index 38e64bd..6ed480e 100644
+index 4a84501..52dbb8e 100644
 --- a/configure.ac
 +++ b/configure.ac
 @@ -3,7 +3,6 @@ AC_PREREQ(2.53)
  
- AC_INIT([adwaita-icon-theme], [3.30.1],
+ AC_INIT([adwaita-icon-theme], [3.32.0],
          [http://bugzilla.gnome.org/enter_bug.cgi?product=adwaita-icon-theme])
 -AC_CANONICAL_HOST
  AC_CONFIG_MACRO_DIR([m4])
diff --git a/meta/recipes-gnome/gnome/adwaita-icon-theme_3.30.1.bb b/meta/recipes-gnome/gnome/adwaita-icon-theme_3.32.0.bb
similarity index 92%
rename from meta/recipes-gnome/gnome/adwaita-icon-theme_3.30.1.bb
rename to meta/recipes-gnome/gnome/adwaita-icon-theme_3.32.0.bb
index 8eadbd2eef7..02676f44010 100644
--- a/meta/recipes-gnome/gnome/adwaita-icon-theme_3.30.1.bb
+++ b/meta/recipes-gnome/gnome/adwaita-icon-theme_3.32.0.bb
@@ -14,8 +14,8 @@ SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz \
            file://0001-Run-installation-commands-as-shell-jobs.patch \
            "
 
-SRC_URI[md5sum] = "db3fd812821d72fdd9a3c7d622a95b35"
-SRC_URI[sha256sum] = "6d752a2b1bc668483956d4485c39cad1642d9358e133ff689526e43674a4e1ce"
+SRC_URI[md5sum] = "4b16278cfed860a86c8221de62eec151"
+SRC_URI[sha256sum] = "698db6e407bb987baec736c6a30216dfc0317e3ca2403c7adf3a5aa46c193286"
 
 DEPENDS += "librsvg-native"
 
-- 
2.17.1



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

* [PATCH 07/42] piglit: upgrade to latest revision
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (4 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 06/42] adwaita-icon-theme: upgrade 3.30.1 -> 3.32.0 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 17:52   ` Khem Raj
  2019-05-20 14:10 ` [PATCH 08/42] bison: upgrade 3.1 -> 3.3.2 Alexander Kanavin
                   ` (34 subsequent siblings)
  40 siblings, 1 reply; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...UPWARD-only-if-its-defined-in-fenv.h.patch | 75 -------------------
 .../piglit/piglit/format-fix.patch            | 69 -----------------
 meta/recipes-graphics/piglit/piglit_git.bb    |  4 +-
 3 files changed, 1 insertion(+), 147 deletions(-)
 delete mode 100644 meta/recipes-graphics/piglit/piglit/0001-tests-Use-FE_UPWARD-only-if-its-defined-in-fenv.h.patch
 delete mode 100644 meta/recipes-graphics/piglit/piglit/format-fix.patch

diff --git a/meta/recipes-graphics/piglit/piglit/0001-tests-Use-FE_UPWARD-only-if-its-defined-in-fenv.h.patch b/meta/recipes-graphics/piglit/piglit/0001-tests-Use-FE_UPWARD-only-if-its-defined-in-fenv.h.patch
deleted file mode 100644
index 57eda2e207b..00000000000
--- a/meta/recipes-graphics/piglit/piglit/0001-tests-Use-FE_UPWARD-only-if-its-defined-in-fenv.h.patch
+++ /dev/null
@@ -1,75 +0,0 @@
-Upstream-Status: Submitted [mailing list]
-Signed-off-by: Ross Burton <ross.burton@intel.com>
-
-From 0e0a2a69261031d55d52b6045990e8982ea12912 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Sat, 9 Jul 2016 07:52:19 +0000
-Subject: [PATCH] tests: only run rounding tests if FE_UPWARD is present
-
-On ARM, musl does not define FE_* when the architecture does not have VFP (which
-is the right interpretation).
-
-As these tests depend on calling fesetround(), skip the test if FE_UPWARD isn't
-available.
-
-Signed-off-by: Ross Burton <ross.burton@intel.com>
----
- tests/general/roundmode-getintegerv.c | 12 ++++++++----
- tests/general/roundmode-pixelstore.c  | 12 ++++++++----
- 2 files changed, 16 insertions(+), 8 deletions(-)
-
-diff --git a/tests/general/roundmode-getintegerv.c b/tests/general/roundmode-getintegerv.c
-index 28ecfaf55..aa99044a1 100644
---- a/tests/general/roundmode-getintegerv.c
-+++ b/tests/general/roundmode-getintegerv.c
-@@ -79,13 +79,17 @@ test(float val, int expect)
- void
- piglit_init(int argc, char **argv)
- {
--	int ret;
- 	bool pass = true;
--	ret = fesetround(FE_UPWARD);
--	if (ret != 0) {
--		printf("Couldn't set rounding mode\n");
-+
-+#ifdef FE_UPWARD
-+	if (fesetround(FE_UPWARD) != 0) {
-+		printf("Setting rounding mode failed\n");
- 		piglit_report_result(PIGLIT_SKIP);
- 	}
-+#else
-+	printf("Cannot set rounding mode\n");
-+	piglit_report_result(PIGLIT_SKIP);
-+#endif
- 
- 	pass = test(2.2, 2) && pass;
- 	pass = test(2.8, 3) && pass;
-diff --git a/tests/general/roundmode-pixelstore.c b/tests/general/roundmode-pixelstore.c
-index 8a029b257..57ec11c09 100644
---- a/tests/general/roundmode-pixelstore.c
-+++ b/tests/general/roundmode-pixelstore.c
-@@ -79,13 +79,17 @@ test(float val, int expect)
- void
- piglit_init(int argc, char **argv)
- {
--	int ret;
- 	bool pass = true;
--	ret = fesetround(FE_UPWARD);
--	if (ret != 0) {
--		printf("Couldn't set rounding mode\n");
-+
-+#ifdef FE_UPWARD
-+	if (fesetround(FE_UPWARD) != 0) {
-+		printf("Setting rounding mode failed\n");
- 		piglit_report_result(PIGLIT_SKIP);
- 	}
-+#else
-+	printf("Cannot set rounding mode\n");
-+	piglit_report_result(PIGLIT_SKIP);
-+#endif
- 
- 	pass = test(2.2, 2) && pass;
- 	pass = test(2.8, 3) && pass;
--- 
-2.11.0
-
diff --git a/meta/recipes-graphics/piglit/piglit/format-fix.patch b/meta/recipes-graphics/piglit/piglit/format-fix.patch
deleted file mode 100644
index 73d539fef27..00000000000
--- a/meta/recipes-graphics/piglit/piglit/format-fix.patch
+++ /dev/null
@@ -1,69 +0,0 @@
-Upstream-Status: Submitted [mailing list]
-Signed-off-by: Ross Burton <ross.burton@intel.com>
-
-From f0c6981322807e179e39ce67aeebd42cf7a54d36 Mon Sep 17 00:00:00 2001
-From: Ross Burton <ross.burton@intel.com>
-Date: Wed, 21 Nov 2018 12:44:36 +0000
-Subject: [PATCH] arb_texture_view: fix security format warnings
-
-If built with -Werror=format-security then Piglit fails to build:
-
-/tests/spec/arb_texture_view/rendering-layers-image.c:150:8:
-error: format not a string literal and no format arguments [-Werror=format-security]
-         (desc)); \
-         ^~~~~~
-
-In this case test->uniform_type is being turned into a string using snprintf()
-and then passed to piglit_report_subtest_result() which takes a format string,
-but GCC can't verify the format.
-
-As _subtest_report() takes a format string, we can just remove the snprintf()
-and let it construct the label.
-
-Also as X is used once and doesn't make the code clearer, just inline it.
-
-Signed-off-by: Ross Burton <ross.burton@intel.com>
----
- tests/spec/arb_texture_view/rendering-layers-image.c | 19 ++++++-------------
- 1 file changed, 6 insertions(+), 13 deletions(-)
-
-diff --git a/tests/spec/arb_texture_view/rendering-layers-image.c b/tests/spec/arb_texture_view/rendering-layers-image.c
-index 415b01657..86148075b 100644
---- a/tests/spec/arb_texture_view/rendering-layers-image.c
-+++ b/tests/spec/arb_texture_view/rendering-layers-image.c
-@@ -142,26 +142,19 @@ test_render_layers(const struct test_info *test)
- 	return pass;
- }
- 
--#define X(f, desc) \
--	do { \
--		const bool subtest_pass = (f); \
--		piglit_report_subtest_result(subtest_pass \
--						 ? PIGLIT_PASS : PIGLIT_FAIL, \
--						 (desc)); \
--		pass = pass && subtest_pass; \
--	} while (0)
--
- enum piglit_result
- piglit_display(void)
- {
- 	bool pass = true;
- 	for (int test_idx = 0; test_idx < ARRAY_SIZE(tests); test_idx++) {
- 		const struct test_info *test = &tests[test_idx];
--		char test_name[128];
--		snprintf(test_name, sizeof(test_name), "layers rendering of %s", test->uniform_type);
--		X(test_render_layers(test), test_name);
-+
-+		const bool subtest_pass = test_render_layers(test);
-+
-+		piglit_report_subtest_result(subtest_pass ? PIGLIT_PASS : PIGLIT_FAIL,
-+					     "layers rendering of %s", test->uniform_type);
-+		pass = pass && subtest_pass;
- 	}
--#undef X
- 	pass = piglit_check_gl_error(GL_NO_ERROR) && pass;
- 	return pass ? PIGLIT_PASS : PIGLIT_FAIL;
- }
--- 
-2.11.0
-
diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb
index b6542a191cf..9ce6c0998aa 100644
--- a/meta/recipes-graphics/piglit/piglit_git.bb
+++ b/meta/recipes-graphics/piglit/piglit_git.bb
@@ -4,14 +4,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b2beded7103a3d8a442a2a0391d607b0"
 
 SRC_URI = "git://anongit.freedesktop.org/piglit \
            file://0001-cmake-install-bash-completions-in-the-right-place.patch \
-           file://0001-tests-Use-FE_UPWARD-only-if-its-defined-in-fenv.h.patch \
            file://0001-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch \
-           file://format-fix.patch \
            "
 UPSTREAM_CHECK_COMMITS = "1"
 
 # From 2018-10-26
-SRCREV = "b9066c7717af1d169a616c9e61706b99ff8515b5"
+SRCREV = "ac955893c92591c4542439665cae2c3fb79de9dd"
 # (when PV goes above 1.0 remove the trailing r)
 PV = "1.0+gitr${SRCPV}"
 
-- 
2.17.1



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

* [PATCH 08/42] bison: upgrade 3.1 -> 3.3.2
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (5 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 07/42] piglit: upgrade to latest revision Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 09/42] atk: upgrade 2.30.0 -> 2.32.0 Alexander Kanavin
                   ` (33 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../bison/dont-depend-on-help2man.patch.patch    | 16 +++++++---------
 .../bison/{bison_3.1.bb => bison_3.3.2.bb}       |  4 ++--
 2 files changed, 9 insertions(+), 11 deletions(-)
 rename meta/recipes-devtools/bison/{bison_3.1.bb => bison_3.3.2.bb} (90%)

diff --git a/meta/recipes-devtools/bison/bison/dont-depend-on-help2man.patch.patch b/meta/recipes-devtools/bison/bison/dont-depend-on-help2man.patch.patch
index ac16c5770a5..8a41a3a7627 100644
--- a/meta/recipes-devtools/bison/bison/dont-depend-on-help2man.patch.patch
+++ b/meta/recipes-devtools/bison/bison/dont-depend-on-help2man.patch.patch
@@ -1,4 +1,4 @@
-From 4c0d7733f30903f8d7c7cd7433f5c8a7505e35f5 Mon Sep 17 00:00:00 2001
+From 31bb81ef15c42b10844eb8af8738f672076edf0e Mon Sep 17 00:00:00 2001
 From: Marko Lindqvist <cazfi74@gmail.com>
 Date: Tue, 21 Apr 2015 00:48:45 -0700
 Subject: [PATCH] doc/local.mk: dont-depend-on-help2man.patch
@@ -10,15 +10,16 @@ Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
 Updated for bison 3.0.4
 
 Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
+
 ---
- doc/local.mk |    9 +--------
+ doc/local.mk | 9 +--------
  1 file changed, 1 insertion(+), 8 deletions(-)
 
 diff --git a/doc/local.mk b/doc/local.mk
-index c340452..642f385 100644
+index d12836e..f9bf332 100644
 --- a/doc/local.mk
 +++ b/doc/local.mk
-@@ -98,10 +98,7 @@ endif ! CROSS_COMPILING
+@@ -101,10 +101,7 @@ endif ! CROSS_COMPILING
  ## Man Pages.  ##
  ## ----------- ##
  
@@ -30,9 +31,9 @@ index c340452..642f385 100644
  
  # Differences to ignore when comparing the man page (the date).
  remove_time_stamp = \
-@@ -124,10 +121,6 @@ $(top_srcdir)/doc/bison.1: $(MAN_DEPS)
+@@ -127,10 +124,6 @@ $(top_srcdir)/doc/bison.1: $(MAN_DEPS)
  	fi
- 	$(AM_V_at)rm -f $@*.t
+ 	$(AM_V_at)rm -f $@*.tmp
  
 -if ENABLE_YACC
 -nodist_man_MANS = doc/yacc.1
@@ -41,6 +42,3 @@ index c340452..642f385 100644
  ## ----------------------------- ##
  ## Graphviz examples generation. ##
  ## ----------------------------- ##
--- 
-1.7.9.5
-
diff --git a/meta/recipes-devtools/bison/bison_3.1.bb b/meta/recipes-devtools/bison/bison_3.3.2.bb
similarity index 90%
rename from meta/recipes-devtools/bison/bison_3.1.bb
rename to meta/recipes-devtools/bison/bison_3.3.2.bb
index a743bfdb810..adb9d48e90f 100644
--- a/meta/recipes-devtools/bison/bison_3.1.bb
+++ b/meta/recipes-devtools/bison/bison_3.3.2.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] = "db7e431785ad96870bfa570a15cab079"
-SRC_URI[sha256sum] = "7c2464ad6cb7b513b2c350a092d919327e1f63d12ff024836acbb504475da5c6"
+SRC_URI[md5sum] = "c9b552dee234b2f6b66e56b27e5234c9"
+SRC_URI[sha256sum] = "039ee45b61d95e5003e7e8376f9080001b4066ff357bde271b7faace53b9d804"
 
 inherit autotools gettext texinfo
 
-- 
2.17.1



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

* [PATCH 09/42] atk: upgrade 2.30.0 -> 2.32.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (6 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 08/42] bison: upgrade 3.1 -> 3.3.2 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 10/42] python3-mako: upgrade 1.0.9 -> 1.0.10 Alexander Kanavin
                   ` (32 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...001-Switch-from-filename-to-basename.patch | 38 -------------------
 ...able-introspection-for-cross-compile.patch |  7 ++--
 .../atk/{atk_2.30.0.bb => atk_2.32.0.bb}      |  9 ++---
 3 files changed, 7 insertions(+), 47 deletions(-)
 delete mode 100644 meta/recipes-support/atk/atk/0001-Switch-from-filename-to-basename.patch
 rename meta/recipes-support/atk/{atk_2.30.0.bb => atk_2.32.0.bb} (64%)

diff --git a/meta/recipes-support/atk/atk/0001-Switch-from-filename-to-basename.patch b/meta/recipes-support/atk/atk/0001-Switch-from-filename-to-basename.patch
deleted file mode 100644
index 047e81fb613..00000000000
--- a/meta/recipes-support/atk/atk/0001-Switch-from-filename-to-basename.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-Upstream-Status: Submitted
-
-From 0330251715fee908f2f162565d4fa1df5030d0c0 Mon Sep 17 00:00:00 2001
-From: Jeremy Puhlman <jpuhlman@mvista.com>
-Date: Thu, 14 Jun 2018 17:21:49 +0000
-Subject: [PATCH] Switch from filename to basename
-
-When atk-enum-types.h is installed in to a system, the user likely has
-no access to the location where the headers were built, especially if
-the software was built in a sysroot environment. If the headers were
-built for a mulitlib environment, the build pathing may be different.
-Subsequently, if two mulitlib variants of atk are installed together the
-headers conflict for no other reason then they were built in two
-different locations. Switching from filename to basename, still should
-provide sufficient information on the providence of the enums, while not
-conflicting for really no good reason.
-
-Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
----
- atk/atk-enum-types.h.template | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/atk/atk-enum-types.h.template b/atk/atk-enum-types.h.template
-index 7b4cec4..8321c24 100644
---- a/atk/atk-enum-types.h.template
-+++ b/atk/atk-enum-types.h.template
-@@ -14,7 +14,7 @@ G_BEGIN_DECLS
- 
- /*** BEGIN file-production ***/
- 
--/* enumerations from "@filename@" */
-+/* enumerations from "@basename@" */
- /*** END file-production ***/
- 
- /*** BEGIN value-header ***/
--- 
-2.14.1.459.g238e487
-
diff --git a/meta/recipes-support/atk/atk/0001-meson.build-enable-introspection-for-cross-compile.patch b/meta/recipes-support/atk/atk/0001-meson.build-enable-introspection-for-cross-compile.patch
index 1d814ccdb74..d1b08bc04b6 100644
--- a/meta/recipes-support/atk/atk/0001-meson.build-enable-introspection-for-cross-compile.patch
+++ b/meta/recipes-support/atk/atk/0001-meson.build-enable-introspection-for-cross-compile.patch
@@ -1,4 +1,4 @@
-From c3eb5b2e74c38bb8374bc027f84e42d7e94f62f8 Mon Sep 17 00:00:00 2001
+From 44d46baa5e1519c6c3df7e4d34fb333e247b5bc8 Mon Sep 17 00:00:00 2001
 From: Anuj Mittal <anuj.mittal@intel.com>
 Date: Fri, 6 Apr 2018 12:04:00 +0800
 Subject: [PATCH] meson.build: enable introspection for cross-compile
@@ -9,16 +9,17 @@ if it should be disabled or not.
 Upstream-Status: Pending
 
 Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
+
 ---
  atk/meson.build | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/atk/meson.build b/atk/meson.build
-index 616a3e6..941ded8 100644
+index 0ad67e5..1d2a49c 100644
 --- a/atk/meson.build
 +++ b/atk/meson.build
 @@ -137,7 +137,7 @@ libatk_dep = declare_dependency(link_with: libatk,
-                                 dependencies: gobject_dep,
+                                 dependencies: glib_dep,
                                  sources: atk_enum_h)
  
 -if not meson.is_cross_build() and get_option('introspection')
diff --git a/meta/recipes-support/atk/atk_2.30.0.bb b/meta/recipes-support/atk/atk_2.32.0.bb
similarity index 64%
rename from meta/recipes-support/atk/atk_2.30.0.bb
rename to meta/recipes-support/atk/atk_2.32.0.bb
index 4e22b3f8113..67223729e93 100644
--- a/meta/recipes-support/atk/atk_2.30.0.bb
+++ b/meta/recipes-support/atk/atk_2.32.0.bb
@@ -14,12 +14,9 @@ DEPENDS = "gettext-native glib-2.0"
 GNOMEBASEBUILDCLASS = "meson"
 inherit gnomebase gtk-doc gettext upstream-version-is-even gobject-introspection
 
-SRC_URI_append = " \
-                   file://0001-meson.build-enable-introspection-for-cross-compile.patch \
-                   file://0001-Switch-from-filename-to-basename.patch \
-                   "
-SRC_URI[archive.md5sum] = "769c85005d392ad17ffbc063f2d26454"
-SRC_URI[archive.sha256sum] = "dd4d90d4217f2a0c1fee708a555596c2c19d26fef0952e1ead1938ab632c027b"
+SRC_URI += " file://0001-meson.build-enable-introspection-for-cross-compile.patch"
+SRC_URI[archive.md5sum] = "c10b0b2af3c199e42caa6275b845c49d"
+SRC_URI[archive.sha256sum] = "cb41feda7fe4ef0daa024471438ea0219592baf7c291347e5a858bb64e4091cc"
 
 BBCLASSEXTEND = "native nativesdk"
 
-- 
2.17.1



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

* [PATCH 10/42] python3-mako: upgrade 1.0.9 -> 1.0.10
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (7 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 09/42] atk: upgrade 2.30.0 -> 2.32.0 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 11/42] nss: upgrade 3.43 -> 3.44 Alexander Kanavin
                   ` (31 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-devtools/python/python-mako.inc                  | 4 ++--
 .../python/{python3-mako_1.0.9.bb => python3-mako_1.0.10.bb}  | 0
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-mako_1.0.9.bb => python3-mako_1.0.10.bb} (100%)

diff --git a/meta/recipes-devtools/python/python-mako.inc b/meta/recipes-devtools/python/python-mako.inc
index 97c624bbc66..20808fe5aca 100644
--- a/meta/recipes-devtools/python/python-mako.inc
+++ b/meta/recipes-devtools/python/python-mako.inc
@@ -8,8 +8,8 @@ PYPI_PACKAGE = "Mako"
 
 inherit pypi
 
-SRC_URI[md5sum] = "d739720f3f0d6a1cb6a96ea7a4760c3e"
-SRC_URI[sha256sum] = "0728c404877cd4ca72c409c0ea372dc5f3b53fa1ad2bb434e1d216c0444ff1fd"
+SRC_URI[md5sum] = "a94d376078dda65f834ea5049a81ebb5"
+SRC_URI[sha256sum] = "7165919e78e1feb68b4dbe829871ea9941398178fa58e6beedb9ba14acf63965"
 
 RDEPENDS_${PN} = "${PYTHON_PN}-html \
                   ${PYTHON_PN}-netclient \
diff --git a/meta/recipes-devtools/python/python3-mako_1.0.9.bb b/meta/recipes-devtools/python/python3-mako_1.0.10.bb
similarity index 100%
rename from meta/recipes-devtools/python/python3-mako_1.0.9.bb
rename to meta/recipes-devtools/python/python3-mako_1.0.10.bb
-- 
2.17.1



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

* [PATCH 11/42] nss: upgrade 3.43 -> 3.44
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (8 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 10/42] python3-mako: upgrade 1.0.9 -> 1.0.10 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 12/42] go: update 1.12.1->1.12.5 Alexander Kanavin
                   ` (30 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-support/nss/{nss_3.43.bb => nss_3.44.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/nss/{nss_3.43.bb => nss_3.44.bb} (98%)

diff --git a/meta/recipes-support/nss/nss_3.43.bb b/meta/recipes-support/nss/nss_3.44.bb
similarity index 98%
rename from meta/recipes-support/nss/nss_3.43.bb
rename to meta/recipes-support/nss/nss_3.44.bb
index f8cf5a46afb..4205d79485e 100644
--- a/meta/recipes-support/nss/nss_3.43.bb
+++ b/meta/recipes-support/nss/nss_3.44.bb
@@ -33,8 +33,8 @@ SRC_URI = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/${VERSIO
            file://system-pkcs11.txt \
            "
 
-SRC_URI[md5sum] = "67c8fa282c32cb56117fdd530dd77001"
-SRC_URI[sha256sum] = "f30bc1b7330887b75de9fec37dbc173001758dc43fb095ffbc45dac4093fe2ca"
+SRC_URI[md5sum] = "e9222b9573452b9f4e6ff4915d6407c2"
+SRC_URI[sha256sum] = "a5620e59b6eeedfd5a12c9298b50ad92e9898b223e214eb675e36f4ffb5b6aff"
 
 UPSTREAM_CHECK_URI = "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_Releases"
 UPSTREAM_CHECK_REGEX = "NSS_(?P<pver>.+)_release_notes"
-- 
2.17.1



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

* [PATCH 12/42] go: update 1.12.1->1.12.5
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (9 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 11/42] nss: upgrade 3.43 -> 3.44 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 13/42] systemtap: upgrade 4.0 -> 4.1 Alexander Kanavin
                   ` (29 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-devtools/go/go-1.12.inc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-devtools/go/go-1.12.inc b/meta/recipes-devtools/go/go-1.12.inc
index 0cf0a63ff65..7c4cac1fc25 100644
--- a/meta/recipes-devtools/go/go-1.12.inc
+++ b/meta/recipes-devtools/go/go-1.12.inc
@@ -1,7 +1,7 @@
 require go-common.inc
 
 GO_BASEVERSION = "1.12"
-GO_MINOR = ".1"
+GO_MINOR = ".5"
 PV .= "${GO_MINOR}"
 FILESEXTRAPATHS_prepend := "${FILE_DIRNAME}/go-${GO_BASEVERSION}:"
 
@@ -19,5 +19,5 @@ SRC_URI += "\
 "
 SRC_URI_append_libc-musl = " file://0009-ld-replace-glibc-dynamic-linker-with-musl.patch"
 
-SRC_URI[main.md5sum] = "09fe592343465560b4b8431d870b3df3"
-SRC_URI[main.sha256sum] = "0be127684df4b842a64e58093154f9d15422f1405f1fcff4b2c36ffc6a15818a"
+SRC_URI[main.md5sum] = "cb6f594d22dd79af4fff9779607b1b47"
+SRC_URI[main.sha256sum] = "2aa5f088cbb332e73fc3def546800616b38d3bfe6b8713b8a6404060f22503e8"
-- 
2.17.1



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

* [PATCH 13/42] systemtap: upgrade 4.0 -> 4.1
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (10 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 12/42] go: update 1.12.1->1.12.5 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-21 21:37   ` Victor Kamensky (kamensky)
  2019-05-20 14:10 ` [PATCH 14/42] gawk: upgrade 4.2.1 -> 5.0.0 Alexander Kanavin
                   ` (28 subsequent siblings)
  40 siblings, 1 reply; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-kernel/systemtap/systemtap_git.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index 54de7226608..c5348b3204b 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,7 +1,7 @@
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-SRCREV = "90ff34ac0506f0d5440393a4c78565f6aaf9b726"
-PV = "4.0"
+SRCREV = "984d6d1696ed06626b07cb65ab55d6ae0ece1131"
+PV = "4.1"
 
 SRC_URI = "git://sourceware.org/git/systemtap.git \
            file://configure-allow-to-disable-libvirt.patch \
-- 
2.17.1



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

* [PATCH 14/42] gawk: upgrade 4.2.1 -> 5.0.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (11 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 13/42] systemtap: upgrade 4.0 -> 4.1 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 15/42] alsa-plugins: upgrade 1.1.8 -> 1.1.9 Alexander Kanavin
                   ` (27 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-extended/gawk/{gawk_4.2.1.bb => gawk_5.0.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/gawk/{gawk_4.2.1.bb => gawk_5.0.0.bb} (90%)

diff --git a/meta/recipes-extended/gawk/gawk_4.2.1.bb b/meta/recipes-extended/gawk/gawk_5.0.0.bb
similarity index 90%
rename from meta/recipes-extended/gawk/gawk_4.2.1.bb
rename to meta/recipes-extended/gawk/gawk_5.0.0.bb
index 96637523947..b1e1b212a3a 100644
--- a/meta/recipes-extended/gawk/gawk_4.2.1.bb
+++ b/meta/recipes-extended/gawk/gawk_5.0.0.bb
@@ -19,8 +19,8 @@ SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \
            file://run-ptest \
 "
 
-SRC_URI[md5sum] = "0256724a0af50cb83ac92f833488673d"
-SRC_URI[sha256sum] = "2b23d51503b2df9a41aa6fddc6002ad7ebf2a386ac19dc1b6be0dd48b0acf6db"
+SRC_URI[md5sum] = "45366249c13aae2bfb00e8e97c3f39b7"
+SRC_URI[sha256sum] = "2d686c9a5b7ba292bc3fa56bc84a1959d721a9d57970a76413156d4b8f1fc67d"
 
 inherit autotools gettext texinfo update-alternatives
 
-- 
2.17.1



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

* [PATCH 15/42] alsa-plugins: upgrade 1.1.8 -> 1.1.9
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (12 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 14/42] gawk: upgrade 4.2.1 -> 5.0.0 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:10 ` [PATCH 16/42] alsa-utils: " Alexander Kanavin
                   ` (26 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../alsa/{alsa-plugins_1.1.8.bb => alsa-plugins_1.1.9.bb}     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/alsa/{alsa-plugins_1.1.8.bb => alsa-plugins_1.1.9.bb} (98%)

diff --git a/meta/recipes-multimedia/alsa/alsa-plugins_1.1.8.bb b/meta/recipes-multimedia/alsa/alsa-plugins_1.1.9.bb
similarity index 98%
rename from meta/recipes-multimedia/alsa/alsa-plugins_1.1.8.bb
rename to meta/recipes-multimedia/alsa/alsa-plugins_1.1.9.bb
index 2d9cc06f585..b94fc5cee32 100644
--- a/meta/recipes-multimedia/alsa/alsa-plugins_1.1.8.bb
+++ b/meta/recipes-multimedia/alsa/alsa-plugins_1.1.9.bb
@@ -21,8 +21,8 @@ LIC_FILES_CHKSUM = "\
 "
 
 SRC_URI = "https://www.alsa-project.org/files/pub/plugins/${BP}.tar.bz2"
-SRC_URI[md5sum] = "d0f87211d1560f2c07c8eae4297bc4f6"
-SRC_URI[sha256sum] = "7f77df171685ccec918268477623a39db4d9f32d5dc5e76874ef2467a2405994"
+SRC_URI[md5sum] = "e0caffbd849c51ed81751378f56cb563"
+SRC_URI[sha256sum] = "161772303da521abbbf1d91f63b470c4791392d5728f2192a42d71292078f907"
 
 DEPENDS += "alsa-lib"
 
-- 
2.17.1



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

* [PATCH 16/42] alsa-utils: upgrade 1.1.8 -> 1.1.9
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (13 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 15/42] alsa-plugins: upgrade 1.1.8 -> 1.1.9 Alexander Kanavin
@ 2019-05-20 14:10 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 17/42] alsa-lib: " Alexander Kanavin
                   ` (25 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:10 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...lsa-utils-scripts_1.1.8.bb => alsa-utils-scripts_1.1.9.bb} | 0
 .../alsa/{alsa-utils_1.1.8.bb => alsa-utils_1.1.9.bb}         | 4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/alsa/{alsa-utils-scripts_1.1.8.bb => alsa-utils-scripts_1.1.9.bb} (100%)
 rename meta/recipes-multimedia/alsa/{alsa-utils_1.1.8.bb => alsa-utils_1.1.9.bb} (97%)

diff --git a/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.8.bb b/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.9.bb
similarity index 100%
rename from meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.8.bb
rename to meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.9.bb
diff --git a/meta/recipes-multimedia/alsa/alsa-utils_1.1.8.bb b/meta/recipes-multimedia/alsa/alsa-utils_1.1.9.bb
similarity index 97%
rename from meta/recipes-multimedia/alsa/alsa-utils_1.1.8.bb
rename to meta/recipes-multimedia/alsa/alsa-utils_1.1.9.bb
index 96d54e593ad..03b5c8de30e 100644
--- a/meta/recipes-multimedia/alsa/alsa-utils_1.1.8.bb
+++ b/meta/recipes-multimedia/alsa/alsa-utils_1.1.9.bb
@@ -21,8 +21,8 @@ PACKAGECONFIG[manpages] = "--enable-xmlto, --disable-xmlto, xmlto-native docbook
 
 # alsa-utils specified in SRC_URI due to alsa-utils-scripts recipe
 SRC_URI = "https://www.alsa-project.org/files/pub/utils/alsa-utils-${PV}.tar.bz2"
-SRC_URI[md5sum] = "54d6f9b483144823d0fc0c26e8cea028"
-SRC_URI[sha256sum] = "fd9bf528922b3829a91913b89a1858c58a0b24271a7b5f529923aa9ea12fa4cf"
+SRC_URI[md5sum] = "5ed21c3e296c06046cc986e732f625f6"
+SRC_URI[sha256sum] = "5ddf2cbddb4bd1a4a2a6492a09c25898b08c3ad64893c3655be14194cf0a213a"
 
 # On build machines with python-docutils (not python3-docutils !!) installed
 # rst2man (not rst2man.py) is detected and compile fails with
-- 
2.17.1



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

* [PATCH 17/42] alsa-lib: upgrade 1.1.8 -> 1.1.9
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (14 preceding siblings ...)
  2019-05-20 14:10 ` [PATCH 16/42] alsa-utils: " Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 18/42] libpcre2: upgrade 10.32 -> 10.33 Alexander Kanavin
                   ` (24 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../alsa/{alsa-lib_1.1.8.bb => alsa-lib_1.1.9.bb}             | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/alsa/{alsa-lib_1.1.8.bb => alsa-lib_1.1.9.bb} (89%)

diff --git a/meta/recipes-multimedia/alsa/alsa-lib_1.1.8.bb b/meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb
similarity index 89%
rename from meta/recipes-multimedia/alsa/alsa-lib_1.1.8.bb
rename to meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb
index 76cc9627e5b..2c63ee75222 100644
--- a/meta/recipes-multimedia/alsa/alsa-lib_1.1.8.bb
+++ b/meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb
@@ -8,8 +8,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7 \
                     "
 
 SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2"
-SRC_URI[md5sum] = "0eec0d657a07927795809c8f87fb76ca"
-SRC_URI[sha256sum] = "3cdc3a93a6427a26d8efab4ada2152e64dd89140d981f6ffa003e85be707aedf"
+SRC_URI[md5sum] = "e6d429dbdcfaa0f034d907fa6dc3735e"
+SRC_URI[sha256sum] = "488373aef5396682f3a411a6d064ae0ad196b9c96269d0bb912fbdeec94b994b"
 
 inherit autotools pkgconfig
 
-- 
2.17.1



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

* [PATCH 18/42] libpcre2: upgrade 10.32 -> 10.33
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (15 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 17/42] alsa-lib: " Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 19/42] lz4: upgrade 1.9.0 -> 1.9.1 Alexander Kanavin
                   ` (23 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

License-update: copyright years

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

diff --git a/meta/recipes-support/libpcre/libpcre2_10.32.bb b/meta/recipes-support/libpcre/libpcre2_10.33.bb
similarity index 90%
rename from meta/recipes-support/libpcre/libpcre2_10.32.bb
rename to meta/recipes-support/libpcre/libpcre2_10.33.bb
index 3a0aa53029f..50b26753b4f 100644
--- a/meta/recipes-support/libpcre/libpcre2_10.32.bb
+++ b/meta/recipes-support/libpcre/libpcre2_10.33.bb
@@ -8,14 +8,14 @@ SUMMARY = "Perl Compatible Regular Expressions version 2"
 HOMEPAGE = "http://www.pcre.org"
 SECTION = "devel"
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENCE;md5=cf66d307bf03bae65d413eb7a8e603a0"
+LIC_FILES_CHKSUM = "file://LICENCE;md5=b1588d3bb4cb0e1f5a597d908f8c5b37"
 
 SRC_URI = "https://ftp.pcre.org/pub/pcre/pcre2-${PV}.tar.bz2 \
            file://pcre-cross.patch \
 "
 
-SRC_URI[md5sum] = "8a096287153fb994970df3570e90fcb5"
-SRC_URI[sha256sum] = "f29e89cc5de813f45786580101aaee3984a65818631d4ddbda7b32f699b87c2e"
+SRC_URI[md5sum] = "80b355f2dce909a2e2424f5c79eddb44"
+SRC_URI[sha256sum] = "35514dff0ccdf02b55bd2e9fa586a1b9d01f62332c3356e379eabb75f789d8aa"
 
 CVE_PRODUCT = "pcre2"
 
-- 
2.17.1



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

* [PATCH 19/42] lz4: upgrade 1.9.0 -> 1.9.1
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (16 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 18/42] libpcre2: upgrade 10.32 -> 10.33 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 20/42] libxcrypt: upgrade 4.4.4 -> 4.4.6 Alexander Kanavin
                   ` (22 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-support/lz4/{lz4_1.9.0.bb => lz4_1.9.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/lz4/{lz4_1.9.0.bb => lz4_1.9.1.bb} (94%)

diff --git a/meta/recipes-support/lz4/lz4_1.9.0.bb b/meta/recipes-support/lz4/lz4_1.9.1.bb
similarity index 94%
rename from meta/recipes-support/lz4/lz4_1.9.0.bb
rename to meta/recipes-support/lz4/lz4_1.9.1.bb
index 744a1bf4709..de1f970247e 100644
--- a/meta/recipes-support/lz4/lz4_1.9.0.bb
+++ b/meta/recipes-support/lz4/lz4_1.9.1.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://lib/LICENSE;md5=ebc2ea4814a64de7708f1571904b32cc \
 
 PE = "1"
 
-SRCREV = "131896ab9d4fc9b8c606616327ed223d5d86472b"
+SRCREV = "398e36c756a3067de8e2b35dd380baef040dfe0d"
 
 SRC_URI = "git://github.com/lz4/lz4.git \
            file://run-ptest \
-- 
2.17.1



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

* [PATCH 20/42] libxcrypt: upgrade 4.4.4 -> 4.4.6
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (17 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 19/42] lz4: upgrade 1.9.0 -> 1.9.1 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 21/42] python3-pip: upgrade 19.0.3 -> 19.1.1 Alexander Kanavin
                   ` (21 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../libxcrypt/{libxcrypt_4.4.4.bb => libxcrypt_4.4.6.bb}      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-core/libxcrypt/{libxcrypt_4.4.4.bb => libxcrypt_4.4.6.bb} (93%)

diff --git a/meta/recipes-core/libxcrypt/libxcrypt_4.4.4.bb b/meta/recipes-core/libxcrypt/libxcrypt_4.4.6.bb
similarity index 93%
rename from meta/recipes-core/libxcrypt/libxcrypt_4.4.4.bb
rename to meta/recipes-core/libxcrypt/libxcrypt_4.4.6.bb
index b44c07b4d0b..637c0e6ffbd 100644
--- a/meta/recipes-core/libxcrypt/libxcrypt_4.4.4.bb
+++ b/meta/recipes-core/libxcrypt/libxcrypt_4.4.6.bb
@@ -9,10 +9,10 @@ LIC_FILES_CHKSUM ?= "file://LICENSING;md5=be275bc7f91642efe7709a8ae7a1433b \
 
 inherit autotools pkgconfig
 
-PV = "4.4.4"
+PV = "4.4.6"
 
 SRC_URI = "git://github.com/besser82/libxcrypt.git;branch=${SRCBRANCH}"
-SRCREV = "3b251d4e1af66aa7697c4ac96c689f996fa90c32"
+SRCREV = "398943774c5ff38baf1bc5ee088855fd8983bb05"
 SRCBRANCH ?= "develop"
 
 PROVIDES = "virtual/crypt"
-- 
2.17.1



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

* [PATCH 21/42] python3-pip: upgrade 19.0.3 -> 19.1.1
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (18 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 20/42] libxcrypt: upgrade 4.4.4 -> 4.4.6 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 22/42] iproute2: upgrade 5.0.0 -> 5.1.0 Alexander Kanavin
                   ` (20 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

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

diff --git a/meta/recipes-devtools/python/python3-pip_19.0.3.bb b/meta/recipes-devtools/python/python3-pip_19.1.1.bb
similarity index 81%
rename from meta/recipes-devtools/python/python3-pip_19.0.3.bb
rename to meta/recipes-devtools/python/python3-pip_19.1.1.bb
index 4fdc7ee244f..baf32f4724e 100644
--- a/meta/recipes-devtools/python/python3-pip_19.0.3.bb
+++ b/meta/recipes-devtools/python/python3-pip_19.1.1.bb
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=8ba06d529c955048e5ddd7c45459eb2e"
 
 DEPENDS += "python3 python3-setuptools-native"
 
-SRC_URI[md5sum] = "1c5edb0924a0d7d79f3a2e3df05009b4"
-SRC_URI[sha256sum] = "6e6f197a1abfb45118dbb878b5c859a0edbdd33fd250100bc015b67fded4b9f2"
+SRC_URI[md5sum] = "4fb98a060f21c731d6743b90a714fc73"
+SRC_URI[sha256sum] = "44d3d7d3d30a1eb65c7e5ff1173cdf8f7467850605ac7cc3707b6064bddd0958"
 
 inherit pypi distutils3
 
-- 
2.17.1



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

* [PATCH 22/42] iproute2: upgrade 5.0.0 -> 5.1.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (19 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 21/42] python3-pip: upgrade 19.0.3 -> 19.1.1 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 23/42] pkgconf: upgrade 1.6.0 -> 1.6.1 Alexander Kanavin
                   ` (19 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../iproute2/{iproute2_5.0.0.bb => iproute2_5.1.0.bb}         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-connectivity/iproute2/{iproute2_5.0.0.bb => iproute2_5.1.0.bb} (68%)

diff --git a/meta/recipes-connectivity/iproute2/iproute2_5.0.0.bb b/meta/recipes-connectivity/iproute2/iproute2_5.1.0.bb
similarity index 68%
rename from meta/recipes-connectivity/iproute2/iproute2_5.0.0.bb
rename to meta/recipes-connectivity/iproute2/iproute2_5.1.0.bb
index 8f33c7fe194..6854a130042 100644
--- a/meta/recipes-connectivity/iproute2/iproute2_5.0.0.bb
+++ b/meta/recipes-connectivity/iproute2/iproute2_5.1.0.bb
@@ -5,8 +5,8 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BP}.tar.xz \
            file://0001-libc-compat.h-add-musl-workaround.patch \
           "
 
-SRC_URI[md5sum] = "d22107b4d7cfb999eeb8ad8a0aec1124"
-SRC_URI[sha256sum] = "df047302a39650ef832c07e8dab5df7a23218cd398bd310c8628e386161d20ba"
+SRC_URI[md5sum] = "a2b8349abf4ae00e92155fda22de4d5e"
+SRC_URI[sha256sum] = "dc5a980873eabf6b00c0be976b6e5562b1400d47d1d07d2ac35d5e5acbcf7bcf"
 
 # CFLAGS are computed in Makefile and reference CCOPTS
 #
-- 
2.17.1



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

* [PATCH 23/42] pkgconf: upgrade 1.6.0 -> 1.6.1
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (20 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 22/42] iproute2: upgrade 5.0.0 -> 5.1.0 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 24/42] at-spi2-core: upgrade 2.30.0 -> 2.32.1 Alexander Kanavin
                   ` (18 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../pkgconf/{pkgconf_1.6.0.bb => pkgconf_1.6.1.bb}            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/pkgconf/{pkgconf_1.6.0.bb => pkgconf_1.6.1.bb} (95%)

diff --git a/meta/recipes-devtools/pkgconf/pkgconf_1.6.0.bb b/meta/recipes-devtools/pkgconf/pkgconf_1.6.1.bb
similarity index 95%
rename from meta/recipes-devtools/pkgconf/pkgconf_1.6.0.bb
rename to meta/recipes-devtools/pkgconf/pkgconf_1.6.1.bb
index 1452875f5d8..c60ef74226d 100644
--- a/meta/recipes-devtools/pkgconf/pkgconf_1.6.0.bb
+++ b/meta/recipes-devtools/pkgconf/pkgconf_1.6.1.bb
@@ -21,8 +21,8 @@ SRC_URI = "\
     file://pkg-config-native.in \
     file://pkg-config-esdk.in \
 "
-SRC_URI[md5sum] = "0c93492d7f001e5175b0347b5472e86d"
-SRC_URI[sha256sum] = "6135a3abb576672ba54a899860442ba185063f0f90dae5892f64f7bae8e1ece5"
+SRC_URI[md5sum] = "556bae2b9e0cc7b46e7c00083cb6d95d"
+SRC_URI[sha256sum] = "22b9ee38438901f9d60f180e5182821180854fa738fd071f593ea26a81da208c"
 
 inherit autotools
 
-- 
2.17.1



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

* [PATCH 24/42] at-spi2-core: upgrade 2.30.0 -> 2.32.1
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (21 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 23/42] pkgconf: upgrade 1.6.0 -> 1.6.1 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 17:54   ` Khem Raj
  2019-05-20 14:11 ` [PATCH 25/42] at-spi2-atk: upgrade 2.30.0 -> 2.32.0 Alexander Kanavin
                   ` (17 subsequent siblings)
  40 siblings, 1 reply; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../atk/at-spi2-core/meson-0.50-fix.patch     | 31 -------------------
 ...-core_2.30.0.bb => at-spi2-core_2.32.1.bb} | 12 +++----
 2 files changed, 5 insertions(+), 38 deletions(-)
 delete mode 100644 meta/recipes-support/atk/at-spi2-core/meson-0.50-fix.patch
 rename meta/recipes-support/atk/{at-spi2-core_2.30.0.bb => at-spi2-core_2.32.1.bb} (79%)

diff --git a/meta/recipes-support/atk/at-spi2-core/meson-0.50-fix.patch b/meta/recipes-support/atk/at-spi2-core/meson-0.50-fix.patch
deleted file mode 100644
index fbdf7d0e2ea..00000000000
--- a/meta/recipes-support/atk/at-spi2-core/meson-0.50-fix.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 44a812ea51223d82f21a098a2d45fcc5c329ce7a Mon Sep 17 00:00:00 2001
-From: Tobias Stoeckmann <tobias@stoeckmann.org>
-Date: Tue, 12 Mar 2019 11:46:24 +0100
-Subject: [PATCH] Fix meson.build for meson 0.50.0.
-
-Since meson 0.50.0 it is not possible anymore to specify an
-absolute directory for subdir. To keep current functionality,
-use install_dir instead.
-
-atspi/meson.build:60:0: ERROR: Subdir keyword must not be an absolute path.
-
-Upstream-Status: Backport
-Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
-Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
----
- atspi/meson.build | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/atspi/meson.build b/atspi/meson.build
-index b7a9357..2a6915d 100644
---- a/atspi/meson.build
-+++ b/atspi/meson.build
-@@ -57,7 +57,7 @@ atspi_headers = [
- 
- atspi_includedir = join_paths(get_option('prefix'), get_option('includedir'), 'at-spi-2.0', 'atspi')
- 
--install_headers(atspi_headers, subdir: atspi_includedir)
-+install_headers(atspi_headers, install_dir: atspi_includedir)
- 
- atspi_enums = gnome.mkenums('atspi-enum-types',
-                             sources: [ 'atspi-constants.h', 'atspi-types.h' ],
diff --git a/meta/recipes-support/atk/at-spi2-core_2.30.0.bb b/meta/recipes-support/atk/at-spi2-core_2.32.1.bb
similarity index 79%
rename from meta/recipes-support/atk/at-spi2-core_2.30.0.bb
rename to meta/recipes-support/atk/at-spi2-core_2.32.1.bb
index cfe0ddeef2d..0f84259d942 100644
--- a/meta/recipes-support/atk/at-spi2-core_2.30.0.bb
+++ b/meta/recipes-support/atk/at-spi2-core_2.32.1.bb
@@ -5,12 +5,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=e9f288ba982d60518f375b5898283886"
 
 MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}"
 
-SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz \
-           file://meson-0.50-fix.patch \
-           "
+SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz"
 
-SRC_URI[md5sum] = "d4f22c66b3210ffe6b10d01c04e008b5"
-SRC_URI[sha256sum] = "0175f5393d19da51f4c11462cba4ba6ef3fa042abf1611a70bdfed586b7bfb2b"
+SRC_URI[md5sum] = "998fd9d858f8fa22c4c8c15567bf6254"
+SRC_URI[sha256sum] = "3c2aa937ebfaca2c86569bce9b16a34fbe20d69ef0c58846313b1c42f53b0d53"
 
 X11DEPENDS = "virtual/libx11 libxi libxtst"
 
@@ -22,9 +20,9 @@ inherit meson gtk-doc gettext systemd pkgconfig upstream-version-is-even gobject
 EXTRA_OEMESON = " -Dsystemd_user_dir=${systemd_user_unitdir} \
                   -Ddbus_daemon=${bindir}/dbus-daemon"
 
-GTKDOC_MESON_OPTION = "enable_docs"
+GTKDOC_MESON_OPTION = "docs"
 
-GIR_MESON_OPTION = 'enable-introspection'
+GIR_MESON_OPTION = 'introspection'
 GIR_MESON_ENABLE_FLAG = 'yes'
 GIR_MESON_DISABLE_FLAG = 'no'
 
-- 
2.17.1



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

* [PATCH 25/42] at-spi2-atk: upgrade 2.30.0 -> 2.32.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (22 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 24/42] at-spi2-core: upgrade 2.30.0 -> 2.32.1 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 26/42] glib-networking: upgrade 2.60.1 -> 2.60.2 Alexander Kanavin
                   ` (16 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../atk/{at-spi2-atk_2.30.0.bb => at-spi2-atk_2.32.0.bb}      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/atk/{at-spi2-atk_2.30.0.bb => at-spi2-atk_2.32.0.bb} (80%)

diff --git a/meta/recipes-support/atk/at-spi2-atk_2.30.0.bb b/meta/recipes-support/atk/at-spi2-atk_2.32.0.bb
similarity index 80%
rename from meta/recipes-support/atk/at-spi2-atk_2.30.0.bb
rename to meta/recipes-support/atk/at-spi2-atk_2.32.0.bb
index 2244797071f..8812d33d9a0 100644
--- a/meta/recipes-support/atk/at-spi2-atk_2.30.0.bb
+++ b/meta/recipes-support/atk/at-spi2-atk_2.32.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://wiki.linuxfoundation.org/accessibility/d-bus"
 LICENSE = "LGPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=e9f288ba982d60518f375b5898283886"
 
-SRC_URI[archive.md5sum] = "1ad754b90bcb14244b73ca4d0c14d274"
-SRC_URI[archive.sha256sum] = "e2e1571004ea7b105c969473ce455a95be4038fb2541471714aeb33a26da8a9a"
+SRC_URI[archive.md5sum] = "6a4b27bace3b9352721ed462b95f6291"
+SRC_URI[archive.sha256sum] = "0b51e6d339fa2bcca3a3e3159ccea574c67b107f1ac8b00047fa60e34ce7a45c"
 
 DEPENDS = "dbus glib-2.0 glib-2.0-native atk at-spi2-core libxml2"
 
-- 
2.17.1



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

* [PATCH 26/42] glib-networking: upgrade 2.60.1 -> 2.60.2
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (23 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 25/42] at-spi2-atk: upgrade 2.30.0 -> 2.32.0 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 27/42] libsoup-2.4: upgrade 2.66.1 -> 2.66.2 Alexander Kanavin
                   ` (15 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../{glib-networking_2.60.1.bb => glib-networking_2.60.2.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-core/glib-networking/{glib-networking_2.60.1.bb => glib-networking_2.60.2.bb} (87%)

diff --git a/meta/recipes-core/glib-networking/glib-networking_2.60.1.bb b/meta/recipes-core/glib-networking/glib-networking_2.60.2.bb
similarity index 87%
rename from meta/recipes-core/glib-networking/glib-networking_2.60.1.bb
rename to meta/recipes-core/glib-networking/glib-networking_2.60.2.bb
index 09af229d698..e0910de32e2 100644
--- a/meta/recipes-core/glib-networking/glib-networking_2.60.1.bb
+++ b/meta/recipes-core/glib-networking/glib-networking_2.60.2.bb
@@ -9,8 +9,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
 SECTION = "libs"
 DEPENDS = "glib-2.0"
 
-SRC_URI[archive.md5sum] = "83321ffc3c336894b8a5bc18db3fe58d"
-SRC_URI[archive.sha256sum] = "d71c6b2faa5ac29100314f08a1be020a2afd0291f025614c0af0d17b14435d92"
+SRC_URI[archive.md5sum] = "bf46d1208ac00d78a45fbf621d459025"
+SRC_URI[archive.sha256sum] = "c022f3d10f55a5b7c31676fb001b4cb6401db8ab9f6e8418c69de00d0f268732"
 
 PACKAGECONFIG ??= "gnutls"
 
-- 
2.17.1



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

* [PATCH 27/42] libsoup-2.4: upgrade 2.66.1 -> 2.66.2
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (24 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 26/42] glib-networking: upgrade 2.60.1 -> 2.60.2 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 28/42] x264: upgrade to latest revision Alexander Kanavin
                   ` (14 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../libsoup/{libsoup-2.4_2.66.1.bb => libsoup-2.4_2.66.2.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/libsoup/{libsoup-2.4_2.66.1.bb => libsoup-2.4_2.66.2.bb} (90%)

diff --git a/meta/recipes-support/libsoup/libsoup-2.4_2.66.1.bb b/meta/recipes-support/libsoup/libsoup-2.4_2.66.2.bb
similarity index 90%
rename from meta/recipes-support/libsoup/libsoup-2.4_2.66.1.bb
rename to meta/recipes-support/libsoup/libsoup-2.4_2.66.2.bb
index f0043f80b3e..c4715a04125 100644
--- a/meta/recipes-support/libsoup/libsoup-2.4_2.66.1.bb
+++ b/meta/recipes-support/libsoup/libsoup-2.4_2.66.2.bb
@@ -12,8 +12,8 @@ SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}"
 SRC_URI = "${GNOME_MIRROR}/libsoup/${SHRT_VER}/libsoup-${PV}.tar.xz \
            file://0001-Do-not-enforce-no-introspection-when-cross-building.patch \
            "
-SRC_URI[md5sum] = "5f04c09a06f6dbe4c4d3f003992145ce"
-SRC_URI[sha256sum] = "4a2cb6c1174540af13661636035992c2b179dfcb39f4d3fa7bee3c7e355c43ff"
+SRC_URI[md5sum] = "66c2ae89d6031b01337d78a2c57c75d5"
+SRC_URI[sha256sum] = "bd2ea602eba642509672812f3c99b77cbec2f3de02ba1cc8cb7206bf7de0ae2a"
 
 S = "${WORKDIR}/libsoup-${PV}"
 
-- 
2.17.1



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

* [PATCH 28/42] x264: upgrade to latest revision
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (25 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 27/42] libsoup-2.4: upgrade 2.66.1 -> 2.66.2 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 29/42] linux-firmware: " Alexander Kanavin
                   ` (13 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

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

diff --git a/meta/recipes-multimedia/x264/x264_git.bb b/meta/recipes-multimedia/x264/x264_git.bb
index 34c7dc4f789..f22930a0ee2 100644
--- a/meta/recipes-multimedia/x264/x264_git.bb
+++ b/meta/recipes-multimedia/x264/x264_git.bb
@@ -14,7 +14,7 @@ SRC_URI = "git://github.com/mirror/x264;branch=stable \
            "
 UPSTREAM_CHECK_COMMITS = "1"
 
-SRCREV = "0a84d986e7020f8344f00752e3600b9769cc1e85"
+SRCREV = "72db437770fd1ce3961f624dd57a8e75ff65ae0b"
 
 PV = "r2917+git${SRCPV}"
 
-- 
2.17.1



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

* [PATCH 29/42] linux-firmware: upgrade to latest revision
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (26 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 28/42] x264: upgrade to latest revision Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 17:56   ` Khem Raj
  2019-05-20 14:11 ` [PATCH 30/42] python3-pbr: upgrade 5.1.3 -> 5.2.0 Alexander Kanavin
                   ` (12 subsequent siblings)
  40 siblings, 1 reply; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../linux-firmware/linux-firmware_git.bb      | 128 +++++++++---------
 1 file changed, 65 insertions(+), 63 deletions(-)

diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
index ad7babf7aa4..8b6ad96dba4 100644
--- a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
+++ b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
@@ -7,6 +7,7 @@ LICENSE = "\
     & Firmware-agere \
     & Firmware-amdgpu \
     & Firmware-amd-ucode \
+    & Firmware-amlogic_vdec \
     & Firmware-atheros_firmware \
     & Firmware-atmel \
     & Firmware-broadcom_bcm43xx \
@@ -62,68 +63,68 @@ LICENSE = "\
     & WHENCE \
 "
 
-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.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
-    file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
-    file://LICENSE.atmel;md5=aa74ac0c60595dee4d4e239107ea77a3 \
-    file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc \
-    file://LICENCE.ca0132;md5=209b33e66ee5be0461f13d31da392198 \
-    file://LICENCE.cadence;md5=009f46816f6956cfb75ede13d3e1cee0 \
-    file://LICENCE.cavium;md5=c37aaffb1ebe5939b2580d073a95daea \
-    file://LICENCE.chelsio_firmware;md5=819aa8c3fa453f1b258ed8d168a9d903 \
-    file://LICENCE.cw1200;md5=f0f770864e7a8444a5c5aa9d12a3a7ed \
-    file://LICENCE.cypress;md5=48cd9436c763bf873961f9ed7b5c147b \
-    file://LICENSE.dib0700;md5=f7411825c8a555a1a3e5eab9ca773431 \
-    file://LICENCE.e100;md5=ec0f84136766df159a3ae6d02acdf5a8 \
-    file://LICENCE.ene_firmware;md5=ed67f0f62f8f798130c296720b7d3921 \
-    file://LICENCE.fw_sst_0f28;md5=6353931c988ad52818ae733ac61cd293 \
-    file://LICENCE.go7007;md5=c0bb9f6aaaba55b0529ee9b30aa66beb \
-    file://GPL-2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
-    file://LICENSE.hfi1_firmware;md5=5e7b6e586ce7339d12689e49931ad444 \
-    file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
-    file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
-    file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
-    file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
-    file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
-    file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
-    file://LICENCE.kaweth;md5=b1d876e562f4b3b8d391ad8395dfe03f \
-    file://LICENCE.Marvell;md5=9ddea1734a4baf3c78d845151f42a37a \
-    file://LICENCE.mediatek;md5=7c1976b63217d76ce47d0a11d8a79cf2 \
-    file://LICENCE.moxa;md5=1086614767d8ccf744a923289d3d4261 \
-    file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
-    file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
-    file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
-    file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
-    file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837 \
-    file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
-    file://LICENCE.qat_firmware;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
-    file://LICENSE.qcom;md5=164e3362a538eb11d3ac51e8e134294b \
-    file://LICENCE.qla1280;md5=d6895732e622d950609093223a2c4f5d \
-    file://LICENCE.qla2xxx;md5=505855e921b75f1be4a437ad9b79dff0 \
-    file://LICENSE.QualcommAtheros_ar3k;md5=b5fe244fb2b532311de1472a3bc06da5 \
-    file://LICENSE.QualcommAtheros_ath10k;md5=cb42b686ee5f5cb890275e4321db60a8 \
-    file://LICENCE.r8a779x_usb3;md5=4c1671656153025d7076105a5da7e498 \
-    file://LICENSE.radeon;md5=68ec28bacb3613200bca44f404c69b16 \
-    file://LICENCE.ralink_a_mediatek_company_firmware;md5=728f1a85fd53fd67fa8d7afb080bc435 \
-    file://LICENCE.ralink-firmware.txt;md5=ab2c269277c45476fb449673911a2dfd \
-    file://LICENCE.rtlwifi_firmware.txt;md5=00d06cfd3eddd5a2698948ead2ad54a5 \
-    file://LICENSE.sdma_firmware;md5=51e8c19ecc2270f4b8ea30341ad63ce9 \
-    file://LICENCE.siano;md5=4556c1bf830067f12ca151ad953ec2a5 \
-    file://LICENCE.tda7706-firmware.txt;md5=835997cf5e3c131d0dddd695c7d9103e \
-    file://LICENCE.ti-connectivity;md5=c5e02be633f1499c109d1652514d85ec \
-    file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c \
-    file://LICENCE.ueagle-atm4-firmware;md5=4ed7ea6b507ccc583b9d594417714118 \
-    file://LICENCE.via_vt6656;md5=e4159694cba42d4377a912e78a6e850f \
-    file://LICENCE.wl1251;md5=ad3f81922bb9e197014bb187289d3b5b \
-    file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
-    file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
-    file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
-    file://WHENCE;md5=ef36d3383becd18f36ce32d84109386f \
-"
+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.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
+                    file://LICENSE.amlogic_vdec;md5=dc44f59bf64a81643e500ad3f39a468a \
+                    file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
+                    file://LICENSE.atmel;md5=aa74ac0c60595dee4d4e239107ea77a3 \
+                    file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc \
+                    file://LICENCE.ca0132;md5=209b33e66ee5be0461f13d31da392198 \
+                    file://LICENCE.cadence;md5=009f46816f6956cfb75ede13d3e1cee0 \
+                    file://LICENCE.cavium;md5=c37aaffb1ebe5939b2580d073a95daea \
+                    file://LICENCE.chelsio_firmware;md5=819aa8c3fa453f1b258ed8d168a9d903 \
+                    file://LICENCE.cw1200;md5=f0f770864e7a8444a5c5aa9d12a3a7ed \
+                    file://LICENCE.cypress;md5=48cd9436c763bf873961f9ed7b5c147b \
+                    file://LICENSE.dib0700;md5=f7411825c8a555a1a3e5eab9ca773431 \
+                    file://LICENCE.e100;md5=ec0f84136766df159a3ae6d02acdf5a8 \
+                    file://LICENCE.ene_firmware;md5=ed67f0f62f8f798130c296720b7d3921 \
+                    file://LICENCE.fw_sst_0f28;md5=6353931c988ad52818ae733ac61cd293 \
+                    file://LICENCE.go7007;md5=c0bb9f6aaaba55b0529ee9b30aa66beb \
+                    file://GPL-2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
+                    file://LICENSE.hfi1_firmware;md5=5e7b6e586ce7339d12689e49931ad444 \
+                    file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
+                    file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
+                    file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
+                    file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
+                    file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
+                    file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
+                    file://LICENCE.kaweth;md5=b1d876e562f4b3b8d391ad8395dfe03f \
+                    file://LICENCE.Marvell;md5=9ddea1734a4baf3c78d845151f42a37a \
+                    file://LICENCE.mediatek;md5=7c1976b63217d76ce47d0a11d8a79cf2 \
+                    file://LICENCE.moxa;md5=1086614767d8ccf744a923289d3d4261 \
+                    file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
+                    file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
+                    file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
+                    file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
+                    file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837 \
+                    file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
+                    file://LICENCE.qat_firmware;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
+                    file://LICENSE.qcom;md5=164e3362a538eb11d3ac51e8e134294b \
+                    file://LICENCE.qla1280;md5=d6895732e622d950609093223a2c4f5d \
+                    file://LICENCE.qla2xxx;md5=505855e921b75f1be4a437ad9b79dff0 \
+                    file://LICENSE.QualcommAtheros_ar3k;md5=b5fe244fb2b532311de1472a3bc06da5 \
+                    file://LICENSE.QualcommAtheros_ath10k;md5=cb42b686ee5f5cb890275e4321db60a8 \
+                    file://LICENCE.r8a779x_usb3;md5=4c1671656153025d7076105a5da7e498 \
+                    file://LICENSE.radeon;md5=68ec28bacb3613200bca44f404c69b16 \
+                    file://LICENCE.ralink_a_mediatek_company_firmware;md5=728f1a85fd53fd67fa8d7afb080bc435 \
+                    file://LICENCE.ralink-firmware.txt;md5=ab2c269277c45476fb449673911a2dfd \
+                    file://LICENCE.rtlwifi_firmware.txt;md5=00d06cfd3eddd5a2698948ead2ad54a5 \
+                    file://LICENSE.sdma_firmware;md5=51e8c19ecc2270f4b8ea30341ad63ce9 \
+                    file://LICENCE.siano;md5=4556c1bf830067f12ca151ad953ec2a5 \
+                    file://LICENCE.tda7706-firmware.txt;md5=835997cf5e3c131d0dddd695c7d9103e \
+                    file://LICENCE.ti-connectivity;md5=c5e02be633f1499c109d1652514d85ec \
+                    file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c \
+                    file://LICENCE.ueagle-atm4-firmware;md5=4ed7ea6b507ccc583b9d594417714118 \
+                    file://LICENCE.via_vt6656;md5=e4159694cba42d4377a912e78a6e850f \
+                    file://LICENCE.wl1251;md5=ad3f81922bb9e197014bb187289d3b5b \
+                    file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
+                    file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
+                    file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
+                    file://WHENCE;md5=b6e44adf71bc37e5f26ebfe5a08b5490 \
+                    "
 
 # These are not common licenses, set NO_GENERIC_LICENSE for them
 # so that the license files will be copied from fetched source
@@ -132,6 +133,7 @@ NO_GENERIC_LICENSE[Firmware-adsp_sst] = "LICENCE.adsp_sst"
 NO_GENERIC_LICENSE[Firmware-agere] = "LICENCE.agere"
 NO_GENERIC_LICENSE[Firmware-amdgpu] = "LICENSE.amdgpu"
 NO_GENERIC_LICENSE[Firmware-amd-ucode] = "LICENSE.amd-ucode"
+NO_GENERIC_LICENSE[Firmware-amlogic_vdec] = "LICENSE.amlogic_vdec"
 NO_GENERIC_LICENSE[Firmware-atheros_firmware] = "LICENCE.atheros_firmware"
 NO_GENERIC_LICENSE[Firmware-atmel] = "LICENSE.atmel"
 NO_GENERIC_LICENSE[Firmware-broadcom_bcm43xx] = "LICENCE.broadcom_bcm43xx"
@@ -188,7 +190,7 @@ NO_GENERIC_LICENSE[Firmware-xc5000] = "LICENCE.xc5000"
 NO_GENERIC_LICENSE[Firmware-xc5000c] = "LICENCE.xc5000c"
 NO_GENERIC_LICENSE[WHENCE] = "WHENCE"
 
-SRCREV = "7bc246451318b3536d9bfd3c4e46d541a9831b33"
+SRCREV = "711d3297bac870af42088a467459a0634c1970ca"
 PE = "1"
 PV = "0.0+git${SRCPV}"
 
-- 
2.17.1



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

* [PATCH 30/42] python3-pbr: upgrade 5.1.3 -> 5.2.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (27 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 29/42] linux-firmware: " Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 31/42] bash-completion: upgrade 2.8 -> 2.9 Alexander Kanavin
                   ` (11 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-devtools/python/python3-pbr_5.1.3.bb | 5 -----
 meta/recipes-devtools/python/python3-pbr_5.2.0.bb | 5 +++++
 2 files changed, 5 insertions(+), 5 deletions(-)
 delete mode 100644 meta/recipes-devtools/python/python3-pbr_5.1.3.bb
 create mode 100644 meta/recipes-devtools/python/python3-pbr_5.2.0.bb

diff --git a/meta/recipes-devtools/python/python3-pbr_5.1.3.bb b/meta/recipes-devtools/python/python3-pbr_5.1.3.bb
deleted file mode 100644
index d9b6ce74a34..00000000000
--- a/meta/recipes-devtools/python/python3-pbr_5.1.3.bb
+++ /dev/null
@@ -1,5 +0,0 @@
-inherit setuptools3
-require python-pbr.inc
-SRC_URI[md5sum] = "08972dca5fd2a959f27842090973edd6"
-SRC_URI[sha256sum] = "8c361cc353d988e4f5b998555c88098b9d5964c2e11acf7b0d21925a66bb5824"
-
diff --git a/meta/recipes-devtools/python/python3-pbr_5.2.0.bb b/meta/recipes-devtools/python/python3-pbr_5.2.0.bb
new file mode 100644
index 00000000000..ed6832e4afe
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-pbr_5.2.0.bb
@@ -0,0 +1,5 @@
+inherit setuptools3
+require python-pbr.inc
+SRC_URI[md5sum] = "2bca008fd08d035a2f78c606d876a6db"
+SRC_URI[sha256sum] = "d950c64aeea5456bbd147468382a5bb77fe692c13c9f00f0219814ce5b642755"
+
-- 
2.17.1



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

* [PATCH 31/42] bash-completion: upgrade 2.8 -> 2.9
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (28 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 30/42] python3-pbr: upgrade 5.1.3 -> 5.2.0 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 32/42] libdnf: upgrade 0.28.1 -> 0.33.0 Alexander Kanavin
                   ` (10 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Delete the deletion of files, as they are no longer included in bash-completion
(util-linux provides them).

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../{bash-completion_2.8.bb => bash-completion_2.9.bb}   | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)
 rename meta/recipes-support/bash-completion/{bash-completion_2.8.bb => bash-completion_2.9.bb} (78%)

diff --git a/meta/recipes-support/bash-completion/bash-completion_2.8.bb b/meta/recipes-support/bash-completion/bash-completion_2.9.bb
similarity index 78%
rename from meta/recipes-support/bash-completion/bash-completion_2.8.bb
rename to meta/recipes-support/bash-completion/bash-completion_2.9.bb
index 85064343e30..cd2c4cbba80 100644
--- a/meta/recipes-support/bash-completion/bash-completion_2.8.bb
+++ b/meta/recipes-support/bash-completion/bash-completion_2.9.bb
@@ -9,8 +9,8 @@ SECTION = "console/utils"
 
 SRC_URI = "https://github.com/scop/bash-completion/releases/download/${PV}/${BPN}-${PV}.tar.xz"
 
-SRC_URI[md5sum] = "201b6ae62f7d5fb5b1b25e34427db919"
-SRC_URI[sha256sum] = "c01f5570f5698a0dda8dc9cfb2a83744daa1ec54758373a6e349bd903375f54d"
+SRC_URI[md5sum] = "60139333b25c4d54ad40323b701be130"
+SRC_URI[sha256sum] = "d48fe378e731062f479c5f8802ffa9d3c40a275a19e6e0f6f6cc4b90fa12b2f5"
 UPSTREAM_CHECK_REGEX = "bash-completion-(?P<pver>(?!2008).+)\.tar"
 UPSTREAM_CHECK_URI = "https://github.com/scop/bash-completion/releases"
 
@@ -23,11 +23,6 @@ do_install_append() {
 	install -d ${D}${sysconfdir}/bash_completion.d/
 	echo '. ${datadir}/${BPN}/bash_completion' >${D}${sysconfdir}/bash_completion
 
-	# Delete files already provided by util-linux
-	local i
-	for i in mount umount; do
-		rm ${D}${datadir}/${BPN}/completions/$i
-	done
 }
 
 RDEPENDS_${PN} = "bash"
-- 
2.17.1



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

* [PATCH 32/42] libdnf: upgrade 0.28.1 -> 0.33.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (29 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 31/42] bash-completion: upgrade 2.8 -> 2.9 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-21 18:44   ` Richard Purdie
  2019-05-20 14:11 ` [PATCH 33/42] gst-examples: upgrade to 1.16.0 Alexander Kanavin
                   ` (9 subsequent siblings)
  40 siblings, 1 reply; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../libdnf/{libdnf_0.28.1.bb => libdnf_0.33.0.bb}               | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/libdnf/{libdnf_0.28.1.bb => libdnf_0.33.0.bb} (95%)

diff --git a/meta/recipes-devtools/libdnf/libdnf_0.28.1.bb b/meta/recipes-devtools/libdnf/libdnf_0.33.0.bb
similarity index 95%
rename from meta/recipes-devtools/libdnf/libdnf_0.28.1.bb
rename to meta/recipes-devtools/libdnf/libdnf_0.33.0.bb
index 4ff294c32cb..8915ba69164 100644
--- a/meta/recipes-devtools/libdnf/libdnf_0.28.1.bb
+++ b/meta/recipes-devtools/libdnf/libdnf_0.33.0.bb
@@ -9,7 +9,7 @@ SRC_URI = "git://github.com/rpm-software-management/libdnf \
            file://0001-Add-WITH_TESTS-option.patch \
            "
 
-SRCREV = "751f89045b80d58c0d05800f74357cf78cdf7e77"
+SRCREV = "51c7a70833a0f2e5ce7623fa0c7c10adc73bc4b4"
 
 S = "${WORKDIR}/git"
 
-- 
2.17.1



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

* [PATCH 33/42] gst-examples: upgrade to 1.16.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (30 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 32/42] libdnf: upgrade 0.28.1 -> 0.33.0 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 34/42] acpica: upgrade 20190405 -> 20190509 Alexander Kanavin
                   ` (8 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Upstream has started to tag releases, so drop UPSTREAM_CHECK_COMMITS

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-multimedia/gstreamer/gst-examples_git.bb | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-multimedia/gstreamer/gst-examples_git.bb b/meta/recipes-multimedia/gstreamer/gst-examples_git.bb
index 75ac9b75c13..f2a3afbbfe3 100644
--- a/meta/recipes-multimedia/gstreamer/gst-examples_git.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-examples_git.bb
@@ -6,11 +6,11 @@ DEPENDS = "glib-2.0 gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-
 
 SRC_URI = "git://gitlab.freedesktop.org/gstreamer/gst-examples.git;protocol=https \
            file://0001-Make-player-examples-installable.patch \
-           file://gst-player.desktop"
+           file://gst-player.desktop \
+           "
 
-SRCREV = "2b3fc175c252cd5a537e4b2864b572a8372473d6"
-PV = "0.0.1+git${SRCPV}"
-UPSTREAM_CHECK_COMMITS = "1"
+SRCREV = "d953c127c1146b50d5676618299933950685dcd7"
+PV = "1.16.0"
 
 S = "${WORKDIR}/git"
 
-- 
2.17.1



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

* [PATCH 34/42] acpica: upgrade 20190405 -> 20190509
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (31 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 33/42] gst-examples: upgrade to 1.16.0 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 35/42] freetype: upgrade 2.9.1 -> 2.10.0 Alexander Kanavin
                   ` (7 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../acpica/{acpica_20190405.bb => acpica_20190509.bb}         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/acpica/{acpica_20190405.bb => acpica_20190509.bb} (91%)

diff --git a/meta/recipes-extended/acpica/acpica_20190405.bb b/meta/recipes-extended/acpica/acpica_20190509.bb
similarity index 91%
rename from meta/recipes-extended/acpica/acpica_20190405.bb
rename to meta/recipes-extended/acpica/acpica_20190509.bb
index 25ad7ce31c9..cf6db336a6f 100644
--- a/meta/recipes-extended/acpica/acpica_20190405.bb
+++ b/meta/recipes-extended/acpica/acpica_20190509.bb
@@ -17,8 +17,8 @@ COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux"
 DEPENDS = "bison flex bison-native"
 
 SRC_URI = "https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz"
-SRC_URI[md5sum] = "9ee30c8ff3012e213bc3b21a9d632215"
-SRC_URI[sha256sum] = "7e144fd011c23a0a10be0b0d7448c527a4c0f621f1f835a271636e448bc96643"
+SRC_URI[md5sum] = "dd1f8240f924b12b0a0de0c31ab26ab1"
+SRC_URI[sha256sum] = "860b5f94a0590b278592acf16a4556b05ff0309c08e8c48aa29827cfa02c8e9d"
 UPSTREAM_CHECK_URI = "https://acpica.org/downloads"
 
 S = "${WORKDIR}/acpica-unix2-${PV}"
-- 
2.17.1



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

* [PATCH 35/42] freetype: upgrade 2.9.1 -> 2.10.0
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (32 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 34/42] acpica: upgrade 20190405 -> 20190509 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 36/42] dnf: upgrade 4.2.2 -> 4.2.6 Alexander Kanavin
                   ` (6 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../freetype/{freetype_2.9.1.bb => freetype_2.10.0.bb}        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/freetype/{freetype_2.9.1.bb => freetype_2.10.0.bb} (93%)

diff --git a/meta/recipes-graphics/freetype/freetype_2.9.1.bb b/meta/recipes-graphics/freetype/freetype_2.10.0.bb
similarity index 93%
rename from meta/recipes-graphics/freetype/freetype_2.9.1.bb
rename to meta/recipes-graphics/freetype/freetype_2.10.0.bb
index 1e6f66ee9ff..200f43c21be 100644
--- a/meta/recipes-graphics/freetype/freetype_2.9.1.bb
+++ b/meta/recipes-graphics/freetype/freetype_2.10.0.bb
@@ -19,8 +19,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/freetype/freetype-${PV}.tar.bz2 \
 UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/freetype/files/freetype2/"
 UPSTREAM_CHECK_REGEX = "freetype-(?P<pver>\d+(\.\d+)+)"
 
-SRC_URI[md5sum] = "60ef7d8160cd4bf8cb118ee9d65367ca"
-SRC_URI[sha256sum] = "db8d87ea720ea9d5edc5388fc7a0497bb11ba9fe972245e0f7f4c7e8b1e1e84d"
+SRC_URI[md5sum] = "a717e6925b61b9dda946322ecd278a42"
+SRC_URI[sha256sum] = "fccc62928c65192fff6c98847233b28eb7ce05f12d2fea3f6cc90e8b4e5fbe06"
 
 inherit autotools pkgconfig multilib_header
 
-- 
2.17.1



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

* [PATCH 36/42] dnf: upgrade 4.2.2 -> 4.2.6
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (33 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 35/42] freetype: upgrade 2.9.1 -> 2.10.0 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 37/42] usbutils: upgrade 010->012 Alexander Kanavin
                   ` (5 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-devtools/dnf/{dnf_4.2.2.bb => dnf_4.2.6.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/dnf/{dnf_4.2.2.bb => dnf_4.2.6.bb} (98%)

diff --git a/meta/recipes-devtools/dnf/dnf_4.2.2.bb b/meta/recipes-devtools/dnf/dnf_4.2.6.bb
similarity index 98%
rename from meta/recipes-devtools/dnf/dnf_4.2.2.bb
rename to meta/recipes-devtools/dnf/dnf_4.2.6.bb
index c77773332c1..769aa001707 100644
--- a/meta/recipes-devtools/dnf/dnf_4.2.2.bb
+++ b/meta/recipes-devtools/dnf/dnf_4.2.6.bb
@@ -12,7 +12,7 @@ SRC_URI = "git://github.com/rpm-software-management/dnf.git \
            file://0030-Run-python-scripts-using-env.patch \
            "
 
-SRCREV = "9947306a55271b8b7c9e2b6e3b7d582885b6045d"
+SRCREV = "30fa5051fc26f9866a271fbdb768d3c2524706d5"
 UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
 
 S = "${WORKDIR}/git"
-- 
2.17.1



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

* [PATCH 37/42] usbutils: upgrade 010->012
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (34 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 36/42] dnf: upgrade 4.2.2 -> 4.2.6 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 38/42] gnu-config: Update to latest SHA Alexander Kanavin
                   ` (4 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...usb-devices-avoid-dependency-on-bash.patch | 30 -------------------
 .../{usbutils_010.bb => usbutils_012.bb}      |  5 ++--
 2 files changed, 2 insertions(+), 33 deletions(-)
 delete mode 100644 meta/recipes-bsp/usbutils/usbutils/usb-devices-avoid-dependency-on-bash.patch
 rename meta/recipes-bsp/usbutils/{usbutils_010.bb => usbutils_012.bb} (83%)

diff --git a/meta/recipes-bsp/usbutils/usbutils/usb-devices-avoid-dependency-on-bash.patch b/meta/recipes-bsp/usbutils/usbutils/usb-devices-avoid-dependency-on-bash.patch
deleted file mode 100644
index 7edff2614a8..00000000000
--- a/meta/recipes-bsp/usbutils/usbutils/usb-devices-avoid-dependency-on-bash.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Upstream-Status: Backport (https://github.com/gregkh/usbutils/commit/508d1acf42e1bfd470c6bf1a188574c69c20aeed)
-Signed-off-by: Ross Burton <ross.burton@intel.com>
-
-From 1c9162a5b30550aec8fa163906067bc179291b57 Mon Sep 17 00:00:00 2001
-From: Ross Burton <ross.burton@intel.com>
-Date: Fri, 27 Jul 2018 15:28:34 +0100
-Subject: [PATCH] usb-devices: use /bin/sh
-
-This script doesn't use any bashisms, so change the hashbang to /bin/sh.
-
-Fixes #73.
-
-Signed-off-by: Ross Burton <ross.burton@intel.com>
----
- usb-devices | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/usb-devices b/usb-devices
-index afb4217..89d1b7d 100755
---- a/usb-devices
-+++ b/usb-devices
-@@ -1,4 +1,4 @@
--#!/bin/bash
-+#!/bin/sh
- # SPDX-License-Identifier: GPL-2.0+
- #
- # Copyright (c) 2009 Greg Kroah-Hartman <greg@kroah.com>
--- 
-2.11.0
-
diff --git a/meta/recipes-bsp/usbutils/usbutils_010.bb b/meta/recipes-bsp/usbutils/usbutils_012.bb
similarity index 83%
rename from meta/recipes-bsp/usbutils/usbutils_010.bb
rename to meta/recipes-bsp/usbutils/usbutils_012.bb
index e6d05b8e87c..0213e7af63d 100644
--- a/meta/recipes-bsp/usbutils/usbutils_010.bb
+++ b/meta/recipes-bsp/usbutils/usbutils_012.bb
@@ -11,10 +11,9 @@ LIC_FILES_CHKSUM = "file://lsusb.c;endline=1;md5=7d4861d978ff5ba7cb2b319ed1d4afe
 DEPENDS = "libusb1 virtual/libiconv udev"
 
 SRC_URI = "${KERNELORG_MIRROR}/linux/utils/usb/usbutils/usbutils-${PV}.tar.gz \
-           file://usb-devices-avoid-dependency-on-bash.patch \
           "
-SRC_URI[md5sum] = "5eb2d2d68f9ed6dc3e9659a5988f7ed6"
-SRC_URI[sha256sum] = "881ba47fb2df10c3ba54a4cd6755a90377180890788e476f99d480ea9bc8bb58"
+SRC_URI[md5sum] = "7484445cbcf04b3eacac892fe58f8d9f"
+SRC_URI[sha256sum] = "ae2e10aad530d95839b6f4d46cd41715eae6f0f1789310d793e9be21b3e7ae20"
 
 inherit autotools pkgconfig distro_features_check update-alternatives
 
-- 
2.17.1



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

* [PATCH 38/42] gnu-config: Update to latest SHA
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (35 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 37/42] usbutils: upgrade 010->012 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 39/42] vim: Rework things so vim adds features not vim-tiny removes Alexander Kanavin
                   ` (3 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

From: Alistair Francis <alistair.francis@wdc.com>

Signed-off-by: Alistair Francis <alistair.francis@wdc.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 e597ebedbc1..1630c128235 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 = "058639be227bbe8f03cc39f79f7ce84918012143"
-PV = "20181128+git${SRCPV}"
+SRCREV = "b98424c249119b79d3f709e26eb86f2fd4d5e5f3"
+PV = "20190501+git${SRCPV}"
 
 SRC_URI = "git://git.savannah.gnu.org/config.git \
            file://gnu-configize.in"
-- 
2.17.1



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

* [PATCH 39/42] vim: Rework things so vim adds features not vim-tiny removes
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (36 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 38/42] gnu-config: Update to latest SHA Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 40/42] webkitgtk: update to 2.24.2 Alexander Kanavin
                   ` (2 subsequent siblings)
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core; +Cc: Tom Rini

From: Tom Rini <trini@konsulko.com>

Now that we have a common inc file for both vim and vim-tiny move a few
bits of logic out of vim.inc and in to vim_$VER.bb so that vim adds
things rather than vim-tiny removes them.

Suggested-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 meta/recipes-support/vim/vim-tiny_8.1.1240.bb | 3 ---
 meta/recipes-support/vim/vim.inc              | 8 +-------
 meta/recipes-support/vim/vim_8.1.1240.bb      | 9 +++++++++
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/meta/recipes-support/vim/vim-tiny_8.1.1240.bb b/meta/recipes-support/vim/vim-tiny_8.1.1240.bb
index 139e626e444..e4c26d23f69 100644
--- a/meta/recipes-support/vim/vim-tiny_8.1.1240.bb
+++ b/meta/recipes-support/vim/vim-tiny_8.1.1240.bb
@@ -2,9 +2,6 @@ require vim.inc
 
 SUMMARY += " (with tiny features)"
 
-PROVIDES_remove = "xxd"
-ALTERNATIVE_${PN}_remove = "xxd"
-
 PACKAGECONFIG += "tiny"
 
 do_install() {
diff --git a/meta/recipes-support/vim/vim.inc b/meta/recipes-support/vim/vim.inc
index f5c74684bfa..433f2334482 100644
--- a/meta/recipes-support/vim/vim.inc
+++ b/meta/recipes-support/vim/vim.inc
@@ -1,7 +1,6 @@
 SUMMARY = "Vi IMproved - enhanced vi editor"
 SECTION = "console/utils"
 
-PROVIDES = "xxd"
 DEPENDS = "ncurses gettext-native"
 # vimdiff doesn't like busybox diff
 RSUGGESTS_${PN} = "diffutils"
@@ -52,7 +51,6 @@ PACKAGECONFIG += " \
     ${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)} \
     ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 gtkgui', '', d)} \
 "
-PACKAGECONFIG_class-native = ""
 
 PACKAGECONFIG[gtkgui] = "--enable-gui=gtk2,--enable-gui=no,gtk+,"
 PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl,"
@@ -130,12 +128,8 @@ RDEPENDS_${BPN} = "ncurses-terminfo-base"
 # Recommend that runtime data is installed along with vim
 RRECOMMENDS_${BPN} = "${PN}-syntax ${PN}-help ${PN}-tutor ${PN}-vimrc ${PN}-common"
 
-ALTERNATIVE_${PN} = "vi vim xxd"
+ALTERNATIVE_${PN} = "vi vim"
 ALTERNATIVE_PRIORITY = "100"
 ALTERNATIVE_TARGET = "${bindir}/${BPN}.${BPN}"
 ALTERNATIVE_LINK_NAME[vi] = "${base_bindir}/vi"
 ALTERNATIVE_LINK_NAME[vim] = "${bindir}/vim"
-ALTERNATIVE_TARGET[xxd] = "${bindir}/xxd"
-ALTERNATIVE_LINK_NAME[xxd] = "${bindir}/xxd"
-
-BBCLASSEXTEND = "native"
diff --git a/meta/recipes-support/vim/vim_8.1.1240.bb b/meta/recipes-support/vim/vim_8.1.1240.bb
index baaaacc0b77..60946a181f4 100644
--- a/meta/recipes-support/vim/vim_8.1.1240.bb
+++ b/meta/recipes-support/vim/vim_8.1.1240.bb
@@ -1 +1,10 @@
 require vim.inc
+
+PROVIDES = "xxd"
+
+PACKAGECONFIG_class-native = ""
+BBCLASSEXTEND = "native"
+
+ALTERNATIVE_${PN}_append = " xxd"
+ALTERNATIVE_TARGET[xxd] = "${bindir}/xxd"
+ALTERNATIVE_LINK_NAME[xxd] = "${bindir}/xxd"
-- 
2.17.1



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

* [PATCH 40/42] webkitgtk: update to 2.24.2
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (37 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 39/42] vim: Rework things so vim adds features not vim-tiny removes Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 41/42] epiphany: update to 3.32.2 Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 42/42] btrfs-tools: update to 5.1 Alexander Kanavin
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Add a patch to address a missing format string error.

Drop the x86-specifc setting for GSTREAMER_GL as it is no longer needed.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 ...streamer-add-a-missing-format-string.patch | 24 +++++++++++++++++++
 ...ebkitgtk_2.24.0.bb => webkitgtk_2.24.2.bb} |  9 +++----
 2 files changed, 27 insertions(+), 6 deletions(-)
 create mode 100644 meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch
 rename meta/recipes-sato/webkit/{webkitgtk_2.24.0.bb => webkitgtk_2.24.2.bb} (94%)

diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch b/meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch
new file mode 100644
index 00000000000..bd4ac1e3538
--- /dev/null
+++ b/meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch
@@ -0,0 +1,24 @@
+From 2d9687840b97186b80053dd262209e39455ac876 Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex.kanavin@gmail.com>
+Date: Wed, 8 May 2019 15:31:23 +0200
+Subject: [PATCH] gstreamer: add a missing format string
+
+Upstream-Status: Pending
+Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
+---
+ .../platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp    | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp b/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp
+index e1e497ee..483fd65c 100644
+--- a/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp
++++ b/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp
+@@ -738,7 +738,7 @@ static GstStateChangeReturn webKitWebSrcChangeState(GstElement* element, GstStat
+     WebKitWebSrc* src = WEBKIT_WEB_SRC(element);
+ 
+ #if GST_CHECK_VERSION(1, 14, 0)
+-    GST_DEBUG_OBJECT(src, gst_state_change_get_name(transition));
++    GST_DEBUG_OBJECT(src, "%s", gst_state_change_get_name(transition));
+ #endif
+     switch (transition) {
+     case GST_STATE_CHANGE_READY_TO_NULL:
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.24.0.bb b/meta/recipes-sato/webkit/webkitgtk_2.24.2.bb
similarity index 94%
rename from meta/recipes-sato/webkit/webkitgtk_2.24.0.bb
rename to meta/recipes-sato/webkit/webkitgtk_2.24.2.bb
index 96ac5ac18f3..056334fff5e 100644
--- a/meta/recipes-sato/webkit/webkitgtk_2.24.0.bb
+++ b/meta/recipes-sato/webkit/webkitgtk_2.24.2.bb
@@ -23,10 +23,11 @@ SRC_URI = "http://www.webkitgtk.org/releases/${BPN}-${PV}.tar.xz \
            file://include_array.patch \
            file://narrowing.patch \
            file://snprintf.patch \
+           file://0001-gstreamer-add-a-missing-format-string.patch \
            "
 
-SRC_URI[md5sum] = "576d69c598b3e36c73441052d02466de"
-SRC_URI[sha256sum] = "2e4ad1503fe482ceb5a83cf70ac9cd42f37eb718555a4d6844fe4c59a9214407"
+SRC_URI[md5sum] = "83012998e1b9f71abb37d8baf6f9c7e6"
+SRC_URI[sha256sum] = "019cb1f0d05bf6148b72c7a85734bcd006388a1c14132843ef9a1b2cb7b4321c"
 
 inherit cmake pkgconfig gobject-introspection perlnative distro_features_check upstream-version-is-even gtk-doc
 
@@ -71,10 +72,6 @@ EXTRA_OECMAKE = " \
                 -DPYTHON_EXECUTABLE=`which python` \
 		"
 
-# GL/GLES header clash: both define the same thing, differently, on 32 bit x86
-EXTRA_OECMAKE_append_x86 = " -DUSE_GSTREAMER_GL=OFF "
-EXTRA_OECMAKE_append_x86-x32 = " -DUSE_GSTREAMER_GL=OFF "
-
 # Javascript JIT is not supported on ARC
 EXTRA_OECMAKE_append_arc = " -DENABLE_JIT=OFF "
 # By default 25-bit "medium" calls are used on ARC
-- 
2.17.1



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

* [PATCH 41/42] epiphany: update to 3.32.2
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (38 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 40/42] webkitgtk: update to 2.24.2 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  2019-05-20 14:11 ` [PATCH 42/42] btrfs-tools: update to 5.1 Alexander Kanavin
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../epiphany/{epiphany_3.32.1.2.bb => epiphany_3.32.2.bb}     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-gnome/epiphany/{epiphany_3.32.1.2.bb => epiphany_3.32.2.bb} (85%)

diff --git a/meta/recipes-gnome/epiphany/epiphany_3.32.1.2.bb b/meta/recipes-gnome/epiphany/epiphany_3.32.2.bb
similarity index 85%
rename from meta/recipes-gnome/epiphany/epiphany_3.32.1.2.bb
rename to meta/recipes-gnome/epiphany/epiphany_3.32.2.bb
index 49631d92d79..ff0e34f98d2 100644
--- a/meta/recipes-gnome/epiphany/epiphany_3.32.1.2.bb
+++ b/meta/recipes-gnome/epiphany/epiphany_3.32.2.bb
@@ -14,8 +14,8 @@ SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}
            file://0002-help-meson.build-disable-the-use-of-yelp.patch \
            file://0001-web-app-utils-Clean-up-ephy_web_application_create.patch \
            "
-SRC_URI[archive.md5sum] = "93faec353e9f62519859e6164350fd5d"
-SRC_URI[archive.sha256sum] = "a8284fb9bbc8b7914a154a8eac1598c8b59ae421e0d685146fb48198427926be"
+SRC_URI[archive.md5sum] = "2a6672b22a0fdb869e5f0a415ac2da34"
+SRC_URI[archive.sha256sum] = "8ae70d9feaba3754c63ab249deeef9b7a31161a372655b4214f148ea2f440cfa"
 
 FILES_${PN} += "${datadir}/dbus-1 ${datadir}/gnome-shell/search-providers ${datadir}/metainfo"
 RDEPENDS_${PN} = "iso-codes adwaita-icon-theme gsettings-desktop-schemas"
-- 
2.17.1



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

* [PATCH 42/42] btrfs-tools: update to 5.1
  2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
                   ` (39 preceding siblings ...)
  2019-05-20 14:11 ` [PATCH 41/42] epiphany: update to 3.32.2 Alexander Kanavin
@ 2019-05-20 14:11 ` Alexander Kanavin
  40 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 14:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 .../btrfs-tools/{btrfs-tools_4.20.2.bb => btrfs-tools_5.1.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/btrfs-tools/{btrfs-tools_4.20.2.bb => btrfs-tools_5.1.bb} (96%)

diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.20.2.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.1.bb
similarity index 96%
rename from meta/recipes-devtools/btrfs-tools/btrfs-tools_4.20.2.bb
rename to meta/recipes-devtools/btrfs-tools/btrfs-tools_5.1.bb
index a1e7309664a..8b4178d6dec 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_4.20.2.bb
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.1.bb
@@ -14,7 +14,7 @@ DEPENDS = "util-linux attr e2fsprogs lzo acl python3-setuptools-native"
 DEPENDS_append_class-target = " udev"
 RDEPENDS_${PN} = "libgcc"
 
-SRCREV = "5c748404b97035463c79ba4e5fd41b6858535509"
+SRCREV = "43013422dbce4bcc9ed77cfe65b294caa0985ec8"
 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git \
            file://0001-Add-LDFLAGS-when-building-libbtrfsutil.so.patch \
            file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \
-- 
2.17.1



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

* Re: [PATCH 07/42] piglit: upgrade to latest revision
  2019-05-20 14:10 ` [PATCH 07/42] piglit: upgrade to latest revision Alexander Kanavin
@ 2019-05-20 17:52   ` Khem Raj
  0 siblings, 0 replies; 56+ messages in thread
From: Khem Raj @ 2019-05-20 17:52 UTC (permalink / raw)
  To: Alexander Kanavin, openembedded-core



On 5/20/19 7:10 AM, Alexander Kanavin wrote:
>   # From 2018-10-26
> -SRCREV = "b9066c7717af1d169a616c9e61706b99ff8515b5"
> +SRCREV = "ac955893c92591c4542439665cae2c3fb79de9dd"
>   # (when PV goes above 1.0 remove the trailing r)
>   PV = "1.0+gitr${SRCPV}"

the date in comments might not be correctly corresponding to SRCREV now 
it might be better to just delete it.


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

* Re: [PATCH 24/42] at-spi2-core: upgrade 2.30.0 -> 2.32.1
  2019-05-20 14:11 ` [PATCH 24/42] at-spi2-core: upgrade 2.30.0 -> 2.32.1 Alexander Kanavin
@ 2019-05-20 17:54   ` Khem Raj
  2019-05-20 18:50     ` Alexander Kanavin
  0 siblings, 1 reply; 56+ messages in thread
From: Khem Raj @ 2019-05-20 17:54 UTC (permalink / raw)
  To: Alexander Kanavin, openembedded-core



On 5/20/19 7:11 AM, Alexander Kanavin wrote:
> -GTKDOC_MESON_OPTION = "enable_docs"
> +GTKDOC_MESON_OPTION = "docs"
>   
> -GIR_MESON_OPTION = 'enable-introspection'
> +GIR_MESON_OPTION = 'introspection'
>   GIR_MESON_ENABLE_FLAG = 'yes'
>   GIR_MESON_DISABLE_FLAG = 'no'
>   

is this change intentional ? if yes then perhaps commit msg should 
document it.


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

* Re: [PATCH 29/42] linux-firmware: upgrade to latest revision
  2019-05-20 14:11 ` [PATCH 29/42] linux-firmware: " Alexander Kanavin
@ 2019-05-20 17:56   ` Khem Raj
  2019-05-20 18:02     ` Martin Jansa
  0 siblings, 1 reply; 56+ messages in thread
From: Khem Raj @ 2019-05-20 17:56 UTC (permalink / raw)
  To: Alexander Kanavin, openembedded-core



On 5/20/19 7:11 AM, Alexander Kanavin wrote:
> Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> ---
>   .../linux-firmware/linux-firmware_git.bb      | 128 +++++++++---------
>   1 file changed, 65 insertions(+), 63 deletions(-)
> 
> diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
> index ad7babf7aa4..8b6ad96dba4 100644
> --- a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
> +++ b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
> @@ -7,6 +7,7 @@ LICENSE = "\
>       & Firmware-agere \
>       & Firmware-amdgpu \
>       & Firmware-amd-ucode \
> +    & Firmware-amlogic_vdec \
>       & Firmware-atheros_firmware \
>       & Firmware-atmel \
>       & Firmware-broadcom_bcm43xx \
> @@ -62,68 +63,68 @@ LICENSE = "\
>       & WHENCE \
>   "
>   
> -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.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
> -    file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
> -    file://LICENSE.atmel;md5=aa74ac0c60595dee4d4e239107ea77a3 \
> -    file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc \
> -    file://LICENCE.ca0132;md5=209b33e66ee5be0461f13d31da392198 \
> -    file://LICENCE.cadence;md5=009f46816f6956cfb75ede13d3e1cee0 \
> -    file://LICENCE.cavium;md5=c37aaffb1ebe5939b2580d073a95daea \
> -    file://LICENCE.chelsio_firmware;md5=819aa8c3fa453f1b258ed8d168a9d903 \
> -    file://LICENCE.cw1200;md5=f0f770864e7a8444a5c5aa9d12a3a7ed \
> -    file://LICENCE.cypress;md5=48cd9436c763bf873961f9ed7b5c147b \
> -    file://LICENSE.dib0700;md5=f7411825c8a555a1a3e5eab9ca773431 \
> -    file://LICENCE.e100;md5=ec0f84136766df159a3ae6d02acdf5a8 \
> -    file://LICENCE.ene_firmware;md5=ed67f0f62f8f798130c296720b7d3921 \
> -    file://LICENCE.fw_sst_0f28;md5=6353931c988ad52818ae733ac61cd293 \
> -    file://LICENCE.go7007;md5=c0bb9f6aaaba55b0529ee9b30aa66beb \
> -    file://GPL-2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> -    file://LICENSE.hfi1_firmware;md5=5e7b6e586ce7339d12689e49931ad444 \
> -    file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
> -    file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
> -    file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
> -    file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
> -    file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
> -    file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
> -    file://LICENCE.kaweth;md5=b1d876e562f4b3b8d391ad8395dfe03f \
> -    file://LICENCE.Marvell;md5=9ddea1734a4baf3c78d845151f42a37a \
> -    file://LICENCE.mediatek;md5=7c1976b63217d76ce47d0a11d8a79cf2 \
> -    file://LICENCE.moxa;md5=1086614767d8ccf744a923289d3d4261 \
> -    file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
> -    file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
> -    file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
> -    file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
> -    file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837 \
> -    file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
> -    file://LICENCE.qat_firmware;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
> -    file://LICENSE.qcom;md5=164e3362a538eb11d3ac51e8e134294b \
> -    file://LICENCE.qla1280;md5=d6895732e622d950609093223a2c4f5d \
> -    file://LICENCE.qla2xxx;md5=505855e921b75f1be4a437ad9b79dff0 \
> -    file://LICENSE.QualcommAtheros_ar3k;md5=b5fe244fb2b532311de1472a3bc06da5 \
> -    file://LICENSE.QualcommAtheros_ath10k;md5=cb42b686ee5f5cb890275e4321db60a8 \
> -    file://LICENCE.r8a779x_usb3;md5=4c1671656153025d7076105a5da7e498 \
> -    file://LICENSE.radeon;md5=68ec28bacb3613200bca44f404c69b16 \
> -    file://LICENCE.ralink_a_mediatek_company_firmware;md5=728f1a85fd53fd67fa8d7afb080bc435 \
> -    file://LICENCE.ralink-firmware.txt;md5=ab2c269277c45476fb449673911a2dfd \
> -    file://LICENCE.rtlwifi_firmware.txt;md5=00d06cfd3eddd5a2698948ead2ad54a5 \
> -    file://LICENSE.sdma_firmware;md5=51e8c19ecc2270f4b8ea30341ad63ce9 \
> -    file://LICENCE.siano;md5=4556c1bf830067f12ca151ad953ec2a5 \
> -    file://LICENCE.tda7706-firmware.txt;md5=835997cf5e3c131d0dddd695c7d9103e \
> -    file://LICENCE.ti-connectivity;md5=c5e02be633f1499c109d1652514d85ec \
> -    file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c \
> -    file://LICENCE.ueagle-atm4-firmware;md5=4ed7ea6b507ccc583b9d594417714118 \
> -    file://LICENCE.via_vt6656;md5=e4159694cba42d4377a912e78a6e850f \
> -    file://LICENCE.wl1251;md5=ad3f81922bb9e197014bb187289d3b5b \
> -    file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
> -    file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
> -    file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
> -    file://WHENCE;md5=ef36d3383becd18f36ce32d84109386f \
> -"
> +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.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
> +                    file://LICENSE.amlogic_vdec;md5=dc44f59bf64a81643e500ad3f39a468a \
> +                    file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
> +                    file://LICENSE.atmel;md5=aa74ac0c60595dee4d4e239107ea77a3 \
> +                    file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc \
> +                    file://LICENCE.ca0132;md5=209b33e66ee5be0461f13d31da392198 \
> +                    file://LICENCE.cadence;md5=009f46816f6956cfb75ede13d3e1cee0 \
> +                    file://LICENCE.cavium;md5=c37aaffb1ebe5939b2580d073a95daea \
> +                    file://LICENCE.chelsio_firmware;md5=819aa8c3fa453f1b258ed8d168a9d903 \
> +                    file://LICENCE.cw1200;md5=f0f770864e7a8444a5c5aa9d12a3a7ed \
> +                    file://LICENCE.cypress;md5=48cd9436c763bf873961f9ed7b5c147b \
> +                    file://LICENSE.dib0700;md5=f7411825c8a555a1a3e5eab9ca773431 \
> +                    file://LICENCE.e100;md5=ec0f84136766df159a3ae6d02acdf5a8 \
> +                    file://LICENCE.ene_firmware;md5=ed67f0f62f8f798130c296720b7d3921 \
> +                    file://LICENCE.fw_sst_0f28;md5=6353931c988ad52818ae733ac61cd293 \
> +                    file://LICENCE.go7007;md5=c0bb9f6aaaba55b0529ee9b30aa66beb \
> +                    file://GPL-2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> +                    file://LICENSE.hfi1_firmware;md5=5e7b6e586ce7339d12689e49931ad444 \
> +                    file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
> +                    file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
> +                    file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
> +                    file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
> +                    file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
> +                    file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
> +                    file://LICENCE.kaweth;md5=b1d876e562f4b3b8d391ad8395dfe03f \
> +                    file://LICENCE.Marvell;md5=9ddea1734a4baf3c78d845151f42a37a \
> +                    file://LICENCE.mediatek;md5=7c1976b63217d76ce47d0a11d8a79cf2 \
> +                    file://LICENCE.moxa;md5=1086614767d8ccf744a923289d3d4261 \
> +                    file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
> +                    file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
> +                    file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
> +                    file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
> +                    file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837 \
> +                    file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
> +                    file://LICENCE.qat_firmware;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
> +                    file://LICENSE.qcom;md5=164e3362a538eb11d3ac51e8e134294b \
> +                    file://LICENCE.qla1280;md5=d6895732e622d950609093223a2c4f5d \
> +                    file://LICENCE.qla2xxx;md5=505855e921b75f1be4a437ad9b79dff0 \
> +                    file://LICENSE.QualcommAtheros_ar3k;md5=b5fe244fb2b532311de1472a3bc06da5 \
> +                    file://LICENSE.QualcommAtheros_ath10k;md5=cb42b686ee5f5cb890275e4321db60a8 \
> +                    file://LICENCE.r8a779x_usb3;md5=4c1671656153025d7076105a5da7e498 \
> +                    file://LICENSE.radeon;md5=68ec28bacb3613200bca44f404c69b16 \
> +                    file://LICENCE.ralink_a_mediatek_company_firmware;md5=728f1a85fd53fd67fa8d7afb080bc435 \
> +                    file://LICENCE.ralink-firmware.txt;md5=ab2c269277c45476fb449673911a2dfd \
> +                    file://LICENCE.rtlwifi_firmware.txt;md5=00d06cfd3eddd5a2698948ead2ad54a5 \
> +                    file://LICENSE.sdma_firmware;md5=51e8c19ecc2270f4b8ea30341ad63ce9 \
> +                    file://LICENCE.siano;md5=4556c1bf830067f12ca151ad953ec2a5 \
> +                    file://LICENCE.tda7706-firmware.txt;md5=835997cf5e3c131d0dddd695c7d9103e \
> +                    file://LICENCE.ti-connectivity;md5=c5e02be633f1499c109d1652514d85ec \
> +                    file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c \
> +                    file://LICENCE.ueagle-atm4-firmware;md5=4ed7ea6b507ccc583b9d594417714118 \
> +                    file://LICENCE.via_vt6656;md5=e4159694cba42d4377a912e78a6e850f \
> +                    file://LICENCE.wl1251;md5=ad3f81922bb9e197014bb187289d3b5b \
> +                    file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
> +                    file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
> +                    file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
> +                    file://WHENCE;md5=b6e44adf71bc37e5f26ebfe5a08b5490 \
> +                    "
>   
>   # These are not common licenses, set NO_GENERIC_LICENSE for them
>   # so that the license files will be copied from fetched source
> @@ -132,6 +133,7 @@ NO_GENERIC_LICENSE[Firmware-adsp_sst] = "LICENCE.adsp_sst"
>   NO_GENERIC_LICENSE[Firmware-agere] = "LICENCE.agere"
>   NO_GENERIC_LICENSE[Firmware-amdgpu] = "LICENSE.amdgpu"
>   NO_GENERIC_LICENSE[Firmware-amd-ucode] = "LICENSE.amd-ucode"
> +NO_GENERIC_LICENSE[Firmware-amlogic_vdec] = "LICENSE.amlogic_vdec"
>   NO_GENERIC_LICENSE[Firmware-atheros_firmware] = "LICENCE.atheros_firmware"
>   NO_GENERIC_LICENSE[Firmware-atmel] = "LICENSE.atmel"
>   NO_GENERIC_LICENSE[Firmware-broadcom_bcm43xx] = "LICENCE.broadcom_bcm43xx"
> @@ -188,7 +190,7 @@ NO_GENERIC_LICENSE[Firmware-xc5000] = "LICENCE.xc5000"
>   NO_GENERIC_LICENSE[Firmware-xc5000c] = "LICENCE.xc5000c"
>   NO_GENERIC_LICENSE[WHENCE] = "WHENCE"
>   
> -SRCREV = "7bc246451318b3536d9bfd3c4e46d541a9831b33"
> +SRCREV = "711d3297bac870af42088a467459a0634c1970ca"
>   PE = "1"
>   PV = "0.0+git${SRCPV}"
>   
> 

Formatting changes could have been a separate patch


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

* Re: [PATCH 29/42] linux-firmware: upgrade to latest revision
  2019-05-20 17:56   ` Khem Raj
@ 2019-05-20 18:02     ` Martin Jansa
  2019-05-20 18:57       ` Alexander Kanavin
  0 siblings, 1 reply; 56+ messages in thread
From: Martin Jansa @ 2019-05-20 18:02 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

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

And why change formatting in first place?

The old version seems better to me.

On Mon, May 20, 2019 at 7:56 PM Khem Raj <raj.khem@gmail.com> wrote:

>
>
> On 5/20/19 7:11 AM, Alexander Kanavin wrote:
> > Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> > ---
> >   .../linux-firmware/linux-firmware_git.bb      | 128 +++++++++---------
> >   1 file changed, 65 insertions(+), 63 deletions(-)
> >
> > diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
> b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
> > index ad7babf7aa4..8b6ad96dba4 100644
> > --- a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
> > +++ b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
> > @@ -7,6 +7,7 @@ LICENSE = "\
> >       & Firmware-agere \
> >       & Firmware-amdgpu \
> >       & Firmware-amd-ucode \
> > +    & Firmware-amlogic_vdec \
> >       & Firmware-atheros_firmware \
> >       & Firmware-atmel \
> >       & Firmware-broadcom_bcm43xx \
> > @@ -62,68 +63,68 @@ LICENSE = "\
> >       & WHENCE \
> >   "
> >
> > -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.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
> > -
> file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
> > -    file://LICENSE.atmel;md5=aa74ac0c60595dee4d4e239107ea77a3 \
> > -
> file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc \
> > -    file://LICENCE.ca0132;md5=209b33e66ee5be0461f13d31da392198 \
> > -    file://LICENCE.cadence;md5=009f46816f6956cfb75ede13d3e1cee0 \
> > -    file://LICENCE.cavium;md5=c37aaffb1ebe5939b2580d073a95daea \
> > -
> file://LICENCE.chelsio_firmware;md5=819aa8c3fa453f1b258ed8d168a9d903 \
> > -    file://LICENCE.cw1200;md5=f0f770864e7a8444a5c5aa9d12a3a7ed \
> > -    file://LICENCE.cypress;md5=48cd9436c763bf873961f9ed7b5c147b \
> > -    file://LICENSE.dib0700;md5=f7411825c8a555a1a3e5eab9ca773431 \
> > -    file://LICENCE.e100;md5=ec0f84136766df159a3ae6d02acdf5a8 \
> > -    file://LICENCE.ene_firmware;md5=ed67f0f62f8f798130c296720b7d3921 \
> > -    file://LICENCE.fw_sst_0f28;md5=6353931c988ad52818ae733ac61cd293 \
> > -    file://LICENCE.go7007;md5=c0bb9f6aaaba55b0529ee9b30aa66beb \
> > -    file://GPL-2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> > -    file://LICENSE.hfi1_firmware;md5=5e7b6e586ce7339d12689e49931ad444 \
> > -    file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
> > -    file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
> > -    file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
> > -    file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
> > -    file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
> > -
> file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
> > -    file://LICENCE.kaweth;md5=b1d876e562f4b3b8d391ad8395dfe03f \
> > -    file://LICENCE.Marvell;md5=9ddea1734a4baf3c78d845151f42a37a \
> > -    file://LICENCE.mediatek;md5=7c1976b63217d76ce47d0a11d8a79cf2 \
> > -    file://LICENCE.moxa;md5=1086614767d8ccf744a923289d3d4261 \
> > -
> file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
> > -    file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
> > -    file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
> > -    file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
> > -
> file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837
> \
> > -    file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
> > -    file://LICENCE.qat_firmware;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
> > -    file://LICENSE.qcom;md5=164e3362a538eb11d3ac51e8e134294b \
> > -    file://LICENCE.qla1280;md5=d6895732e622d950609093223a2c4f5d \
> > -    file://LICENCE.qla2xxx;md5=505855e921b75f1be4a437ad9b79dff0 \
> > -
> file://LICENSE.QualcommAtheros_ar3k;md5=b5fe244fb2b532311de1472a3bc06da5 \
> > -
> file://LICENSE.QualcommAtheros_ath10k;md5=cb42b686ee5f5cb890275e4321db60a8 \
> > -    file://LICENCE.r8a779x_usb3;md5=4c1671656153025d7076105a5da7e498 \
> > -    file://LICENSE.radeon;md5=68ec28bacb3613200bca44f404c69b16 \
> > -
> file://LICENCE.ralink_a_mediatek_company_firmware;md5=728f1a85fd53fd67fa8d7afb080bc435
> \
> > -
> file://LICENCE.ralink-firmware.txt;md5=ab2c269277c45476fb449673911a2dfd \
> > -
> file://LICENCE.rtlwifi_firmware.txt;md5=00d06cfd3eddd5a2698948ead2ad54a5 \
> > -    file://LICENSE.sdma_firmware;md5=51e8c19ecc2270f4b8ea30341ad63ce9 \
> > -    file://LICENCE.siano;md5=4556c1bf830067f12ca151ad953ec2a5 \
> > -
> file://LICENCE.tda7706-firmware.txt;md5=835997cf5e3c131d0dddd695c7d9103e \
> > -    file://LICENCE.ti-connectivity;md5=c5e02be633f1499c109d1652514d85ec
> \
> > -    file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c \
> > -
> file://LICENCE.ueagle-atm4-firmware;md5=4ed7ea6b507ccc583b9d594417714118 \
> > -    file://LICENCE.via_vt6656;md5=e4159694cba42d4377a912e78a6e850f \
> > -    file://LICENCE.wl1251;md5=ad3f81922bb9e197014bb187289d3b5b \
> > -    file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
> > -    file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
> > -    file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
> > -    file://WHENCE;md5=ef36d3383becd18f36ce32d84109386f \
> > -"
> > +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.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
> > +
> file://LICENSE.amlogic_vdec;md5=dc44f59bf64a81643e500ad3f39a468a \
> > +
> file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
> > +
> file://LICENSE.atmel;md5=aa74ac0c60595dee4d4e239107ea77a3 \
> > +
> file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc \
> > +
> file://LICENCE.ca0132;md5=209b33e66ee5be0461f13d31da392198 \
> > +
> file://LICENCE.cadence;md5=009f46816f6956cfb75ede13d3e1cee0 \
> > +
> file://LICENCE.cavium;md5=c37aaffb1ebe5939b2580d073a95daea \
> > +
> file://LICENCE.chelsio_firmware;md5=819aa8c3fa453f1b258ed8d168a9d903 \
> > +
> file://LICENCE.cw1200;md5=f0f770864e7a8444a5c5aa9d12a3a7ed \
> > +
> file://LICENCE.cypress;md5=48cd9436c763bf873961f9ed7b5c147b \
> > +
> file://LICENSE.dib0700;md5=f7411825c8a555a1a3e5eab9ca773431 \
> > +
> file://LICENCE.e100;md5=ec0f84136766df159a3ae6d02acdf5a8 \
> > +
> file://LICENCE.ene_firmware;md5=ed67f0f62f8f798130c296720b7d3921 \
> > +
> file://LICENCE.fw_sst_0f28;md5=6353931c988ad52818ae733ac61cd293 \
> > +
> file://LICENCE.go7007;md5=c0bb9f6aaaba55b0529ee9b30aa66beb \
> > +                    file://GPL-2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> > +
> file://LICENSE.hfi1_firmware;md5=5e7b6e586ce7339d12689e49931ad444 \
> > +
> file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
> > +
> file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
> > +
> file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
> > +
> file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
> > +
> file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
> > +
> file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
> > +
> file://LICENCE.kaweth;md5=b1d876e562f4b3b8d391ad8395dfe03f \
> > +
> file://LICENCE.Marvell;md5=9ddea1734a4baf3c78d845151f42a37a \
> > +
> file://LICENCE.mediatek;md5=7c1976b63217d76ce47d0a11d8a79cf2 \
> > +
> file://LICENCE.moxa;md5=1086614767d8ccf744a923289d3d4261 \
> > +
> file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
> > +
> file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
> > +
> file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
> > +
> file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
> > +
> file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837
> \
> > +
> file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
> > +
> file://LICENCE.qat_firmware;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
> > +
> file://LICENSE.qcom;md5=164e3362a538eb11d3ac51e8e134294b \
> > +
> file://LICENCE.qla1280;md5=d6895732e622d950609093223a2c4f5d \
> > +
> file://LICENCE.qla2xxx;md5=505855e921b75f1be4a437ad9b79dff0 \
> > +
> file://LICENSE.QualcommAtheros_ar3k;md5=b5fe244fb2b532311de1472a3bc06da5 \
> > +
> file://LICENSE.QualcommAtheros_ath10k;md5=cb42b686ee5f5cb890275e4321db60a8 \
> > +
> file://LICENCE.r8a779x_usb3;md5=4c1671656153025d7076105a5da7e498 \
> > +
> file://LICENSE.radeon;md5=68ec28bacb3613200bca44f404c69b16 \
> > +
> file://LICENCE.ralink_a_mediatek_company_firmware;md5=728f1a85fd53fd67fa8d7afb080bc435
> \
> > +
> file://LICENCE.ralink-firmware.txt;md5=ab2c269277c45476fb449673911a2dfd \
> > +
> file://LICENCE.rtlwifi_firmware.txt;md5=00d06cfd3eddd5a2698948ead2ad54a5 \
> > +
> file://LICENSE.sdma_firmware;md5=51e8c19ecc2270f4b8ea30341ad63ce9 \
> > +
> file://LICENCE.siano;md5=4556c1bf830067f12ca151ad953ec2a5 \
> > +
> file://LICENCE.tda7706-firmware.txt;md5=835997cf5e3c131d0dddd695c7d9103e \
> > +
> file://LICENCE.ti-connectivity;md5=c5e02be633f1499c109d1652514d85ec \
> > +
> file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c \
> > +
> file://LICENCE.ueagle-atm4-firmware;md5=4ed7ea6b507ccc583b9d594417714118 \
> > +
> file://LICENCE.via_vt6656;md5=e4159694cba42d4377a912e78a6e850f \
> > +
> file://LICENCE.wl1251;md5=ad3f81922bb9e197014bb187289d3b5b \
> > +
> file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
> > +
> file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
> > +
> file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
> > +                    file://WHENCE;md5=b6e44adf71bc37e5f26ebfe5a08b5490 \
> > +                    "
> >
> >   # These are not common licenses, set NO_GENERIC_LICENSE for them
> >   # so that the license files will be copied from fetched source
> > @@ -132,6 +133,7 @@ NO_GENERIC_LICENSE[Firmware-adsp_sst] =
> "LICENCE.adsp_sst"
> >   NO_GENERIC_LICENSE[Firmware-agere] = "LICENCE.agere"
> >   NO_GENERIC_LICENSE[Firmware-amdgpu] = "LICENSE.amdgpu"
> >   NO_GENERIC_LICENSE[Firmware-amd-ucode] = "LICENSE.amd-ucode"
> > +NO_GENERIC_LICENSE[Firmware-amlogic_vdec] = "LICENSE.amlogic_vdec"
> >   NO_GENERIC_LICENSE[Firmware-atheros_firmware] =
> "LICENCE.atheros_firmware"
> >   NO_GENERIC_LICENSE[Firmware-atmel] = "LICENSE.atmel"
> >   NO_GENERIC_LICENSE[Firmware-broadcom_bcm43xx] =
> "LICENCE.broadcom_bcm43xx"
> > @@ -188,7 +190,7 @@ NO_GENERIC_LICENSE[Firmware-xc5000] =
> "LICENCE.xc5000"
> >   NO_GENERIC_LICENSE[Firmware-xc5000c] = "LICENCE.xc5000c"
> >   NO_GENERIC_LICENSE[WHENCE] = "WHENCE"
> >
> > -SRCREV = "7bc246451318b3536d9bfd3c4e46d541a9831b33"
> > +SRCREV = "711d3297bac870af42088a467459a0634c1970ca"
> >   PE = "1"
> >   PV = "0.0+git${SRCPV}"
> >
> >
>
> Formatting changes could have been a separate patch
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>

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

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

* Re: [PATCH 24/42] at-spi2-core: upgrade 2.30.0 -> 2.32.1
  2019-05-20 17:54   ` Khem Raj
@ 2019-05-20 18:50     ` Alexander Kanavin
  0 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 18:50 UTC (permalink / raw)
  To: Khem Raj; +Cc: OE-core

Yes, upstream has renamed the meson options - thought it was self-evident.

Alex

On Mon, 20 May 2019 at 19:54, Khem Raj <raj.khem@gmail.com> wrote:
>
>
>
> On 5/20/19 7:11 AM, Alexander Kanavin wrote:
> > -GTKDOC_MESON_OPTION = "enable_docs"
> > +GTKDOC_MESON_OPTION = "docs"
> >
> > -GIR_MESON_OPTION = 'enable-introspection'
> > +GIR_MESON_OPTION = 'introspection'
> >   GIR_MESON_ENABLE_FLAG = 'yes'
> >   GIR_MESON_DISABLE_FLAG = 'no'
> >
>
> is this change intentional ? if yes then perhaps commit msg should
> document it.


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

* Re: [PATCH 29/42] linux-firmware: upgrade to latest revision
  2019-05-20 18:02     ` Martin Jansa
@ 2019-05-20 18:57       ` Alexander Kanavin
  0 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-20 18:57 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Patches and discussions about the oe-core layer

The patch was produced by devtool (with the further addition of one
new license by me).  Devtool 'standardizes' the formatting for file
lists (LIC_FILES_CHECKSUM, SRC_URI), whether you want it or not.

The new version is closer to how those things are typically indented,
so I have a slight preference for that.

Alex

On Mon, 20 May 2019 at 20:02, Martin Jansa <martin.jansa@gmail.com> wrote:
>
> And why change formatting in first place?
>
> The old version seems better to me.
>
> On Mon, May 20, 2019 at 7:56 PM Khem Raj <raj.khem@gmail.com> wrote:
>>
>>
>>
>> On 5/20/19 7:11 AM, Alexander Kanavin wrote:
>> > Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
>> > ---
>> >   .../linux-firmware/linux-firmware_git.bb      | 128 +++++++++---------
>> >   1 file changed, 65 insertions(+), 63 deletions(-)
>> >
>> > diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
>> > index ad7babf7aa4..8b6ad96dba4 100644
>> > --- a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
>> > +++ b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
>> > @@ -7,6 +7,7 @@ LICENSE = "\
>> >       & Firmware-agere \
>> >       & Firmware-amdgpu \
>> >       & Firmware-amd-ucode \
>> > +    & Firmware-amlogic_vdec \
>> >       & Firmware-atheros_firmware \
>> >       & Firmware-atmel \
>> >       & Firmware-broadcom_bcm43xx \
>> > @@ -62,68 +63,68 @@ LICENSE = "\
>> >       & WHENCE \
>> >   "
>> >
>> > -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.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
>> > -    file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
>> > -    file://LICENSE.atmel;md5=aa74ac0c60595dee4d4e239107ea77a3 \
>> > -    file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc \
>> > -    file://LICENCE.ca0132;md5=209b33e66ee5be0461f13d31da392198 \
>> > -    file://LICENCE.cadence;md5=009f46816f6956cfb75ede13d3e1cee0 \
>> > -    file://LICENCE.cavium;md5=c37aaffb1ebe5939b2580d073a95daea \
>> > -    file://LICENCE.chelsio_firmware;md5=819aa8c3fa453f1b258ed8d168a9d903 \
>> > -    file://LICENCE.cw1200;md5=f0f770864e7a8444a5c5aa9d12a3a7ed \
>> > -    file://LICENCE.cypress;md5=48cd9436c763bf873961f9ed7b5c147b \
>> > -    file://LICENSE.dib0700;md5=f7411825c8a555a1a3e5eab9ca773431 \
>> > -    file://LICENCE.e100;md5=ec0f84136766df159a3ae6d02acdf5a8 \
>> > -    file://LICENCE.ene_firmware;md5=ed67f0f62f8f798130c296720b7d3921 \
>> > -    file://LICENCE.fw_sst_0f28;md5=6353931c988ad52818ae733ac61cd293 \
>> > -    file://LICENCE.go7007;md5=c0bb9f6aaaba55b0529ee9b30aa66beb \
>> > -    file://GPL-2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
>> > -    file://LICENSE.hfi1_firmware;md5=5e7b6e586ce7339d12689e49931ad444 \
>> > -    file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
>> > -    file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
>> > -    file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
>> > -    file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
>> > -    file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
>> > -    file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
>> > -    file://LICENCE.kaweth;md5=b1d876e562f4b3b8d391ad8395dfe03f \
>> > -    file://LICENCE.Marvell;md5=9ddea1734a4baf3c78d845151f42a37a \
>> > -    file://LICENCE.mediatek;md5=7c1976b63217d76ce47d0a11d8a79cf2 \
>> > -    file://LICENCE.moxa;md5=1086614767d8ccf744a923289d3d4261 \
>> > -    file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
>> > -    file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
>> > -    file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
>> > -    file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
>> > -    file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837 \
>> > -    file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
>> > -    file://LICENCE.qat_firmware;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
>> > -    file://LICENSE.qcom;md5=164e3362a538eb11d3ac51e8e134294b \
>> > -    file://LICENCE.qla1280;md5=d6895732e622d950609093223a2c4f5d \
>> > -    file://LICENCE.qla2xxx;md5=505855e921b75f1be4a437ad9b79dff0 \
>> > -    file://LICENSE.QualcommAtheros_ar3k;md5=b5fe244fb2b532311de1472a3bc06da5 \
>> > -    file://LICENSE.QualcommAtheros_ath10k;md5=cb42b686ee5f5cb890275e4321db60a8 \
>> > -    file://LICENCE.r8a779x_usb3;md5=4c1671656153025d7076105a5da7e498 \
>> > -    file://LICENSE.radeon;md5=68ec28bacb3613200bca44f404c69b16 \
>> > -    file://LICENCE.ralink_a_mediatek_company_firmware;md5=728f1a85fd53fd67fa8d7afb080bc435 \
>> > -    file://LICENCE.ralink-firmware.txt;md5=ab2c269277c45476fb449673911a2dfd \
>> > -    file://LICENCE.rtlwifi_firmware.txt;md5=00d06cfd3eddd5a2698948ead2ad54a5 \
>> > -    file://LICENSE.sdma_firmware;md5=51e8c19ecc2270f4b8ea30341ad63ce9 \
>> > -    file://LICENCE.siano;md5=4556c1bf830067f12ca151ad953ec2a5 \
>> > -    file://LICENCE.tda7706-firmware.txt;md5=835997cf5e3c131d0dddd695c7d9103e \
>> > -    file://LICENCE.ti-connectivity;md5=c5e02be633f1499c109d1652514d85ec \
>> > -    file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c \
>> > -    file://LICENCE.ueagle-atm4-firmware;md5=4ed7ea6b507ccc583b9d594417714118 \
>> > -    file://LICENCE.via_vt6656;md5=e4159694cba42d4377a912e78a6e850f \
>> > -    file://LICENCE.wl1251;md5=ad3f81922bb9e197014bb187289d3b5b \
>> > -    file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
>> > -    file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
>> > -    file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
>> > -    file://WHENCE;md5=ef36d3383becd18f36ce32d84109386f \
>> > -"
>> > +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.amd-ucode;md5=3c5399dc9148d7f0e1f41e34b69cf14f \
>> > +                    file://LICENSE.amlogic_vdec;md5=dc44f59bf64a81643e500ad3f39a468a \
>> > +                    file://LICENCE.atheros_firmware;md5=30a14c7823beedac9fa39c64fdd01a13 \
>> > +                    file://LICENSE.atmel;md5=aa74ac0c60595dee4d4e239107ea77a3 \
>> > +                    file://LICENCE.broadcom_bcm43xx;md5=3160c14df7228891b868060e1951dfbc \
>> > +                    file://LICENCE.ca0132;md5=209b33e66ee5be0461f13d31da392198 \
>> > +                    file://LICENCE.cadence;md5=009f46816f6956cfb75ede13d3e1cee0 \
>> > +                    file://LICENCE.cavium;md5=c37aaffb1ebe5939b2580d073a95daea \
>> > +                    file://LICENCE.chelsio_firmware;md5=819aa8c3fa453f1b258ed8d168a9d903 \
>> > +                    file://LICENCE.cw1200;md5=f0f770864e7a8444a5c5aa9d12a3a7ed \
>> > +                    file://LICENCE.cypress;md5=48cd9436c763bf873961f9ed7b5c147b \
>> > +                    file://LICENSE.dib0700;md5=f7411825c8a555a1a3e5eab9ca773431 \
>> > +                    file://LICENCE.e100;md5=ec0f84136766df159a3ae6d02acdf5a8 \
>> > +                    file://LICENCE.ene_firmware;md5=ed67f0f62f8f798130c296720b7d3921 \
>> > +                    file://LICENCE.fw_sst_0f28;md5=6353931c988ad52818ae733ac61cd293 \
>> > +                    file://LICENCE.go7007;md5=c0bb9f6aaaba55b0529ee9b30aa66beb \
>> > +                    file://GPL-2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
>> > +                    file://LICENSE.hfi1_firmware;md5=5e7b6e586ce7339d12689e49931ad444 \
>> > +                    file://LICENCE.i2400m;md5=14b901969e23c41881327c0d9e4b7d36 \
>> > +                    file://LICENSE.i915;md5=2b0b2e0d20984affd4490ba2cba02570 \
>> > +                    file://LICENCE.ibt_firmware;md5=fdbee1ddfe0fb7ab0b2fcd6b454a366b \
>> > +                    file://LICENCE.IntcSST2;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
>> > +                    file://LICENCE.it913x;md5=1fbf727bfb6a949810c4dbfa7e6ce4f8 \
>> > +                    file://LICENCE.iwlwifi_firmware;md5=3fd842911ea93c29cd32679aa23e1c88 \
>> > +                    file://LICENCE.kaweth;md5=b1d876e562f4b3b8d391ad8395dfe03f \
>> > +                    file://LICENCE.Marvell;md5=9ddea1734a4baf3c78d845151f42a37a \
>> > +                    file://LICENCE.mediatek;md5=7c1976b63217d76ce47d0a11d8a79cf2 \
>> > +                    file://LICENCE.moxa;md5=1086614767d8ccf744a923289d3d4261 \
>> > +                    file://LICENCE.myri10ge_firmware;md5=42e32fb89f6b959ca222e25ac8df8fed \
>> > +                    file://LICENCE.Netronome;md5=4add08f2577086d44447996503cddf5f \
>> > +                    file://LICENCE.nvidia;md5=4428a922ed3ba2ceec95f076a488ce07 \
>> > +                    file://LICENCE.OLPC;md5=5b917f9d8c061991be4f6f5f108719cd \
>> > +                    file://LICENCE.open-ath9k-htc-firmware;md5=1b33c9f4d17bc4d457bdb23727046837 \
>> > +                    file://LICENCE.phanfw;md5=954dcec0e051f9409812b561ea743bfa \
>> > +                    file://LICENCE.qat_firmware;md5=9e7d8bea77612d7cc7d9e9b54b623062 \
>> > +                    file://LICENSE.qcom;md5=164e3362a538eb11d3ac51e8e134294b \
>> > +                    file://LICENCE.qla1280;md5=d6895732e622d950609093223a2c4f5d \
>> > +                    file://LICENCE.qla2xxx;md5=505855e921b75f1be4a437ad9b79dff0 \
>> > +                    file://LICENSE.QualcommAtheros_ar3k;md5=b5fe244fb2b532311de1472a3bc06da5 \
>> > +                    file://LICENSE.QualcommAtheros_ath10k;md5=cb42b686ee5f5cb890275e4321db60a8 \
>> > +                    file://LICENCE.r8a779x_usb3;md5=4c1671656153025d7076105a5da7e498 \
>> > +                    file://LICENSE.radeon;md5=68ec28bacb3613200bca44f404c69b16 \
>> > +                    file://LICENCE.ralink_a_mediatek_company_firmware;md5=728f1a85fd53fd67fa8d7afb080bc435 \
>> > +                    file://LICENCE.ralink-firmware.txt;md5=ab2c269277c45476fb449673911a2dfd \
>> > +                    file://LICENCE.rtlwifi_firmware.txt;md5=00d06cfd3eddd5a2698948ead2ad54a5 \
>> > +                    file://LICENSE.sdma_firmware;md5=51e8c19ecc2270f4b8ea30341ad63ce9 \
>> > +                    file://LICENCE.siano;md5=4556c1bf830067f12ca151ad953ec2a5 \
>> > +                    file://LICENCE.tda7706-firmware.txt;md5=835997cf5e3c131d0dddd695c7d9103e \
>> > +                    file://LICENCE.ti-connectivity;md5=c5e02be633f1499c109d1652514d85ec \
>> > +                    file://LICENCE.ti-keystone;md5=3a86335d32864b0bef996bee26cc0f2c \
>> > +                    file://LICENCE.ueagle-atm4-firmware;md5=4ed7ea6b507ccc583b9d594417714118 \
>> > +                    file://LICENCE.via_vt6656;md5=e4159694cba42d4377a912e78a6e850f \
>> > +                    file://LICENCE.wl1251;md5=ad3f81922bb9e197014bb187289d3b5b \
>> > +                    file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \
>> > +                    file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \
>> > +                    file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \
>> > +                    file://WHENCE;md5=b6e44adf71bc37e5f26ebfe5a08b5490 \
>> > +                    "
>> >
>> >   # These are not common licenses, set NO_GENERIC_LICENSE for them
>> >   # so that the license files will be copied from fetched source
>> > @@ -132,6 +133,7 @@ NO_GENERIC_LICENSE[Firmware-adsp_sst] = "LICENCE.adsp_sst"
>> >   NO_GENERIC_LICENSE[Firmware-agere] = "LICENCE.agere"
>> >   NO_GENERIC_LICENSE[Firmware-amdgpu] = "LICENSE.amdgpu"
>> >   NO_GENERIC_LICENSE[Firmware-amd-ucode] = "LICENSE.amd-ucode"
>> > +NO_GENERIC_LICENSE[Firmware-amlogic_vdec] = "LICENSE.amlogic_vdec"
>> >   NO_GENERIC_LICENSE[Firmware-atheros_firmware] = "LICENCE.atheros_firmware"
>> >   NO_GENERIC_LICENSE[Firmware-atmel] = "LICENSE.atmel"
>> >   NO_GENERIC_LICENSE[Firmware-broadcom_bcm43xx] = "LICENCE.broadcom_bcm43xx"
>> > @@ -188,7 +190,7 @@ NO_GENERIC_LICENSE[Firmware-xc5000] = "LICENCE.xc5000"
>> >   NO_GENERIC_LICENSE[Firmware-xc5000c] = "LICENCE.xc5000c"
>> >   NO_GENERIC_LICENSE[WHENCE] = "WHENCE"
>> >
>> > -SRCREV = "7bc246451318b3536d9bfd3c4e46d541a9831b33"
>> > +SRCREV = "711d3297bac870af42088a467459a0634c1970ca"
>> >   PE = "1"
>> >   PV = "0.0+git${SRCPV}"
>> >
>> >
>>
>> Formatting changes could have been a separate patch
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH 03/42] libmodulemd: upgrade 2.2.3 -> 2.4.0
  2019-05-20 14:10 ` [PATCH 03/42] libmodulemd: upgrade 2.2.3 -> 2.4.0 Alexander Kanavin
@ 2019-05-21 14:41   ` Richard Purdie
  2019-05-21 16:15     ` Alexander Kanavin
  0 siblings, 1 reply; 56+ messages in thread
From: Richard Purdie @ 2019-05-21 14:41 UTC (permalink / raw)
  To: Alexander Kanavin, openembedded-core

On Mon, 2019-05-20 at 16:10 +0200, Alexander Kanavin wrote:
> Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> ---
>  meta/recipes-devtools/libmodulemd/libmodulemd_git.bb | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
> b/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
> index 40715c06ee2..d7f486868b8 100644
> --- a/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
> +++ b/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
> @@ -7,14 +7,14 @@ SRC_URI = "git://github.com/fedora-
> modularity/libmodulemd;protocol=https \
>             file://0002-modulemd-v1-meson.build-do-not-generate-gir-
> or-gtkdo.patch \
>             "
>  
> -PV = "2.2.3"
> -SRCREV = "4c75c6f8b39ee57aebe8fd36ef84808e893048c0"
> +PV = "2.4.0"
> +SRCREV = "d0a3eda45e083e8fe8b329a2310a53abdbf1e4d6"
>  
>  S = "${WORKDIR}/git"
>  
>  inherit meson gobject-introspection
>  
> -EXTRA_OEMESON = "-Ddeveloper_build=false -Dbuild_api_v1=true
> -Dbuild_api_v2=false"
> +EXTRA_OEMESON = "-Ddeveloper_build=false -Dbuild_api_v1=true
> -Dbuild_api_v2=true"
>  
>  DEPENDS += "glib-2.0 libyaml glib-2.0-native"

I'm wondering if this caused:

https://autobuilder.yoctoproject.org/typhoon/#/builders/15/builds/852

?

I think its something in this series...

Cheers,

Richard




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

* Re: [PATCH 03/42] libmodulemd: upgrade 2.2.3 -> 2.4.0
  2019-05-21 14:41   ` Richard Purdie
@ 2019-05-21 16:15     ` Alexander Kanavin
  0 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-21 16:15 UTC (permalink / raw)
  To: Richard Purdie; +Cc: OE-core

Yes - I just sent a patch for the issue. libmodulemd comes in v2 and
v1 flavours, and there was confusion about which one to link to
(libdnf needs v1, createrepo-c wants v2).

Alex

On Tue, 21 May 2019 at 16:41, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>
> On Mon, 2019-05-20 at 16:10 +0200, Alexander Kanavin wrote:
> > Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> > ---
> >  meta/recipes-devtools/libmodulemd/libmodulemd_git.bb | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
> > b/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
> > index 40715c06ee2..d7f486868b8 100644
> > --- a/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
> > +++ b/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb
> > @@ -7,14 +7,14 @@ SRC_URI = "git://github.com/fedora-
> > modularity/libmodulemd;protocol=https \
> >             file://0002-modulemd-v1-meson.build-do-not-generate-gir-
> > or-gtkdo.patch \
> >             "
> >
> > -PV = "2.2.3"
> > -SRCREV = "4c75c6f8b39ee57aebe8fd36ef84808e893048c0"
> > +PV = "2.4.0"
> > +SRCREV = "d0a3eda45e083e8fe8b329a2310a53abdbf1e4d6"
> >
> >  S = "${WORKDIR}/git"
> >
> >  inherit meson gobject-introspection
> >
> > -EXTRA_OEMESON = "-Ddeveloper_build=false -Dbuild_api_v1=true
> > -Dbuild_api_v2=false"
> > +EXTRA_OEMESON = "-Ddeveloper_build=false -Dbuild_api_v1=true
> > -Dbuild_api_v2=true"
> >
> >  DEPENDS += "glib-2.0 libyaml glib-2.0-native"
>
> I'm wondering if this caused:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/15/builds/852
>
> ?
>
> I think its something in this series...
>
> Cheers,
>
> Richard
>
>


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

* Re: [PATCH 32/42] libdnf: upgrade 0.28.1 -> 0.33.0
  2019-05-20 14:11 ` [PATCH 32/42] libdnf: upgrade 0.28.1 -> 0.33.0 Alexander Kanavin
@ 2019-05-21 18:44   ` Richard Purdie
  2019-05-21 19:00     ` Alexander Kanavin
  0 siblings, 1 reply; 56+ messages in thread
From: Richard Purdie @ 2019-05-21 18:44 UTC (permalink / raw)
  To: Alexander Kanavin, openembedded-core

On Mon, 2019-05-20 at 16:11 +0200, Alexander Kanavin wrote:
> Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> ---
>  .../libdnf/{libdnf_0.28.1.bb => libdnf_0.33.0.bb}               | 2
> +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>  rename meta/recipes-devtools/libdnf/{libdnf_0.28.1.bb =>
> libdnf_0.33.0.bb} (95%)

libdnf-native build failure:

https://autobuilder.yoctoproject.org/typhoon/#/builders/23/builds/850

Could be caused by the other fix? :/

Cheers,

Richard





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

* Re: [PATCH 32/42] libdnf: upgrade 0.28.1 -> 0.33.0
  2019-05-21 18:44   ` Richard Purdie
@ 2019-05-21 19:00     ` Alexander Kanavin
  2019-05-21 19:05       ` richard.purdie
  0 siblings, 1 reply; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-21 19:00 UTC (permalink / raw)
  To: Richard Purdie; +Cc: OE-core

On Tue, 21 May 2019 at 20:44, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>
> On Mon, 2019-05-20 at 16:11 +0200, Alexander Kanavin wrote:
> > Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> > ---
> >  .../libdnf/{libdnf_0.28.1.bb => libdnf_0.33.0.bb}               | 2
> > +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >  rename meta/recipes-devtools/libdnf/{libdnf_0.28.1.bb =>
> > libdnf_0.33.0.bb} (95%)
>
> libdnf-native build failure:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/23/builds/850
>
> Could be caused by the other fix? :/

No, this looks different, and probably specific to the c++ compiler on
Debian 9 host - what gcc version does it have?

| FAILED: libdnf/CMakeFiles/libdnf.dir/sack/query.cpp.o
| /home/pokybuild/yocto-worker/build-appliance/build/build/tmp/hosttools/g++
-DLIBDNF_UNSTABLE_API -D_FILE_OFFSET_BITS=64 -Dlibdnf_EXPORTS
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/gio-unix-2.0
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/libmount
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/blkid
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/uuid
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/lib/libffi-3.2.1/include
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/glib-2.0
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/lib/glib-2.0/include
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/json-c
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../usr/include/libxml2
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/git
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/git/libdnf/utils
-I/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/git/libdnf/transaction
-isystem/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/recipe-sysroot-native/usr/include
-O2 -pipe -std=c++11 -Wmissing-declarations -fPIC
-DPACKAGE_VERSION=\"0.33.0\" -DGETTEXT_DOMAIN=\"libdnf\"
-DG_LOG_DOMAIN=\"libdnf\"
-DTESTDATADIR=\"/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/git/data/tests\"
-Wcast-align -Wno-uninitialized -Wredundant-decls -Wwrite-strings
-Wformat-nonliteral -Wmissing-format-attribute -Wsign-compare
-Wtype-limits -Wuninitialized -Wall
-Werror=implicit-function-declaration -Wl,--as-needed -MD -MT
libdnf/CMakeFiles/libdnf.dir/sack/query.cpp.o -MF
libdnf/CMakeFiles/libdnf.dir/sack/query.cpp.o.d -o
libdnf/CMakeFiles/libdnf.dir/sack/query.cpp.o -c
/home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/git/libdnf/sack/query.cpp
| /home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/git/libdnf/sack/query.cpp:54:13:
error: specialization of ‘template<class _Tp> struct
std::default_delete’ in different namespace [-fpermissive]
| struct std::default_delete<DnfPackage> {
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
| In file included from /usr/include/c++/6/memory:81:0,
| from /home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/git/libdnf/sack/advisory.hpp:25,
| from /home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/git/libdnf/utils/utils.hpp:10,
| from /home/pokybuild/yocto-worker/build-appliance/build/build/tmp/work/x86_64-linux/libdnf-native/0.33.0-r0/git/libdnf/sack/query.cpp:21:
| /usr/include/c++/6/bits/unique_ptr.h:54:12: error: from definition
of ‘template<class _Tp> struct std::default_delete’ [-fpermissive]
| struct default_delete
| ^~~~~~~~~~~~~~

Alex


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

* Re: [PATCH 32/42] libdnf: upgrade 0.28.1 -> 0.33.0
  2019-05-21 19:00     ` Alexander Kanavin
@ 2019-05-21 19:05       ` richard.purdie
  2019-05-21 19:20         ` Alexander Kanavin
  0 siblings, 1 reply; 56+ messages in thread
From: richard.purdie @ 2019-05-21 19:05 UTC (permalink / raw)
  To: Alexander Kanavin; +Cc: OE-core

On Tue, 2019-05-21 at 21:00 +0200, Alexander Kanavin wrote:
> On Tue, 21 May 2019 at 20:44, Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
> > On Mon, 2019-05-20 at 16:11 +0200, Alexander Kanavin wrote:
> > > Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> > > ---
> > >  .../libdnf/{libdnf_0.28.1.bb =>
> > > libdnf_0.33.0.bb}               | 2
> > > +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >  rename meta/recipes-devtools/libdnf/{libdnf_0.28.1.bb =>
> > > libdnf_0.33.0.bb} (95%)
> > 
> > libdnf-native build failure:
> > 
> > https://autobuilder.yoctoproject.org/typhoon/#/builders/23/builds/850
> > 
> > Could be caused by the other fix? :/
> 
> No, this looks different, and probably specific to the c++ compiler
> on
> Debian 9 host - what gcc version does it have?

purdie@debian9-ty-2:~$ gcc --version
gcc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516

Cheers,

Richard




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

* Re: [PATCH 32/42] libdnf: upgrade 0.28.1 -> 0.33.0
  2019-05-21 19:05       ` richard.purdie
@ 2019-05-21 19:20         ` Alexander Kanavin
  0 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-21 19:20 UTC (permalink / raw)
  To: Richard Purdie; +Cc: OE-core

On Tue, 21 May 2019 at 21:05, <richard.purdie@linuxfoundation.org> wrote:
> > On Tue, 21 May 2019 at 20:44, Richard Purdie
> > <richard.purdie@linuxfoundation.org> wrote:
> > > On Mon, 2019-05-20 at 16:11 +0200, Alexander Kanavin wrote:
> > > > Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> > > > ---
> > > >  .../libdnf/{libdnf_0.28.1.bb =>
> > > > libdnf_0.33.0.bb}               | 2
> > > > +-
> > > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > > >  rename meta/recipes-devtools/libdnf/{libdnf_0.28.1.bb =>
> > > > libdnf_0.33.0.bb} (95%)
> > >
> > > libdnf-native build failure:
> > >
> > > https://autobuilder.yoctoproject.org/typhoon/#/builders/23/builds/850
> > >
> > > Could be caused by the other fix? :/
> >
> > No, this looks different, and probably specific to the c++ compiler
> > on
> > Debian 9 host - what gcc version does it have?
>
> purdie@debian9-ty-2:~$ gcc --version
> gcc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516

Right, on my Ubuntu 18.04 gcc is 7.3, and apparently a bug that may be
triggering this has been fixed from 7.x onwards:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56480

I reported this upstream, meanwhile I guess we should defer the update
(the alternative - adding '-fpermissive' to c++ flags for libdnf is
really not a good way to 'fix' things :-/ )
https://github.com/rpm-software-management/libdnf/issues/733

Alex


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

* Re: [PATCH 13/42] systemtap: upgrade 4.0 -> 4.1
  2019-05-20 14:10 ` [PATCH 13/42] systemtap: upgrade 4.0 -> 4.1 Alexander Kanavin
@ 2019-05-21 21:37   ` Victor Kamensky (kamensky)
  2019-05-22 10:09     ` Alexander Kanavin
  0 siblings, 1 reply; 56+ messages in thread
From: Victor Kamensky (kamensky) @ 2019-05-21 21:37 UTC (permalink / raw)
  To: Alexander Kanavin, openembedded-core

Hi Alexander,

I am curios how much did you test it? I had the same patch for
a while, waited to post it till proper regressions are done.

Thanks,
Victor

________________________________________
From: openembedded-core-bounces@lists.openembedded.org <openembedded-core-bounces@lists.openembedded.org> on behalf of Alexander Kanavin <alex.kanavin@gmail.com>
Sent: Monday, May 20, 2019 7:10 AM
To: openembedded-core@lists.openembedded.org
Subject: [OE-core] [PATCH 13/42] systemtap: upgrade 4.0 -> 4.1

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/recipes-kernel/systemtap/systemtap_git.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
index 54de7226608..c5348b3204b 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.inc
+++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
@@ -1,7 +1,7 @@
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-SRCREV = "90ff34ac0506f0d5440393a4c78565f6aaf9b726"
-PV = "4.0"
+SRCREV = "984d6d1696ed06626b07cb65ab55d6ae0ece1131"
+PV = "4.1"

 SRC_URI = "git://sourceware.org/git/systemtap.git \
            file://configure-allow-to-disable-libvirt.patch \
--
2.17.1

--
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH 13/42] systemtap: upgrade 4.0 -> 4.1
  2019-05-21 21:37   ` Victor Kamensky (kamensky)
@ 2019-05-22 10:09     ` Alexander Kanavin
  0 siblings, 0 replies; 56+ messages in thread
From: Alexander Kanavin @ 2019-05-22 10:09 UTC (permalink / raw)
  To: Victor Kamensky (kamensky); +Cc: openembedded-core

Didn't test it at all; the patch was produced by AUH, so I simply picked it up.

Do we have anything in the autobuilder for it?

Alex

On Tue, 21 May 2019 at 23:37, Victor Kamensky (kamensky)
<kamensky@cisco.com> wrote:
>
> Hi Alexander,
>
> I am curios how much did you test it? I had the same patch for
> a while, waited to post it till proper regressions are done.
>
> Thanks,
> Victor
>
> ________________________________________
> From: openembedded-core-bounces@lists.openembedded.org <openembedded-core-bounces@lists.openembedded.org> on behalf of Alexander Kanavin <alex.kanavin@gmail.com>
> Sent: Monday, May 20, 2019 7:10 AM
> To: openembedded-core@lists.openembedded.org
> Subject: [OE-core] [PATCH 13/42] systemtap: upgrade 4.0 -> 4.1
>
> Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
> ---
>  meta/recipes-kernel/systemtap/systemtap_git.inc | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc
> index 54de7226608..c5348b3204b 100644
> --- a/meta/recipes-kernel/systemtap/systemtap_git.inc
> +++ b/meta/recipes-kernel/systemtap/systemtap_git.inc
> @@ -1,7 +1,7 @@
>  LICENSE = "GPLv2"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> -SRCREV = "90ff34ac0506f0d5440393a4c78565f6aaf9b726"
> -PV = "4.0"
> +SRCREV = "984d6d1696ed06626b07cb65ab55d6ae0ece1131"
> +PV = "4.1"
>
>  SRC_URI = "git://sourceware.org/git/systemtap.git \
>             file://configure-allow-to-disable-libvirt.patch \
> --
> 2.17.1
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

end of thread, other threads:[~2019-05-22 10:09 UTC | newest]

Thread overview: 56+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-20 14:10 [PATCH 01/42] vim: split the common part into vim.inc Alexander Kanavin
2019-05-20 14:10 ` [PATCH 02/42] librepo: upgrade 1.9.6 -> 1.10.2 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 03/42] libmodulemd: upgrade 2.2.3 -> 2.4.0 Alexander Kanavin
2019-05-21 14:41   ` Richard Purdie
2019-05-21 16:15     ` Alexander Kanavin
2019-05-20 14:10 ` [PATCH 04/42] createrepo-c: upgrade 0.12.2 -> 0.14.0 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 05/42] libdazzle: upgrade 3.32.1 -> 3.32.2 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 06/42] adwaita-icon-theme: upgrade 3.30.1 -> 3.32.0 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 07/42] piglit: upgrade to latest revision Alexander Kanavin
2019-05-20 17:52   ` Khem Raj
2019-05-20 14:10 ` [PATCH 08/42] bison: upgrade 3.1 -> 3.3.2 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 09/42] atk: upgrade 2.30.0 -> 2.32.0 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 10/42] python3-mako: upgrade 1.0.9 -> 1.0.10 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 11/42] nss: upgrade 3.43 -> 3.44 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 12/42] go: update 1.12.1->1.12.5 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 13/42] systemtap: upgrade 4.0 -> 4.1 Alexander Kanavin
2019-05-21 21:37   ` Victor Kamensky (kamensky)
2019-05-22 10:09     ` Alexander Kanavin
2019-05-20 14:10 ` [PATCH 14/42] gawk: upgrade 4.2.1 -> 5.0.0 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 15/42] alsa-plugins: upgrade 1.1.8 -> 1.1.9 Alexander Kanavin
2019-05-20 14:10 ` [PATCH 16/42] alsa-utils: " Alexander Kanavin
2019-05-20 14:11 ` [PATCH 17/42] alsa-lib: " Alexander Kanavin
2019-05-20 14:11 ` [PATCH 18/42] libpcre2: upgrade 10.32 -> 10.33 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 19/42] lz4: upgrade 1.9.0 -> 1.9.1 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 20/42] libxcrypt: upgrade 4.4.4 -> 4.4.6 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 21/42] python3-pip: upgrade 19.0.3 -> 19.1.1 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 22/42] iproute2: upgrade 5.0.0 -> 5.1.0 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 23/42] pkgconf: upgrade 1.6.0 -> 1.6.1 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 24/42] at-spi2-core: upgrade 2.30.0 -> 2.32.1 Alexander Kanavin
2019-05-20 17:54   ` Khem Raj
2019-05-20 18:50     ` Alexander Kanavin
2019-05-20 14:11 ` [PATCH 25/42] at-spi2-atk: upgrade 2.30.0 -> 2.32.0 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 26/42] glib-networking: upgrade 2.60.1 -> 2.60.2 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 27/42] libsoup-2.4: upgrade 2.66.1 -> 2.66.2 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 28/42] x264: upgrade to latest revision Alexander Kanavin
2019-05-20 14:11 ` [PATCH 29/42] linux-firmware: " Alexander Kanavin
2019-05-20 17:56   ` Khem Raj
2019-05-20 18:02     ` Martin Jansa
2019-05-20 18:57       ` Alexander Kanavin
2019-05-20 14:11 ` [PATCH 30/42] python3-pbr: upgrade 5.1.3 -> 5.2.0 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 31/42] bash-completion: upgrade 2.8 -> 2.9 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 32/42] libdnf: upgrade 0.28.1 -> 0.33.0 Alexander Kanavin
2019-05-21 18:44   ` Richard Purdie
2019-05-21 19:00     ` Alexander Kanavin
2019-05-21 19:05       ` richard.purdie
2019-05-21 19:20         ` Alexander Kanavin
2019-05-20 14:11 ` [PATCH 33/42] gst-examples: upgrade to 1.16.0 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 34/42] acpica: upgrade 20190405 -> 20190509 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 35/42] freetype: upgrade 2.9.1 -> 2.10.0 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 36/42] dnf: upgrade 4.2.2 -> 4.2.6 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 37/42] usbutils: upgrade 010->012 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 38/42] gnu-config: Update to latest SHA Alexander Kanavin
2019-05-20 14:11 ` [PATCH 39/42] vim: Rework things so vim adds features not vim-tiny removes Alexander Kanavin
2019-05-20 14:11 ` [PATCH 40/42] webkitgtk: update to 2.24.2 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 41/42] epiphany: update to 3.32.2 Alexander Kanavin
2019-05-20 14:11 ` [PATCH 42/42] btrfs-tools: update to 5.1 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.