Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/hamlib/files/
Date: Sat, 29 May 2021 18:05:58
Message-Id: 1622311541.2edcdac342151bc6741d165a0a11eee894a27fbf.tomjbe@gentoo
1 commit: 2edcdac342151bc6741d165a0a11eee894a27fbf
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Thu May 27 19:00:31 2021 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Sat May 29 18:05:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2edcdac3
7
8 media-libs/hamlib: remove unused patch(es)
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Closes: https://github.com/gentoo/gentoo/pull/21011
13 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
14
15 media-libs/hamlib/files/hamlib-3.3-format-security.patch | 14 --------------
16 1 file changed, 14 deletions(-)
17
18 diff --git a/media-libs/hamlib/files/hamlib-3.3-format-security.patch b/media-libs/hamlib/files/hamlib-3.3-format-security.patch
19 deleted file mode 100644
20 index bbf2de1d17d..00000000000
21 --- a/media-libs/hamlib/files/hamlib-3.3-format-security.patch
22 +++ /dev/null
23 @@ -1,14 +0,0 @@
24 -# Fixes build error with format-securety (bug #714682)
25 -diff --git a/tests/rotctl_parse.c b/tests/rotctl_parse.c
26 -index 44308cc..aab1300 100644
27 ---- a/tests/rotctl_parse.c
28 -+++ b/tests/rotctl_parse.c
29 -@@ -1009,7 +1009,7 @@ int rotctl_parse(ROT *my_rot, FILE *fin, FILE *fout, char *argv[], int argc)
30 - /* The starting position of the source string is the first
31 - * character past the initial '\'.
32 - */
33 -- snprintf(cmd_name, sizeof(cmd_name), parsed_input[0] + 1);
34 -+ snprintf(cmd_name, sizeof(cmd_name), "%s", parsed_input[0] + 1);
35 -
36 - /* Sanity check as valid multiple character commands consist of
37 - * alpha-numeric characters and the underscore ('_') character.