Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/vmd/files/
Date: Tue, 31 Jan 2017 08:42:39
Message-Id: 1485852109.3d4f57e6ea5f8b0624f55ddfd91bb61854b63c97.soap@gentoo
1 commit: 3d4f57e6ea5f8b0624f55ddfd91bb61854b63c97
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 30 17:58:08 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 31 08:41:49 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d4f57e6
7
8 sci-chemistry/vmd: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/3730
11
12 sci-chemistry/vmd/files/vmd-1.9.1-tcl8.6.patch | 25 -------------------------
13 1 file changed, 25 deletions(-)
14
15 diff --git a/sci-chemistry/vmd/files/vmd-1.9.1-tcl8.6.patch b/sci-chemistry/vmd/files/vmd-1.9.1-tcl8.6.patch
16 deleted file mode 100644
17 index 0c3e45d..00000000
18 --- a/sci-chemistry/vmd/files/vmd-1.9.1-tcl8.6.patch
19 +++ /dev/null
20 @@ -1,25 +0,0 @@
21 - plugins/molfile_plugin/src/webpdbplugin.c | 4 ++--
22 - 1 file changed, 2 insertions(+), 2 deletions(-)
23 -
24 -diff --git a/plugins/molfile_plugin/src/webpdbplugin.c b/plugins/molfile_plugin/src/webpdbplugin.c
25 -index 80b3bb9..78597f5 100644
26 ---- a/plugins/molfile_plugin/src/webpdbplugin.c
27 -+++ b/plugins/molfile_plugin/src/webpdbplugin.c
28 -@@ -202,7 +202,7 @@ static void *open_file_read(const char *filename, const char *filetype,
29 - sprintf(url, "http://www.rcsb.org/pdb/downloadFile.do?fileFormat=pdb&compression=NO&structureId=%s",filename);
30 - sprintf(cmd, "set token [::http::geturl \"%s\"]", url);
31 - if (Tcl_Eval(interp, cmd) != TCL_OK) {
32 -- fprintf(stderr, "Error loading PDB: %s\n",interp->result);
33 -+ fprintf(stderr, "Error loading PDB: %s\n",Tcl_GetStringResult(interp));
34 - Tcl_DeleteInterp(interp);
35 - return NULL;
36 - }
37 -@@ -211,7 +211,7 @@ static void *open_file_read(const char *filename, const char *filetype,
38 -
39 - result = Tcl_GetVar2(interp, (char *)"state", "body", TCL_GLOBAL_ONLY);
40 - if (!result) {
41 -- fprintf(stderr, "Error loading PDB: %s\n", interp->result);
42 -+ fprintf(stderr, "Error loading PDB: %s\n", Tcl_GetStringResult(interp));
43 - Tcl_DeleteInterp(interp);
44 - return NULL;
45 - }