summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-11-25 21:01:18 +0100
committerConrad Kostecki <conikost@gentoo.org>2024-12-07 00:11:31 +0100
commit860b8be090386b0e5a5e00abcf1a0b7abbc50d5f (patch)
tree156b4d17112be1db9ca9aa7abf981b81759a6352 /sci-chemistry
parentnet-firewall/firewalld: remove unused patch (diff)
downloadgentoo-860b8be090386b0e5a5e00abcf1a0b7abbc50d5f.tar.gz
gentoo-860b8be090386b0e5a5e00abcf1a0b7abbc50d5f.tar.bz2
gentoo-860b8be090386b0e5a5e00abcf1a0b7abbc50d5f.zip
sci-chemistry/pymol: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sci-chemistry')
-rw-r--r--sci-chemistry/pymol/files/pymol-2.5.0-format-security.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/sci-chemistry/pymol/files/pymol-2.5.0-format-security.patch b/sci-chemistry/pymol/files/pymol-2.5.0-format-security.patch
deleted file mode 100644
index 080e5e8960e4..000000000000
--- a/sci-chemistry/pymol/files/pymol-2.5.0-format-security.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Author: Michael Banck <mbanck@debian.org>
-Description: Fix "error: format not a string literal and no format arguments [-Werror=format-security]" (#759860)
-Forwarded: yes
-
---- a/contrib/uiuc/plugins/molfile_plugin/src/maeffplugin.cpp
-+++ b/contrib/uiuc/plugins/molfile_plugin/src/maeffplugin.cpp
-@@ -2004,7 +2004,7 @@ namespace {
- }
- }
- catch (std::exception &e) {
-- fprintf(stderr, "%s", e.what());
-+ fprintf(stderr, "Cannot write timestamp to mae file: %s\n", e.what());
- return MOLFILE_ERROR;
- }
- return MOLFILE_SUCCESS;