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/markup/
Date: Thu, 01 Dec 2016 17:55:03
Message-Id: 1480614892.8e8942912a5967e7dfe24bdfd0c9ea470408505a.aballier@gentoo
1 commit: 8e8942912a5967e7dfe24bdfd0c9ea470408505a
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 1 17:53:57 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=8e894291
7
8 dev-ml/markup: bump to 0.7.3
9
10 Package-Manager: portage-2.3.2
11
12 dev-ml/markup/Manifest | 1 +
13 dev-ml/markup/markup-0.7.3.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-ml/markup/Manifest b/dev-ml/markup/Manifest
17 index 5588288..1819e63 100644
18 --- a/dev-ml/markup/Manifest
19 +++ b/dev-ml/markup/Manifest
20 @@ -1 +1,2 @@
21 DIST markup-0.7.2.tar.gz 275010 SHA256 630a737ab6113e17999aacfd55f73b6671211d7980be86f0c711c0b385887c34 SHA512 72a87f54692a0b751c23e6b52bc4ecaa68334b0c6c067793cbf5b011b7d06ce7563f9aa2daeef3553ab48bb6cb9e592587b5a4f37279eaef7b45e19e5b372f73 WHIRLPOOL 679a01c5d197eadf1a8b74247e276405c182acff4c7781b577fbad9fcdc33be164ff81222e79c4e0e5193d1295ee4896ddda547cce1712bfb5ebda050f5bf5ac
22 +DIST markup-0.7.3.tar.gz 275094 SHA256 e1eb3562e0d26ccc33aa5dbe802e4210dbd7c30a8e69b6098b825afb11bb6af1 SHA512 e4577e438241d58c728507c88f14b7f029dbc4aa6b9c5dbf78f03b6c083a430026158c3146a88c14c9cd90a242b1bb4ed838b150bb89433fb6a6f673e5d2bb66 WHIRLPOOL ad967738706d4c017f266ecdef7b0772ce0bc17f9bc7dda228ffabc9cccccc88cde69337e063577d1fcda1e93cf4a7f18bbbf09709ee82f0a4b8382f5e339d2e
23
24 diff --git a/dev-ml/markup/markup-0.7.3.ebuild b/dev-ml/markup/markup-0.7.3.ebuild
25 new file mode 100644
26 index 00000000..59f9e4e
27 --- /dev/null
28 +++ b/dev-ml/markup/markup-0.7.3.ebuild
29 @@ -0,0 +1,39 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +inherit findlib eutils
37 +
38 +DESCRIPTION="Error-recovering streaming HTML5 and XML parsers"
39 +HOMEPAGE="https://github.com/aantron/markup.ml"
40 +SRC_URI="https://github.com/aantron/markup.ml/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0/${PV}p1"
44 +KEYWORDS="~amd64"
45 +IUSE="doc test"
46 +
47 +DEPEND="
48 + dev-lang/ocaml:=[ocamlopt]
49 + dev-ml/lwt:=[ocamlopt]
50 + >=dev-ml/uutf-1.0:=[ocamlopt]
51 +"
52 +RDEPEND="${DEPEND}"
53 +DEPEND="${DEPEND}
54 + test? ( dev-ml/ounit )
55 + dev-ml/ocamlbuild"
56 +S="${WORKDIR}/${PN}.ml-${PV}"
57 +
58 +src_compile() {
59 + emake
60 + use doc && emake docs
61 +}
62 +
63 +src_install() {
64 + findlib_src_preinst
65 + emake ocamlfind-install
66 + dodoc README.md
67 + use doc && dohtml doc/html/*
68 +}