[meta-python][PATCH 2/2] python3-uinput: Fix build on 32bit arches using 64bit times_t
Signed-off-by: Khem Raj <raj.khem@...>
Cc: Bartosz Golaszewski <brgl@...> --- ...time_t-default-on-32bit-architecture.patch | 43 +++++++++++++++++++ .../python/python3-uinput_0.11.2.bb | 4 +- 2 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 meta-python/recipes-devtools/python/python3-uinput/0001-Deal-with-64bit-time_t-default-on-32bit-architecture.patch diff --git a/meta-python/recipes-devtools/python/python3-uinput/0001-Deal-with-64bit-time_t-default-on-32bit-architecture.patch b/meta-python/recipes-devtools/python/python3-uinput/0001-Deal-with-64bit-time_t-default-on-32bit-architecture.patch new file mode 100644 index 0000000000..4095fc9095 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-uinput/0001-Deal-with-64bit-time_t-default-on-32bit-architecture.patch @@ -0,0 +1,43 @@ +From 69adf9e32f5b11e15c0cbe17f9331c77fed65bf8 Mon Sep 17 00:00:00 2001 +From: Khem Raj <raj.khem@...> +Date: Sat, 28 May 2022 15:50:50 -0700 +Subject: [PATCH] Deal with 64bit time_t default on 32bit architectures + +Deal with Y2K38 concerns related to Linux input events on more recent +kernels and libcs on 32-bit systems + +Upstream-Status: Pending +Signed-off-by: Khem Raj <raj.khem@...> +--- + libsuinput/src/suinput.c | 11 ++++++++++- + 1 file changed, 10 insertions(+), 1 deletion(-) + +diff --git a/libsuinput/src/suinput.c b/libsuinput/src/suinput.c +index 8d5fb71..13ff16a 100644 +--- a/libsuinput/src/suinput.c ++++ b/libsuinput/src/suinput.c +@@ -45,11 +45,20 @@ int suinput_emit(int uinput_fd, uint16_t ev_type, uint16_t ev_code, + struct input_event event; + + memset(&event, 0, sizeof(event)); +- gettimeofday(&event.time, 0); + event.type = ev_type; + event.code = ev_code; + event.value = ev_value; + ++/* attempt to deal with 64-bit time keeping on recent 32-bit systems */ ++#if (__BITS_PER_LONG != 32 || !defined(__USE_TIME_BITS64)) ++ gettimeofday(&event.time, 0); ++#else ++ struct timeval now; ++ memset(&now, 0, sizeof(now)); ++ gettimeofday(&now, 0); ++ event.input_event_sec = now.tv_sec; ++ event.input_event_usec = now.tv_usec; ++#endif + return suinput_write_event(uinput_fd, &event); + } + +-- +2.36.1 + diff --git a/meta-python/recipes-devtools/python/python3-uinput_0.11.2.bb b/meta-python/recipes-devtools/python/python3-uinput_0.11.2.bb index 737bbfe2c8..ef466539bd 100644 --- a/meta-python/recipes-devtools/python/python3-uinput_0.11.2.bb +++ b/meta-python/recipes-devtools/python/python3-uinput_0.11.2.bb @@ -3,8 +3,10 @@ HOMEPAGE = "https://pypi.org/project/python-uinput/" LICENSE = "GPL-3.0-only" LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949" +SRC_URI += "file://0001-setup-use-setuptools-instead-of-distutils.patch \ + file://0001-Deal-with-64bit-time_t-default-on-32bit-architecture.patch \ +" SRC_URI[sha256sum] = "99392b676c77b5795b86b7d75274db33fe754fd1e06fb3d58b167c797dc47f0c" -SRC_URI += "file://0001-setup-use-setuptools-instead-of-distutils.patch" PYPI_PACKAGE = "python-uinput" -- 2.36.1 |
|
[meta-oe][PATCH 1/2] sdbus-c++: Link with libatomic for rv32
Fixes
libsdbus-c++.so.1.1.0: undefined reference to `__atomic_load_8' Signed-off-by: Khem Raj <raj.khem@...> --- meta-oe/recipes-core/sdbus-c++/sdbus-c++_1.1.0.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-core/sdbus-c++/sdbus-c++_1.1.0.bb b/meta-oe/recipes-core/sdbus-c++/sdbus-c++_1.1.0.bb index 03d1356042..107dbc6c9d 100644 --- a/meta-oe/recipes-core/sdbus-c++/sdbus-c++_1.1.0.bb +++ b/meta-oe/recipes-core/sdbus-c++/sdbus-c++_1.1.0.bb @@ -32,6 +32,7 @@ S = "${WORKDIR}/git" # libsdbus-c++.so.1.1.0: undefined reference to `__atomic_load_8' LDFLAGS:append:mips = " -Wl,--no-as-needed -latomic -Wl,--as-needed" LDFLAGS:append:powerpc = " -Wl,--no-as-needed -latomic -Wl,--as-needed" +LDFLAGS:append:riscv32 = " -Wl,--no-as-needed -latomic -Wl,--as-needed" do_install:append() { if ! ${@bb.utils.contains('PTEST_ENABLED', '1', 'true', 'false', d)}; then -- 2.36.1 |
|
Re: [meta-filesystems][PATCH] xfstests: add new recipe
Please address this warning
toggle quoted message
Show quoted text
stdio: WARNING: xfstests-git-r0 do_package_qa: QA Issue: Recipe LICENSE includes obsolete licenses GPL-2.0 [obsolete-license] On Sat, May 28, 2022 at 1:47 AM Vyacheslav Yurkov <uvv.mail@...> wrote:
|
|
Re: [meta-filesystems][PATCH] xfstests: add new recipe
Requires a recipe from master-next, so should be queued respectively.
toggle quoted message
Show quoted text
Thanks, Vyacheslav On 28.05.2022 10:46, Vyacheslav Yurkov via lists.openembedded.org wrote:
From: Vyacheslav Yurkov <Vyacheslav.Yurkov@...> |
|
[meta-filesystems][PATCH] xfstests: add new recipe
From: Vyacheslav Yurkov <Vyacheslav.Yurkov@...>
File system QA test suite Signed-off-by: Vyacheslav Yurkov <Vyacheslav.Yurkov@...> --- .../recipes-utils/xfstests/xfstests_git.bb | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 meta-filesystems/recipes-utils/xfstests/xfstests_git.bb diff --git a/meta-filesystems/recipes-utils/xfstests/xfstests_git.bb b/meta-filesystems/recipes-utils/xfstests/xfstests_git.bb new file mode 100644 index 000000000..238dbf889 --- /dev/null +++ b/meta-filesystems/recipes-utils/xfstests/xfstests_git.bb @@ -0,0 +1,61 @@ +SUMMARY = "File system QA test suite" +LICENSE = "GPL-2.0" +LIC_FILES_CHKSUM = "file://LICENSES/GPL-2.0;md5=74274e8a218423e49eefdea80bc55038" + +SRCREV_FORMAT = "xfstests_unionmount" + +SRC_URI = "\ + git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git;branch=master;name=xfstests \ + git://github.com/amir73il/unionmount-testsuite.git;branch=master;protocol=https;name=unionmount;destsuffix=unionmount-testsuite \ +" + +SRCREV_xfstests = "37881397f1aa62df3c63468049c80b301b0e89eb" +SRCREV_unionmount = "cec4c51a3bf8ba80bb99fc74b302749d4e3d2f1d" + +S = "${WORKDIR}/git" + +inherit autotools-brokensep useradd + +DEPENDS += "xfsprogs acl" +RDEPENDS:${PN} += "\ + bash \ + bc \ + coreutils \ + e2fsprogs \ + e2fsprogs-tune2fs \ + e2fsprogs-resize2fs \ + libcap-bin \ + overlayfs-progs \ + perl \ + python3 \ + python3-core \ + xfsprogs \ + acl \ +" + +USERADD_PACKAGES = "${PN}" +# these users are necessary to run the tests +USERADD_PARAM:${PN} = "-U -m fsgqa; -N 123456-fsgqa; -N fsgqa2" + +EXTRA_OECONF = "INSTALL_USER=root INSTALL_GROUP=root" + +# install-sh script in the project is outdated +# we use the one from the latest libtool to solve installation issues +# It looks like the upstream is not interested in having it fixed :( +# https://www.spinics.net/lists/fstests/msg16981.html +do_configure:prepend() { + cp ${STAGING_DIR_NATIVE}${datadir}/libtool/build-aux/install-sh ${B} +} + +do_install:append() { + unionmount_target_dir=${D}/usr/xfstests/unionmount-testsuite + install -d ${D}/usr/xfstests/unionmount-testsuite/tests + install -D ${WORKDIR}/unionmount-testsuite/tests/* -t $unionmount_target_dir/tests + install ${WORKDIR}/unionmount-testsuite/*.py -t $unionmount_target_dir + install ${WORKDIR}/unionmount-testsuite/run -t $unionmount_target_dir + install ${WORKDIR}/unionmount-testsuite/README -t $unionmount_target_dir +} + +FILES:${PN} += "\ + /usr/xfstests \ +" -- 2.25.1 |
|
[meta-oe][PATCH] mariadb: Fix i386 Clang builds
Signed-off-by: Armin Kuster <akuster808@...>
--- meta-oe/recipes-dbs/mysql/mariadb.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-dbs/mysql/mariadb.inc b/meta-oe/recipes-dbs/mysql/mariadb.inc index 3f246dc0a5..922373b633 100644 --- a/meta-oe/recipes-dbs/mysql/mariadb.inc +++ b/meta-oe/recipes-dbs/mysql/mariadb.inc @@ -77,6 +77,8 @@ LDFLAGS += " -pthread" BUILD_CFLAGS += "-fuse-ld=bfd" BUILD_CXXFLAGS += "-fuse-ld=bfd" +LDFLAGS:x86:toolchain-clang = "-latomic" + EXTRA_OECMAKE = "-DWITH_EMBEDDED_SERVER=ON \ -DWITH_JEMALLOC=no \ -DWITHOUT_TOKUDB=TRUE \ -- 2.25.1 |
|
Re: [meta-oe][PATCH V2] Upgrade fluentbit recipe from version 1.3.5 to 1.9.3
Lekshmi Ravindran
Hello All,
Please let me know if there is any feedback on this patch. Thanks, Lekshmi |
|
Re: [meta-oe][master][kirkstone][PATCH] mariadb: update to 10.7.4
On 5/26/22 19:03, Khem Raj wrote:
on x86 ( qemux86 ) This fails withAh. I can reproduce this with clang. -armin
|
|
[meta-networking][master][kirkstone][PATCH] conntrack-tools: fix postinst script
Adrian Freihofer
Fix error caused by postinst script of conntrack-tools:
do_rootfs: Postinstall scriptlets of ['conntrack-tools'] have failed... Configuring ... rootfs//var/lib/opkg/info/conntrack-tools.postinst: line 2: setcap: command not found conntrack-tools.postinst returned 127, marking as unpacked only... Signed-off-by: Adrian Freihofer <adrian.freihofer@...> --- .../recipes-filter/conntrack-tools/conntrack-tools_1.4.6.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.6.bb b/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.6.bb index 50f7ced88..8f57e823b 100644 --- a/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.6.bb +++ b/meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.6.bb @@ -37,3 +37,4 @@ do_install:append() { pkg_postinst:${PN} () { setcap cap_net_admin+ep "$D/${sbindir}/conntrack" } +PACKAGE_WRITE_DEPS += "libcap-native" -- 2.35.3 |
|
Problems with live555 as a dependency of VLC
Ori Pessach <mail@...>
What's
the correct way to compile add VLC with RTSP support to an image? VLC
seems to want live555 as a runtime dependency, but the live555 recipe
doesn't seem to package anything named live555 - only live555-openrtsp,
etc. so I get this error: ERROR: core-image-sato-1.0-r0 do_rootfs: Could not invoke dnf. Command '/mnt/data/vlc-build/tmp/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/recipe-sysroot-native/usr/bin/dnf -v --rpmverbosity=info -y -c /mnt/data/vlc-build/tmp/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/rootfs/etc/dnf/dnf.conf --setopt=reposdir=/mnt/data/vlc-build/tmp/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/rootfs/etc/yum.repos.d --installroot=/mnt/data/vlc-build/tmp/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/rootfs --setopt=logdir=/mnt/data/vlc-build/tmp/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/temp --repofrompath=oe-repo,/mnt/data/vlc-build/tmp/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/oe-rootfs-repo
--nogpgcheck install apache2 backend base-passwd cronie dnf ffmpeg
frontend grub-bootconf gstreamer1.0 gstreamer1.0-plugins-bad
gstreamer1.0-plugins-base gstreamer1.0-plugins-good
gstreamer1.0-plugins-ugly gstreamer1.0-vaapi intel-media-driver
intel-mediasdk intel-vaapi-driver kexec-tools libdrm libgl libva live555
makedumpfile mod-wsgi net-snmp-libs net-snmp-mibs net-snmp-server ntp
packagegroup-base-extended packagegroup-core-boot
packagegroup-core-ssh-dropbear packagegroup-core-x11
packagegroup-core-x11-base packagegroup-core-x11-sato psplash python3
python3-dateutil python3-simplejson qtbase qtbase-plugins qtbase-tools
qtserialport qtx11extras rpm run-postinsts shadow system-init tcpdump
videomon vlc watchdog x11vnc locale-base-en-us locale-base-en-gb'
returned 1: DNF version: 4.8.0 cachedir: /mnt/data/vlc-build/tmp/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/rootfs/var/cache/dnf Added oe-repo repo from /mnt/data/vlc-build/tmp/work/intel_corei7_64-poky-linux/core-image-sato/1.0-r0/oe-rootfs-repo User-Agent: falling back to 'libdnf': could not detect OS or basearch repo: using cache for: oe-repo oe-repo: using metadata from Fri 27 May 2022 06:53:45 AM UTC. Last metadata expiration check: 0:00:01 ago on Fri 27 May 2022 06:53:45 AM UTC. No match for argument: live555 Error: Unable to find a match: live555 But vlc seems to depend on live555 somehow. So, how do I figure out the dependency chain that results in live555 being included in the image? And how do I add live555 as a dependency of VLC so that it would actually build? Thanks, Ori Pessach |
|
[meta-oe][PATCH] graphviz: rrecommends on liberation-fonts
Kai Kang
From: Kai Kang <kai.kang@...>
There will be tofos in output pictures without any font, so make graphviz rrecommends on liberation-fonts. Signed-off-by: Kai Kang <kai.kang@...> --- meta-oe/recipes-graphics/graphviz/graphviz_2.50.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-graphics/graphviz/graphviz_2.50.0.bb b/meta-oe/recipes-graphics/graphviz/graphviz_2.50.0.bb index a9258e979..aa597cd8e 100644 --- a/meta-oe/recipes-graphics/graphviz/graphviz_2.50.0.bb +++ b/meta-oe/recipes-graphics/graphviz/graphviz_2.50.0.bb @@ -114,4 +114,6 @@ INSANE_SKIP:${PN}-python = "dev-so" FILES_SOLIBSDEV:append = " ${libdir}/graphviz/lib*${SOLIBSDEV}" +RRECOMMENDS:${PN} = "liberation-fonts" + BBCLASSEXTEND = "native nativesdk" -- 2.17.1 |
|
[meta-gnome][PATCH] libportal: add distro features check
Kai Kang
From: Kai Kang <kai.kang@...>
Add distro features check for libportal because it depends on gtk+3 which requires one of ${GTK3DISTROFEATURES}. Signed-off-by: Kai Kang <kai.kang@...> --- meta-gnome/recipes-gnome/libportal/libportal_0.6.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta-gnome/recipes-gnome/libportal/libportal_0.6.bb b/meta-gnome/recipes-gnome/libportal/libportal_0.6.bb index ec728d78b..9784f0481 100644 --- a/meta-gnome/recipes-gnome/libportal/libportal_0.6.bb +++ b/meta-gnome/recipes-gnome/libportal/libportal_0.6.bb @@ -10,7 +10,9 @@ SRC_URI = "git://github.com/flatpak/${BPN}.git;protocol=https;branch=main" SRCREV = "13df0b887a7eb7b0f9b14069561a41f62e813155" S = "${WORKDIR}/git" -inherit meson gtk-doc gobject-introspection +inherit meson gtk-doc gobject-introspection features_check + +ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" DEPENDS += "glib-2.0 glib-2.0-native gtk+3" -- 2.17.1 |
|
Re: [meta-oe][master][kirkstone][PATCH] mariadb: update to 10.7.4
on x86 ( qemux86 ) This fails with
toggle quoted message
Show quoted text
pfs_instr.cc:(.text+0x10a5): undefined reference to `__atomic_fetch_add_8' see https://errors.yoctoproject.org/Errors/Details/657260/ somewhere we need to link with latomic on x86 On Thu, May 26, 2022 at 12:32 PM Armin Kuster <akuster808@...> wrote:
|
|
[meta-initramfs][PATCH] ubi-utils-klibc: Disable lzo compression by default
This is still available if needed, however its obsolete and lzo has been
removed from oe-core, if needed add meta-oe to layer mix and enable this in packageconfigs Signed-off-by: Khem Raj <raj.khem@...> --- meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_2.0.2.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_2.0.2.bb b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_2.0.2.bb index 8b91fb4b93..43ddb82a00 100644 --- a/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_2.0.2.bb +++ b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_2.0.2.bb @@ -1,7 +1,7 @@ SUMMARY = "UBI utils statically compiled against klibc" DESCRIPTION = "Small sized tools from mtd-utils for use with initramfs." SECTION = "base" -DEPENDS = "zlib lzo e2fsprogs util-linux" +DEPENDS = "zlib e2fsprogs util-linux" HOMEPAGE = "http://www.linux-mtd.infradead.org/" LICENSE = "GPL-2.0-or-later" LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ @@ -25,6 +25,7 @@ EXTRA_OECONF += "--disable-tests --without-jffs --without-ubifs" PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'xattr', d)}" PACKAGECONFIG[xattr] = ",,acl," +PACKAGECONFIG[lzo] = "--with-lzo,--without-lzo,lzo" EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} ${@bb.utils.contains('PACKAGECONFIG', 'xattr', '', '-DWITHOUT_XATTR', d)} -I${S}/include' 'BUILDDIR=${S}'" -- 2.36.1 |
|
[meta-python] [PATCH] python3-pychromecast: upgrade 12.1.1 -> 12.1.2
zhengruoqin
Changelog:
========= Add some additional cast types (#622) Format some code (#621) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@...> --- ...n3-pychromecast_12.1.1.bb => python3-pychromecast_12.1.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pychromecast_12.1.1.bb => python3-pychromecast_12.1.2.bb} (83%) diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_12.1.1.bb b/meta-python/recipes-devtools/python/python3-pychromecast_12.1.2.bb similarity index 83% rename from meta-python/recipes-devtools/python/python3-pychromecast_12.1.1.bb rename to meta-python/recipes-devtools/python/python3-pychromecast_12.1.2.bb index b34c78eb8..c8686ab52 100644 --- a/meta-python/recipes-devtools/python/python3-pychromecast_12.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-pychromecast_12.1.2.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/balloob/pychromecast" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5" -SRC_URI[sha256sum] = "9545a22acdadc96603f76d7878c6ea17baf1328260cf560c887c8c12aad4c82c" +SRC_URI[sha256sum] = "6be626e5ba2f6ffaefbc13ddced84e8b60a9ef1b012f71039fc0f7a0bcb4bda6" PYPI_PACKAGE = "PyChromecast" -- 2.25.1 |
|
[meta-python] [PATCH] python3-humanize: upgrade 4.0.0 -> 4.1.0
zhengruoqin
Changelog:
========== Added ------ Support Python 3.11 (#13) Add Arabic language (jmoiron/humanize#256) Docs: add dark mode toggle and default to system preference (jmoiron/humanize#255) Documentation improvements (jmoiron/humanize#254) Changed ------- Update repo links (#2) Fixed ------- Removed VERSION from __all__ (#11) Signed-off-by: Zheng Ruoqin <zhengrq.fnst@...> --- .../{python3-humanize_4.0.0.bb => python3-humanize_4.1.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-humanize_4.0.0.bb => python3-humanize_4.1.0.bb} (82%) diff --git a/meta-python/recipes-devtools/python/python3-humanize_4.0.0.bb b/meta-python/recipes-devtools/python/python3-humanize_4.1.0.bb similarity index 82% rename from meta-python/recipes-devtools/python/python3-humanize_4.0.0.bb rename to meta-python/recipes-devtools/python/python3-humanize_4.1.0.bb index 86eed7338..df5a4e9d5 100644 --- a/meta-python/recipes-devtools/python/python3-humanize_4.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-humanize_4.1.0.bb @@ -5,7 +5,7 @@ SECTION = "devel/python" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d" -SRC_URI[sha256sum] = "ee1f872fdfc7d2ef4a28d4f80ddde9f96d36955b5d6b0dac4bdeb99502bddb00" +SRC_URI[sha256sum] = "3a119b242ec872c029d8b7bf8435a61a5798f124b244a08013aec5617302f80e" inherit pypi python_setuptools_build_meta -- 2.25.1 |
|
[meta-python] [PATCH] python3-paramiko: upgrade 2.10.4 -> 2.11.0
zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@...>
--- .../{python3-paramiko_2.10.4.bb => python3-paramiko_2.11.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-paramiko_2.10.4.bb => python3-paramiko_2.11.0.bb} (82%) diff --git a/meta-python/recipes-devtools/python/python3-paramiko_2.10.4.bb b/meta-python/recipes-devtools/python/python3-paramiko_2.11.0.bb similarity index 82% rename from meta-python/recipes-devtools/python/python3-paramiko_2.10.4.bb rename to meta-python/recipes-devtools/python/python3-paramiko_2.11.0.bb index 317368772..5c0cb1e1a 100644 --- a/meta-python/recipes-devtools/python/python3-paramiko_2.10.4.bb +++ b/meta-python/recipes-devtools/python/python3-paramiko_2.11.0.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/paramiko/paramiko/" LICENSE = "LGPL-2.1-only" LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5" -SRC_URI[sha256sum] = "3d2e650b6812ce6d160abff701d6ef4434ec97934b13e95cf1ad3da70ffb5c58" +SRC_URI[sha256sum] = "003e6bee7c034c21fbb051bf83dc0a9ee4106204dd3c53054c71452cc4ec3938" PYPI_PACKAGE = "paramiko" -- 2.25.1 |
|
[meta-python] [PATCH] python3-openpyxl: upgrade 3.0.9 -> 3.0.10
zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@...>
--- .../{python3-openpyxl_3.0.9.bb => python3-openpyxl_3.0.10.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-openpyxl_3.0.9.bb => python3-openpyxl_3.0.10.bb} (88%) diff --git a/meta-python/recipes-devtools/python/python3-openpyxl_3.0.9.bb b/meta-python/recipes-devtools/python/python3-openpyxl_3.0.10.bb similarity index 88% rename from meta-python/recipes-devtools/python/python3-openpyxl_3.0.9.bb rename to meta-python/recipes-devtools/python/python3-openpyxl_3.0.10.bb index 4dfd4490a..447c86ddb 100644 --- a/meta-python/recipes-devtools/python/python3-openpyxl_3.0.9.bb +++ b/meta-python/recipes-devtools/python/python3-openpyxl_3.0.10.bb @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148 inherit pypi setuptools3 -SRC_URI[sha256sum] = "40f568b9829bf9e446acfffce30250ac1fa39035124d55fc024025c41481c90f" +SRC_URI[sha256sum] = "e47805627aebcf860edb4edf7987b1309c1b3632f3750538ed962bbcc3bd7449" RDEPENDS:${PN} += "\ ${PYTHON_PN}-compression \ -- 2.25.1 |
|
[meta-python] [PATCH] python3-yappi: upgrade 1.3.3 -> 1.3.5
wangmy
1.3.5 (2022-05-20)
- Fix an exception with matplotlib on Python 3.10 (#97) - Fix incorrect walltime when same coroutine is ran with concurrent tasks (#58) Signed-off-by: Wang Mingyu <wangmy@...> --- .../python/{python3-yappi_1.3.3.bb => python3-yappi_1.3.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-yappi_1.3.3.bb => python3-yappi_1.3.5.bb} (89%) diff --git a/meta-python/recipes-devtools/python/python3-yappi_1.3.3.bb b/meta-python/recipes-devtools/python/python3-yappi_1.3.5.bb similarity index 89% rename from meta-python/recipes-devtools/python/python3-yappi_1.3.3.bb rename to meta-python/recipes-devtools/python/python3-yappi_1.3.5.bb index 45a5f058a..9b08f759a 100644 --- a/meta-python/recipes-devtools/python/python3-yappi_1.3.3.bb +++ b/meta-python/recipes-devtools/python/python3-yappi_1.3.5.bb @@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/sumerc/yappi" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=71c208c9a4fd864385eb69ad4caa3bee" -SRC_URI[sha256sum] = "855890cd9a90d833dd2df632d648de8ccd0a4c3131f1edc8abd004db0625b5e8" +SRC_URI[sha256sum] = "f54c25f04aa7c613633b529bffd14e0699a4363f414dc9c065616fd52064a49b" SRC_URI += " \ file://run-ptest \ -- 2.25.1 |
|
[meta-python] [PATCH] python3-grpcio-tools: upgrade 1.46.0 -> 1.46.3
zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@...>
--- ...n3-grpcio-tools_1.46.0.bb => python3-grpcio-tools_1.46.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-grpcio-tools_1.46.0.bb => python3-grpcio-tools_1.46.3.bb} (82%) diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.0.bb b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.3.bb similarity index 82% rename from meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.0.bb rename to meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.3.bb index 9569e8ec9..221a05ef1 100644 --- a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.0.bb +++ b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.46.3.bb @@ -10,7 +10,7 @@ inherit pypi setuptools3 DEPENDS += "${PYTHON_PN}-grpcio" SRC_URI += "file://0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch" -SRC_URI[sha256sum] = "9295bf9b1e6dd5bcb260d594745fa3d6a089daade28f3a80cb2bc976b5359b7d" +SRC_URI[sha256sum] = "31fee436ace5b3bd950cc3a8e68d6b84de1d6dc755959db7badc3470cdf22f70" RDEPENDS:${PN} = "${PYTHON_PN}-grpcio" -- 2.25.1 |
|