From 399531aa095062ba9931d89a29ad4bc0d1dc6da3 Mon Sep 17 00:00:00 2001 From: Christophe Vu-Brugier Date: Mon, 12 Feb 2024 22:13:50 +0100 Subject: switchtec-user: upgrade 4.1 -> 4.2 Signed-off-by: Christophe Vu-Brugier Signed-off-by: Khem Raj --- .../0001-cli-Fix-format-security-warning.patch | 27 ---------------------- .../switchtec-user/switchtec-user_4.1.bb | 24 ------------------- .../switchtec-user/switchtec-user_4.2.bb | 21 +++++++++++++++++ 3 files changed, 21 insertions(+), 51 deletions(-) delete mode 100644 meta-oe/recipes-support/switchtec-user/switchtec-user/0001-cli-Fix-format-security-warning.patch delete mode 100644 meta-oe/recipes-support/switchtec-user/switchtec-user_4.1.bb create mode 100644 meta-oe/recipes-support/switchtec-user/switchtec-user_4.2.bb diff --git a/meta-oe/recipes-support/switchtec-user/switchtec-user/0001-cli-Fix-format-security-warning.patch b/meta-oe/recipes-support/switchtec-user/switchtec-user/0001-cli-Fix-format-security-warning.patch deleted file mode 100644 index ff2743eb68..0000000000 --- a/meta-oe/recipes-support/switchtec-user/switchtec-user/0001-cli-Fix-format-security-warning.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 2d61587f85d1bf57287d12b470afb94c0bf9249d Mon Sep 17 00:00:00 2001 -From: Davide Cavalca -Date: Mon, 27 Jun 2022 16:54:35 -0700 -Subject: [PATCH] cli: Fix format security warning - -Upstream-Status: Submitted [https://github.com/Microsemi/switchtec-user/pull/316] - ---- - cli/graph.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/cli/graph.c b/cli/graph.c -index 5748914..95609de 100644 ---- a/cli/graph.c -+++ b/cli/graph.c -@@ -134,7 +134,7 @@ static void draw_status(WINDOW *win, int x_off, int x_cnt, const char *status) - mvwprintw(win, 0, 0, " "); - for (i = 0; i < x_cnt * 2 + x_off; i++) - mvwaddch(win, 1, i, ' '); -- mvwprintw(win, 1, x_off, status); -+ mvwprintw(win, 1, x_off, "%s", status); - wrefresh(win); - } - --- -2.39.2 - diff --git a/meta-oe/recipes-support/switchtec-user/switchtec-user_4.1.bb b/meta-oe/recipes-support/switchtec-user/switchtec-user_4.1.bb deleted file mode 100644 index 443e5bc493..0000000000 --- a/meta-oe/recipes-support/switchtec-user/switchtec-user_4.1.bb +++ /dev/null @@ -1,24 +0,0 @@ -SUMMARY = "Easy to use CLI and C library for communicating with Microsemi's Switchtec management interface" -HOMEPAGE = "https://github.com/Microsemi/switchtec-user" -SECTION = "console/utils" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=3d6b07c89629cff2990d2e8e1f4c2382" - -DEPENDS = "ncurses openssl" - -SRCREV = "762ba441d2c02685f98e5f56e984db033bab279a" -SRC_URI = " \ - git://github.com/Microsemi/switchtec-user.git;protocol=https;branch=master \ - file://0001-cli-Fix-format-security-warning.patch \ -" -SRC_URI[sha256sum] = "f98c1fe23e1d7a11fb23e8bcf9b563929fc805ea669191a7fd525ad16519f655" - -S = "${WORKDIR}/git" - -inherit autotools-brokensep pkgconfig - -EXTRA_OEMAKE = "DESTDIR='${D}' PREFIX='${prefix}' LDCONFIG='true' LIBDIR='${D}${libdir}'" - -do_install () { - oe_runmake install -} diff --git a/meta-oe/recipes-support/switchtec-user/switchtec-user_4.2.bb b/meta-oe/recipes-support/switchtec-user/switchtec-user_4.2.bb new file mode 100644 index 0000000000..17f54dcf4c --- /dev/null +++ b/meta-oe/recipes-support/switchtec-user/switchtec-user_4.2.bb @@ -0,0 +1,21 @@ +SUMMARY = "Easy to use CLI and C library for communicating with Microsemi's Switchtec management interface" +HOMEPAGE = "https://github.com/Microsemi/switchtec-user" +SECTION = "console/utils" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=3d6b07c89629cff2990d2e8e1f4c2382" + +DEPENDS = "ncurses openssl" + +SRCREV = "e7c351c6c722336b3c79b79cd002c7c2986eefb0" +SRC_URI = "git://github.com/Microsemi/switchtec-user.git;protocol=https;branch=master" +SRC_URI[sha256sum] = "a715e46d8498418dbb8a2519318ba0714ee148151d7e4a7fa5e27770a2f6888f" + +S = "${WORKDIR}/git" + +inherit autotools-brokensep pkgconfig + +EXTRA_OEMAKE = "DESTDIR='${D}' PREFIX='${prefix}' LDCONFIG='true' LIBDIR='${D}${libdir}'" + +do_install () { + oe_runmake install +} -- cgit v1.2.3-54-g00ecf