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 640A013933E for ; Mon, 19 Jul 2021 19:18:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2797E0AB5; Mon, 19 Jul 2021 19:18:14 +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 8350CE0AB5 for ; Mon, 19 Jul 2021 19:18:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 EA212342A4D for ; Mon, 19 Jul 2021 19:18:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F023174 for ; Mon, 19 Jul 2021 19:18:11 +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: <1626722274.9e2b07a98c11d0c9ebb9d7068b4efc595f720a2d.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.2.ebuild X-VCS-Directories: dev-ml/markup/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 9e2b07a98c11d0c9ebb9d7068b4efc595f720a2d X-VCS-Branch: master Date: Mon, 19 Jul 2021 19:18:11 +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: 7e762a31-841f-4717-ba33-868e33d3a72e X-Archives-Hash: 1adba09dd4fc1d6348beb8e860af582e commit: 9e2b07a98c11d0c9ebb9d7068b4efc595f720a2d Author: Alfredo Tupone gentoo org> AuthorDate: Mon Jul 19 19:17:54 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Mon Jul 19 19:17:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e2b07a9 dev-ml/markup: bump 1.0.2 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/markup/Manifest | 1 + dev-ml/markup/markup-1.0.2.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-ml/markup/Manifest b/dev-ml/markup/Manifest index b823c15e52b..b6e98a4a6ef 100644 --- a/dev-ml/markup/Manifest +++ b/dev-ml/markup/Manifest @@ -1 +1,2 @@ DIST markup-1.0.0.tar.gz 280927 BLAKE2B cdf670e97c9f6e9b514d98f19a50bb4915c0c434a4ca27ac71be36f3893ed049eef8c0b5f48893e3f247938283272ff0c03d24743d679ef5e0296f7059131c58 SHA512 6383ed24fd86be0f6a64d9386b547d323fa0e763571ff3e7405119173c6ac6a7ed043bc0d35afd6e933101f22ed4b2f8baa08ba07d3df57a68015caaf79030ab +DIST markup-1.0.2.tar.gz 281957 BLAKE2B 04094edf2b6e7cec8de8e1d2ebc9c43b55aa18ccd7c38ee07217a7578764e1b919da8f30b3855d04deb75862be9c429ddf2c24c7a8a2baa2ed01921514f3b334 SHA512 6a04240da095a7557932e26b8f20979e0a8dc4ef2b5ce98aac7dfcaf82f0350397633120b638f76efd2a30a482a2381566b66a35c0585535e225f44004539b87 diff --git a/dev-ml/markup/markup-1.0.2.ebuild b/dev-ml/markup/markup-1.0.2.ebuild new file mode 100644 index 00000000000..65041afd6ba --- /dev/null +++ b/dev-ml/markup/markup-1.0.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit dune + +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="+ocamlopt test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-ml/lwt + dev-ml/uutf" +DEPEND="${RDEPEND} + test? ( dev-ml/ounit2 )" + +S="${WORKDIR}/${PN}.ml-${PV}"