From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 73E8C1382C5 for ; Mon, 11 Jan 2021 18:48:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CD9FE09B5; Mon, 11 Jan 2021 18:48:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F9E8E09B5 for ; Mon, 11 Jan 2021 18:48:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2CF3C340D8E for ; Mon, 11 Jan 2021 18:48:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFC20B8 for ; Mon, 11 Jan 2021 18:48:47 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1610390913.73f69304c65ee2549f1ab6332e8d4fa5fe565a5d.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/markup/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/markup/Manifest dev-ml/markup/markup-1.0.0.ebuild X-VCS-Directories: dev-ml/markup/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 73f69304c65ee2549f1ab6332e8d4fa5fe565a5d X-VCS-Branch: master Date: Mon, 11 Jan 2021 18:48:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6cca42c9-f13a-4d5e-b28c-2a6541df3c5b X-Archives-Hash: 0b5f3c621a361473747d13db28fd76f9 commit: 73f69304c65ee2549f1ab6332e8d4fa5fe565a5d Author: Alfredo Tupone gentoo org> AuthorDate: Mon Jan 11 18:48:33 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Mon Jan 11 18:48:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73f69304 dev-ml/markup: version bump to 1.0.0 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/markup/Manifest | 1 + dev-ml/markup/markup-1.0.0.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-ml/markup/Manifest b/dev-ml/markup/Manifest index 490a2129a27..c44ed7db060 100644 --- a/dev-ml/markup/Manifest +++ b/dev-ml/markup/Manifest @@ -1 +1,2 @@ DIST markup-0.7.5.tar.gz 278654 BLAKE2B 5338d4b546c74ade522c84c5a0583ad08b09e4ca3ecb96712725dd33792e401f66f076e47cf24986047f36236c53134272cadcd2abe322307377bb79055bf39a SHA512 19350df7a3a619c479fa030b8772009bc32f3e9830494f5707e05f85b9ee9ff0ddf382d292c7a11bbd3b63c8c108e6a84b2d01f5e983f49d7cdf63ee3c4545c8 +DIST markup-1.0.0.tar.gz 280927 BLAKE2B cdf670e97c9f6e9b514d98f19a50bb4915c0c434a4ca27ac71be36f3893ed049eef8c0b5f48893e3f247938283272ff0c03d24743d679ef5e0296f7059131c58 SHA512 6383ed24fd86be0f6a64d9386b547d323fa0e763571ff3e7405119173c6ac6a7ed043bc0d35afd6e933101f22ed4b2f8baa08ba07d3df57a68015caaf79030ab diff --git a/dev-ml/markup/markup-1.0.0.ebuild b/dev-ml/markup/markup-1.0.0.ebuild new file mode 100644 index 00000000000..be349d21561 --- /dev/null +++ b/dev-ml/markup/markup-1.0.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit opam multiprocessing + +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 ~arm ~arm64 ~x86" +IUSE="test" + +RDEPEND="dev-lang/ocaml:=" +BDEPEND=">=dev-ml/dune-2.7 + dev-lang/ocaml" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${PN}.ml-${PV}" + +src_compile() { + dune build -p "${PN}" -j $(makeopts_jobs) @install || die +} + +src_test() { + dune runtest -p "${PN}" -j $(makeopts_jobs) || die +}