All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ramon Fried <rfried.dev@gmail.com>
To: openembedded-devel@lists.openembedded.org
Cc: Ramon Fried <rfried.dev@gmail.com>
Subject: [meta-oe][PATCH] bitwise: Upgrade 0.42 -> 0.43
Date: Fri, 12 Nov 2021 01:46:37 +0200	[thread overview]
Message-ID: <20211111234637.526046-1-rfried.dev@gmail.com> (raw)

Signed-off-by: Ramon Fried <rfried.dev@gmail.com>
---
 .../{bitwise_0.42.bb => bitwise_0.43.bb}      |  3 +--
 ...ormat-security-errors-with-mvwprintw.patch | 27 -------------------
 2 files changed, 1 insertion(+), 29 deletions(-)
 rename meta-oe/recipes-extended/bitwise/{bitwise_0.42.bb => bitwise_0.43.bb} (82%)
 delete mode 100644 meta-oe/recipes-extended/bitwise/files/0001-Fix-Werror-format-security-errors-with-mvwprintw.patch

diff --git a/meta-oe/recipes-extended/bitwise/bitwise_0.42.bb b/meta-oe/recipes-extended/bitwise/bitwise_0.43.bb
similarity index 82%
rename from meta-oe/recipes-extended/bitwise/bitwise_0.42.bb
rename to meta-oe/recipes-extended/bitwise/bitwise_0.43.bb
index ebf4b3c5e..f473ccaf5 100644
--- a/meta-oe/recipes-extended/bitwise/bitwise_0.42.bb
+++ b/meta-oe/recipes-extended/bitwise/bitwise_0.43.bb
@@ -12,9 +12,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464"
 
 SRC_URI = "https://github.com/mellowcandle/bitwise/releases/download/v${PV}/bitwise-v${PV}.tar.gz \
            file://0001-makefile.am-Fix-build-when-build-dir-is-not-same-as-.patch \
-           file://0001-Fix-Werror-format-security-errors-with-mvwprintw.patch \
            "
-SRC_URI[sha256sum] = "d3d43cef47bf8f49e85f7ed381c3eaf1df921ca51805e0962f1a97a517e1d1d2"
+SRC_URI[sha256sum] = "f524f794188a10defc4df673d8cf0b3739f93e58e93aff0cdb8a99fbdcca2ffb"
 
 UPSTREAM_CHECK_URI = "https://github.com/mellowcandle/bitwise/releases"
 
diff --git a/meta-oe/recipes-extended/bitwise/files/0001-Fix-Werror-format-security-errors-with-mvwprintw.patch b/meta-oe/recipes-extended/bitwise/files/0001-Fix-Werror-format-security-errors-with-mvwprintw.patch
deleted file mode 100644
index ebcb0dd5e..000000000
--- a/meta-oe/recipes-extended/bitwise/files/0001-Fix-Werror-format-security-errors-with-mvwprintw.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 53237c103b06f58ad9c2ce3914fcc7fe73629f11 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Sat, 30 Oct 2021 01:11:33 -0700
-Subject: [PATCH] Fix -Werror=format-security errors with mvwprintw()
-
-Here a non-constant is used as a format string which
-compiler complains about. Fix by using "%s" as format.
-
-Upstream-Status: Submitted [https://github.com/mellowcandle/bitwise/pull/49]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- src/interactive.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/interactive.c b/src/interactive.c
-index cce418a..2c0b152 100644
---- a/src/interactive.c
-+++ b/src/interactive.c
-@@ -114,7 +114,7 @@ void update_history_win(void)
- 				break;
- 			}
- 
--		mvwprintw(history_win, j, 2, history[history_pos - i].line);
-+		mvwprintw(history_win, j, 2, "%s", history[history_pos - i].line);
- 	}
- 
- 	if (g_has_color)
-- 
2.33.0



                 reply	other threads:[~2021-11-11 23:46 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211111234637.526046-1-rfried.dev@gmail.com \
    --to=rfried.dev@gmail.com \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.