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/, dev-ml/tyxml/
Date: Thu, 27 Apr 2017 10:51:15
Message-Id: 1493290256.8aad7fe9ca38287b79f5d48b05db9f2306968943.aballier@gentoo
1 commit: 8aad7fe9ca38287b79f5d48b05db9f2306968943
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 27 10:50:56 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 27 10:50:56 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8aad7fe9
7
8 dev-ml/tyxml: remove old
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 dev-ml/tyxml/Manifest | 1 -
13 dev-ml/tyxml/files/uutf.patch | 40 ----------------------------------------
14 dev-ml/tyxml/tyxml-4.0.1.ebuild | 36 ------------------------------------
15 3 files changed, 77 deletions(-)
16
17 diff --git a/dev-ml/tyxml/Manifest b/dev-ml/tyxml/Manifest
18 index bbf3405e244..62f104eba04 100644
19 --- a/dev-ml/tyxml/Manifest
20 +++ b/dev-ml/tyxml/Manifest
21 @@ -1,2 +1 @@
22 -DIST tyxml-4.0.1.tar.gz 179609 SHA256 b7dbb6dbb8a02c0ab62f078695af6fbb636d162bd0f341fc9bda7d88ef9a1dfa SHA512 ebc0f148602375d8df16df7815f60ad6edcc7b4830af9479fb0e71a394d5d6dd7cb36e592d026b06677537d29be4359201e52f047ad3e23f34d82401b33b31e3 WHIRLPOOL 0b1f5c790f1d11fa503a23ff265b5e2cdb570fb61879d19c95f1d454f325066945607f5f54ffbf822500a58bd19a88906b92d7e9dc1a142bd051a5845ba1db91
23 DIST tyxml-4.1.0.tar.gz 179852 SHA256 8721a46847735fbede8ce331f1b07d86699dd42f511deea668c1c886589bccd1 SHA512 add2b82939ea069ee74ee26ff3ee1f3ad2e361e593134da807e1acfbebff4ed546cbc23aca7ee2936a1eb8a736916d673aa2c96aeae8779706cd726bc2d07ead WHIRLPOOL 71b2eceea0820af9dd0b9d0b6581220f2b951d15f50e3face8a2d5c44bd53f3523fedfdf3d88affe4c6be23e6eaf23cacd39fe452c76b96cbbd3d02ce516c8ab
24
25 diff --git a/dev-ml/tyxml/files/uutf.patch b/dev-ml/tyxml/files/uutf.patch
26 deleted file mode 100644
27 index 540d5c620f9..00000000000
28 --- a/dev-ml/tyxml/files/uutf.patch
29 +++ /dev/null
30 @@ -1,40 +0,0 @@
31 -Index: tyxml-4.0.0/lib/xml_print.ml
32 -===================================================================
33 ---- tyxml-4.0.0.orig/lib/xml_print.ml
34 -+++ tyxml-4.0.0/lib/xml_print.ml
35 -@@ -154,15 +154,14 @@ module Utf8 = struct
36 - Uutf.String.fold_utf_8
37 - (fun _ _ d ->
38 - match d with
39 -- | `Uchar 34 ->
40 -- Buffer.add_string buffer "&quot;"
41 -- | `Uchar 38 ->
42 -- Buffer.add_string buffer "&amp;"
43 -- | `Uchar 60 ->
44 -- Buffer.add_string buffer "&lt;"
45 -- | `Uchar 62 ->
46 -- Buffer.add_string buffer "&gt;"
47 -- | `Uchar code ->
48 -+ | `Uchar ucode ->
49 -+ begin
50 -+ match Uchar.to_int ucode with
51 -+ | 34 -> Buffer.add_string buffer "&quot;"
52 -+ | 38 -> Buffer.add_string buffer "&amp;"
53 -+ | 60 -> Buffer.add_string buffer "&lt;"
54 -+ | 62 -> Buffer.add_string buffer "&gt;"
55 -+ | code ->
56 - let u =
57 - (* Illegal characters in html
58 - http://en.wikipedia.org/wiki/Character_encodings_in_HTML
59 -@@ -181,9 +180,10 @@ module Utf8 = struct
60 - || code land 0xFFFF = 0xFFFE
61 - || code land 0xFFFF = 0xFFFF
62 - then (warn:=true; Uutf.u_rep)
63 -- else code
64 -+ else ucode
65 - in
66 - Uutf.Buffer.add_utf_8 buffer u
67 -+ end
68 - | `Malformed _ ->
69 - Uutf.Buffer.add_utf_8 buffer Uutf.u_rep;
70 - warn:=true)
71
72 diff --git a/dev-ml/tyxml/tyxml-4.0.1.ebuild b/dev-ml/tyxml/tyxml-4.0.1.ebuild
73 deleted file mode 100644
74 index a2348f7c739..00000000000
75 --- a/dev-ml/tyxml/tyxml-4.0.1.ebuild
76 +++ /dev/null
77 @@ -1,36 +0,0 @@
78 -# Copyright 1999-2016 Gentoo Foundation
79 -# Distributed under the terms of the GNU General Public License v2
80 -
81 -EAPI=5
82 -
83 -OASIS_BUILD_DOCS=1
84 -# Cannot find findlib package alcotest
85 -# OASIS_BUILD_TESTS=1
86 -
87 -inherit oasis
88 -
89 -DESCRIPTION="A libary to build xml trees typechecked by OCaml"
90 -HOMEPAGE="http://ocsigen.org/tyxml/"
91 -SRC_URI="https://github.com/ocsigen/tyxml/archive/${PV}.tar.gz -> ${P}.tar.gz"
92 -
93 -LICENSE="LGPL-2.1-with-linking-exception"
94 -SLOT="0/${PV}"
95 -KEYWORDS="~amd64"
96 -IUSE="+ppx +camlp4"
97 -
98 -DEPEND="
99 - >=dev-ml/uutf-1.0:=
100 - dev-ml/ocaml-re:=
101 - ppx? ( >=dev-ml/ppx_tools-5:= dev-ml/markup:= )
102 - camlp4? ( dev-ml/camlp4:= )"
103 -RDEPEND="${DEPEND}"
104 -
105 -DOCS=( CHANGES README.md )
106 -PATCHES=( "${FILESDIR}/uutf.patch" )
107 -
108 -src_configure() {
109 - oasis_configure_opts="
110 - $(use_enable camlp4 syntax)
111 - $(use_enable ppx)
112 - " oasis_src_configure
113 -}