public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/markup/
Date: Tue, 24 May 2016 09:16:08 +0000 (UTC)	[thread overview]
Message-ID: <1464081316.e12a747bf1ee53690e63e7c78e5a24e4eae59b4d.aballier@gentoo> (raw)

commit:     e12a747bf1ee53690e63e7c78e5a24e4eae59b4d
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue May 24 08:55:00 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue May 24 09:15:16 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e12a747b

dev-ml/markup: initial import; ebuild by me

Package-Manager: portage-2.3.0_rc1

 dev-ml/markup/Manifest            |  1 +
 dev-ml/markup/markup-0.7.2.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
 dev-ml/markup/metadata.xml        |  8 ++++++++
 3 files changed, 48 insertions(+)

diff --git a/dev-ml/markup/Manifest b/dev-ml/markup/Manifest
new file mode 100644
index 0000000..5588288
--- /dev/null
+++ b/dev-ml/markup/Manifest
@@ -0,0 +1 @@
+DIST markup-0.7.2.tar.gz 275010 SHA256 630a737ab6113e17999aacfd55f73b6671211d7980be86f0c711c0b385887c34 SHA512 72a87f54692a0b751c23e6b52bc4ecaa68334b0c6c067793cbf5b011b7d06ce7563f9aa2daeef3553ab48bb6cb9e592587b5a4f37279eaef7b45e19e5b372f73 WHIRLPOOL 679a01c5d197eadf1a8b74247e276405c182acff4c7781b577fbad9fcdc33be164ff81222e79c4e0e5193d1295ee4896ddda547cce1712bfb5ebda050f5bf5ac

diff --git a/dev-ml/markup/markup-0.7.2.ebuild b/dev-ml/markup/markup-0.7.2.ebuild
new file mode 100644
index 0000000..235c575
--- /dev/null
+++ b/dev-ml/markup/markup-0.7.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="Error-recovering streaming HTML5 and XML parsers"
+HOMEPAGE="https://github.com/aantron/markup.ml"
+SRC_URI="https://github.com/aantron/markup.ml/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-lang/ocaml:=[ocamlopt]
+	dev-ml/lwt:=[ocamlopt]
+	dev-ml/uutf:=[ocamlopt]
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+	test? ( dev-ml/ounit )
+	dev-ml/ocamlbuild"
+S="${WORKDIR}/${PN}.ml-${PV}"
+
+src_compile() {
+	emake
+	use doc && emake docs
+}
+
+src_install() {
+	findlib_src_preinst
+	emake ocamlfind-install
+	dodoc README.md
+	use doc && dohtml doc/html/*
+}

diff --git a/dev-ml/markup/metadata.xml b/dev-ml/markup/metadata.xml
new file mode 100644
index 0000000..ffa6c6b
--- /dev/null
+++ b/dev-ml/markup/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="project">
+    <email>ml@gentoo.org</email>
+    <name>Gentoo ML Project</name>
+  </maintainer>
+</pkgmetadata>


             reply	other threads:[~2016-05-24  9:16 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-24  9:16 Alexis Ballier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-12-01 17:54 [gentoo-commits] repo/gentoo:master commit in: dev-ml/markup/ Alexis Ballier
2016-12-13 13:57 Alexis Ballier
2017-01-24 11:14 Alexis Ballier
2017-06-15  8:49 Alexis Ballier
2017-07-21 12:38 Alexis Ballier
2017-07-21 12:38 Alexis Ballier
2021-01-11 18:48 Alfredo Tupone
2021-01-11 20:23 Alfredo Tupone
2021-01-13  8:54 Alfredo Tupone
2021-01-15  7:47 Alfredo Tupone
2021-01-15 21:22 Alfredo Tupone
2021-03-13 15:26 Sam James
2021-07-19 19:18 Alfredo Tupone
2021-09-17 14:14 Agostino Sarubbo
2021-09-18 12:30 Agostino Sarubbo
2022-06-21  1:53 Sam James
2023-01-21  8:49 Maciej Barć
2023-03-17  2:29 Sam James
2023-03-17  2:29 Sam James
2025-03-10 11:41 Arthur Zamarin
2025-05-30 20:11 Arthur Zamarin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1464081316.e12a747bf1ee53690e63e7c78e5a24e4eae59b4d.aballier@gentoo \
    --to=aballier@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox