summaryrefslogtreecommitdiff
path: root/sci-chemistry/pymol
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-12-07 02:07:26 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-12-07 02:07:26 +0000
commit2198f8593ae0312add1bdccb49edfcb935e5f8a6 (patch)
tree67d79ffd7e91cc3858d188c49a65f46860a9bac7 /sci-chemistry/pymol
parentd285f0ab4ab38d4ea1cd0757a465db5f06764e06 (diff)
gentoo auto-resync : 07:12:2024 - 02:07:26
Diffstat (limited to 'sci-chemistry/pymol')
-rw-r--r--sci-chemistry/pymol/Manifest1
-rw-r--r--sci-chemistry/pymol/files/pymol-2.5.0-format-security.patch15
2 files changed, 0 insertions, 16 deletions
diff --git a/sci-chemistry/pymol/Manifest b/sci-chemistry/pymol/Manifest
index 14721b14d7ae..483bb56c226e 100644
--- a/sci-chemistry/pymol/Manifest
+++ b/sci-chemistry/pymol/Manifest
@@ -1,4 +1,3 @@
-AUX pymol-2.5.0-format-security.patch 562 BLAKE2B 566f653ca3abd4498f9ee5d7255e1b06d8df320bd25a569620b1ee33da0cfb6a969fd3e0a65fbce7116cd6567d9a544c57f4d6d399bec00b9effa8273a52153c SHA512 4e93a0449470abdbd2d943ef0a5fac7f302485ca42c6d9ccdf1ab9a879029d5185c3f1a3a2e237fd8b3b3bf0a306bce07db3226257360127c97546480c233c4f
AUX pymol-3.0.0-SceneGetDrawFlag-indexing.patch 821 BLAKE2B c854aa49441b308ab7f12265442961ddeb3633b71234bd554d45c3950c3ddcf457ac98e0aa1d226ec7ee3abbd2d0207cce97e40144cb81992f241c3a964b1bcc SHA512 326e04f988ff585a062a342b9553ab6b074102c0599b210a5dfa769cb8841e1619e74b670a2d673a80b81c5a9218e052829e0cc574049a1363741e762cac59e7
AUX pymol-3.0.0-distutils-py3.12.patch 2620 BLAKE2B 802ef75cf22b408ff8e280c561f4954f7f4d816887107f8db36b85988c345948e7d2cfe97b099cb79794d61d3594666e12f90a64c1f0af2206458ade776a1a2b SHA512 3911207f1a03b19675105cd707d644e76258aa9ab58be3891833873d41b460f6161ac83d495a6bc58bf281831376d17186083d447269d755d2e69ee78e6fc5c2
AUX pymol-3.0.0-eof-maeffplugin.patch 1071 BLAKE2B b28941bd3fddb534fe150b3d98ef6a17058b25b59717a15ca9a807812f05d98f3f7b2cedee9230eab0465c493bbf375325259260bb1cd0d03beafbb4a8f306d0 SHA512 b39846fa9b3b90d5952f22fdde323039bd09a5c43abdd7975bc72880854f22ae39a0d3d30a6640e98c6d7e8734306e00af3fdae555a4292e48ad7b46a83753f8
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;