Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/tyxml/files/
Date: Thu, 01 Dec 2016 17:55:05
Message-Id: 1480614892.33e0056abf43f79420269bc37bf16a86dba227c3.aballier@gentoo
1 commit: 33e0056abf43f79420269bc37bf16a86dba227c3
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 1 17:54:39 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 1 17:54:52 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33e0056a
7
8 dev-ml/tyxml: fix uutf patch
9
10 Package-Manager: portage-2.3.2
11
12 dev-ml/tyxml/files/uutf.patch | 13 -------------
13 1 file changed, 13 deletions(-)
14
15 diff --git a/dev-ml/tyxml/files/uutf.patch b/dev-ml/tyxml/files/uutf.patch
16 index e7d0a3f..540d5c6 100644
17 --- a/dev-ml/tyxml/files/uutf.patch
18 +++ b/dev-ml/tyxml/files/uutf.patch
19 @@ -38,16 +38,3 @@ Index: tyxml-4.0.0/lib/xml_print.ml
20 | `Malformed _ ->
21 Uutf.Buffer.add_utf_8 buffer Uutf.u_rep;
22 warn:=true)
23 -Index: tyxml-4.0.0/ppx/ppx_attribute_value.ml
24 -===================================================================
25 ---- tyxml-4.0.0.orig/ppx/ppx_attribute_value.ml
26 -+++ tyxml-4.0.0/ppx/ppx_attribute_value.ml
27 -@@ -160,7 +160,7 @@ let char ?separated_by:_ ?default:_ loc
28 - let c =
29 - match next decoded with
30 - | None -> Ppx_common.error loc "No character in attribute %s" name
31 -- | Some i when i <= 255 -> Char.chr i
32 -+ | Some i when Uchar.to_int i <= 255 -> Char.chr (Uchar.to_int i)
33 - | Some _ ->
34 - Ppx_common.error loc "Character out of range in attribute %s" name
35 - in