summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2017-04-27 12:50:56 +0200
committerAlexis Ballier <aballier@gentoo.org>2017-04-27 12:50:56 +0200
commit8aad7fe9ca38287b79f5d48b05db9f2306968943 (patch)
tree91cd5ac50bf3e50e4522b000531115a71cfee9f2
parentdev-ml/reactiveData: update remoteid (diff)
downloadgentoo-8aad7fe9ca38287b79f5d48b05db9f2306968943.tar.gz
gentoo-8aad7fe9ca38287b79f5d48b05db9f2306968943.tar.bz2
gentoo-8aad7fe9ca38287b79f5d48b05db9f2306968943.zip
dev-ml/tyxml: remove old
Package-Manager: Portage-2.3.5, Repoman-2.3.2
-rw-r--r--dev-ml/tyxml/Manifest1
-rw-r--r--dev-ml/tyxml/files/uutf.patch40
-rw-r--r--dev-ml/tyxml/tyxml-4.0.1.ebuild36
3 files changed, 0 insertions, 77 deletions
diff --git a/dev-ml/tyxml/Manifest b/dev-ml/tyxml/Manifest
index bbf3405e2448..62f104eba046 100644
--- a/dev-ml/tyxml/Manifest
+++ b/dev-ml/tyxml/Manifest
@@ -1,2 +1 @@
-DIST tyxml-4.0.1.tar.gz 179609 SHA256 b7dbb6dbb8a02c0ab62f078695af6fbb636d162bd0f341fc9bda7d88ef9a1dfa SHA512 ebc0f148602375d8df16df7815f60ad6edcc7b4830af9479fb0e71a394d5d6dd7cb36e592d026b06677537d29be4359201e52f047ad3e23f34d82401b33b31e3 WHIRLPOOL 0b1f5c790f1d11fa503a23ff265b5e2cdb570fb61879d19c95f1d454f325066945607f5f54ffbf822500a58bd19a88906b92d7e9dc1a142bd051a5845ba1db91
DIST tyxml-4.1.0.tar.gz 179852 SHA256 8721a46847735fbede8ce331f1b07d86699dd42f511deea668c1c886589bccd1 SHA512 add2b82939ea069ee74ee26ff3ee1f3ad2e361e593134da807e1acfbebff4ed546cbc23aca7ee2936a1eb8a736916d673aa2c96aeae8779706cd726bc2d07ead WHIRLPOOL 71b2eceea0820af9dd0b9d0b6581220f2b951d15f50e3face8a2d5c44bd53f3523fedfdf3d88affe4c6be23e6eaf23cacd39fe452c76b96cbbd3d02ce516c8ab
diff --git a/dev-ml/tyxml/files/uutf.patch b/dev-ml/tyxml/files/uutf.patch
deleted file mode 100644
index 540d5c620f9a..000000000000
--- a/dev-ml/tyxml/files/uutf.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-Index: tyxml-4.0.0/lib/xml_print.ml
-===================================================================
---- tyxml-4.0.0.orig/lib/xml_print.ml
-+++ tyxml-4.0.0/lib/xml_print.ml
-@@ -154,15 +154,14 @@ module Utf8 = struct
- Uutf.String.fold_utf_8
- (fun _ _ d ->
- match d with
-- | `Uchar 34 ->
-- Buffer.add_string buffer "&quot;"
-- | `Uchar 38 ->
-- Buffer.add_string buffer "&amp;"
-- | `Uchar 60 ->
-- Buffer.add_string buffer "&lt;"
-- | `Uchar 62 ->
-- Buffer.add_string buffer "&gt;"
-- | `Uchar code ->
-+ | `Uchar ucode ->
-+ begin
-+ match Uchar.to_int ucode with
-+ | 34 -> Buffer.add_string buffer "&quot;"
-+ | 38 -> Buffer.add_string buffer "&amp;"
-+ | 60 -> Buffer.add_string buffer "&lt;"
-+ | 62 -> Buffer.add_string buffer "&gt;"
-+ | code ->
- let u =
- (* Illegal characters in html
- http://en.wikipedia.org/wiki/Character_encodings_in_HTML
-@@ -181,9 +180,10 @@ module Utf8 = struct
- || code land 0xFFFF = 0xFFFE
- || code land 0xFFFF = 0xFFFF
- then (warn:=true; Uutf.u_rep)
-- else code
-+ else ucode
- in
- Uutf.Buffer.add_utf_8 buffer u
-+ end
- | `Malformed _ ->
- Uutf.Buffer.add_utf_8 buffer Uutf.u_rep;
- warn:=true)
diff --git a/dev-ml/tyxml/tyxml-4.0.1.ebuild b/dev-ml/tyxml/tyxml-4.0.1.ebuild
deleted file mode 100644
index a2348f7c7391..000000000000
--- a/dev-ml/tyxml/tyxml-4.0.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-# Cannot find findlib package alcotest
-# OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="A libary to build xml trees typechecked by OCaml"
-HOMEPAGE="http://ocsigen.org/tyxml/"
-SRC_URI="https://github.com/ocsigen/tyxml/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="+ppx +camlp4"
-
-DEPEND="
- >=dev-ml/uutf-1.0:=
- dev-ml/ocaml-re:=
- ppx? ( >=dev-ml/ppx_tools-5:= dev-ml/markup:= )
- camlp4? ( dev-ml/camlp4:= )"
-RDEPEND="${DEPEND}"
-
-DOCS=( CHANGES README.md )
-PATCHES=( "${FILESDIR}/uutf.patch" )
-
-src_configure() {
- oasis_configure_opts="
- $(use_enable camlp4 syntax)
- $(use_enable ppx)
- " oasis_src_configure
-}