Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/hdf5/files: hdf5-1.8.10_p1-comments.patch
Date: Mon, 28 Jan 2013 19:41:07
Message-Id: 20130128194103.B2A092171E@flycatcher.gentoo.org
1 xarthisius 13/01/28 19:41:03
2
3 Added: hdf5-1.8.10_p1-comments.patch
4 Log:
5 Version bump
6
7 (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 895192F9)
8
9 Revision Changes Path
10 1.1 sci-libs/hdf5/files/hdf5-1.8.10_p1-comments.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/files/hdf5-1.8.10_p1-comments.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf5/files/hdf5-1.8.10_p1-comments.patch?rev=1.1&content-type=text/plain
14
15 Index: hdf5-1.8.10_p1-comments.patch
16 ===================================================================
17 Convert // comment marks to /**/ in order to fix FTBS on ia64
18
19 https://bugs.gentoo.org/show_bug.cgi?id=447740
20
21 Patch written by Kacper Kowalik <xarthisius@g.o>
22 --- a/tools/h5dump/h5dump_ddl.c
23 +++ b/tools/h5dump/h5dump_ddl.c
24 @@ -1341,8 +1341,8 @@ handle_attributes(hid_t fid, const char *attr, void UNUSED * data, int UNUSED pe
25 string_dataformat.do_escape = display_escape;
26 outputformat = &string_dataformat;
27
28 - //attr_name = attr + j + 1;
29 - // need to replace escape characters
30 + /* attr_name = attr + j + 1; */
31 + /* need to replace escape characters */
32 attr_name = h5tools_str_replace(attr + j + 1, "\\/", "/");
33
34
35 --- a/tools/lib/h5tools_str.c
36 +++ b/tools/lib/h5tools_str.c
37 @@ -632,7 +632,7 @@ h5tools_str_indent(h5tools_str_t *str, const h5tool_format_t *info,
38 h5tools_str_append(str, "%s", OPT(info->line_indent, ""));
39 }
40
41 -// ctx->need_prefix = 0;
42 + /* ctx->need_prefix = 0; */
43 }
44
45 /*-------------------------------------------------------------------------