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 828E8158087 for ; Wed, 6 Oct 2021 01:02:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 858A5E0924; Wed, 6 Oct 2021 01:02:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6FD18E0924 for ; Wed, 6 Oct 2021 01:02:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1BBF0343270 for ; Wed, 6 Oct 2021 01:02:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB29C138 for ; Wed, 6 Oct 2021 01:02:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1633482054.e387c933eb9edb5f4819034a3a34864c3ce0ab5e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/re/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/re/Manifest dev-ml/re/re-1.10.3.ebuild X-VCS-Directories: dev-ml/re/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e387c933eb9edb5f4819034a3a34864c3ce0ab5e X-VCS-Branch: master Date: Wed, 6 Oct 2021 01:02:35 +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: a991b006-bf94-4216-a2de-c841290339b1 X-Archives-Hash: c18007f7471a5da0417fd71e610fa286 commit: e387c933eb9edb5f4819034a3a34864c3ce0ab5e Author: Sam James gentoo org> AuthorDate: Wed Oct 6 00:38:12 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 6 01:00:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e387c933 dev-ml/re: add 1.10.3 Signed-off-by: Sam James gentoo.org> dev-ml/re/Manifest | 1 + dev-ml/re/re-1.10.3.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-ml/re/Manifest b/dev-ml/re/Manifest index dff48b3bc24..45db396b858 100644 --- a/dev-ml/re/Manifest +++ b/dev-ml/re/Manifest @@ -1 +1,2 @@ +DIST ocaml-re-1.10.3.tar.gz 90155 BLAKE2B 44f7779e2004c8ac24f6bf476edaea5f6469fd64319c681df1917d571e5f4175559516e5f19bcf5eee19687eb3ad0c93b672b97cfdc54f29803180b3b9a229d7 SHA512 c86bc375d52ba4d0363d56636dd389c29ce3fc430f569fd5c3af3265023bb80462d94ea9fce97387fdebc8731d33166871ac2f9162327674c2b97bdbde423bbd DIST ocaml-re-1.9.0.tar.gz 83642 BLAKE2B abcabb80ffef241fc7e8ea075f49365cc64f8749db1d1f7eb654eeb52f5be8e96756f98ae7903391a26d8537f82e105878a38a15923d7f93c61abd5c08d3ff98 SHA512 3e11c6eccf573ab5d7f43accf1f1ac9eda0d7320067e142b9f76b309315c1e30d22c5bb80c7a54b05d9c92d3518d26ea82b5093de9b48f86e3c62d6073f14eda diff --git a/dev-ml/re/re-1.10.3.ebuild b/dev-ml/re/re-1.10.3.ebuild new file mode 100644 index 00000000000..9dc727449c2 --- /dev/null +++ b/dev-ml/re/re-1.10.3.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit dune + +DESCRIPTION="Regular expression library for OCaml" +HOMEPAGE="https://github.com/ocaml/ocaml-re" +SRC_URI="https://github.com/ocaml/ocaml-re/archive/${PV}.tar.gz -> ocaml-${P}.tar.gz" +S="${WORKDIR}/ocaml-${P}" + +LICENSE="LGPL-2-with-linking-exception" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="+ocamlopt test" +RESTRICT="!test? ( test )" + +RDEPEND="!dev-ml/ocaml-re + dev-ml/seq:= +" +DEPEND="${RDEPEND} + test? ( dev-ml/ounit2 )" + +PATCHES=( "${FILESDIR}/ounit2.patch" )