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 8EBA413835B for ; Sat, 17 Oct 2020 09:32:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E40F0E091D; Sat, 17 Oct 2020 09:32:16 +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 CD071E091D for ; Sat, 17 Oct 2020 09:32:16 +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 E98A4340FBB for ; Sat, 17 Oct 2020 09:32:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FA133A7 for ; Sat, 17 Oct 2020 09:32:14 +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: <1602927131.36ca467372885150c80e717620523b31e812fae9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/re/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/re/re-1.9.0.ebuild X-VCS-Directories: dev-ml/re/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 36ca467372885150c80e717620523b31e812fae9 X-VCS-Branch: master Date: Sat, 17 Oct 2020 09:32:14 +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: f4cba094-04d8-4af6-8ee8-d2921bd3e201 X-Archives-Hash: 42c2708910d1a34cc135eeae8d8b31f0 commit: 36ca467372885150c80e717620523b31e812fae9 Author: Sam James gentoo org> AuthorDate: Sat Oct 17 09:32:05 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 17 09:32:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36ca4673 dev-ml/re: MissingTestRestrict Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> dev-ml/re/re-1.9.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-ml/re/re-1.9.0.ebuild b/dev-ml/re/re-1.9.0.ebuild index 28f3f672a06..81530dd5553 100644 --- a/dev-ml/re/re-1.9.0.ebuild +++ b/dev-ml/re/re-1.9.0.ebuild @@ -8,16 +8,18 @@ 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 ~x86" IUSE="+ocamlopt test" +RESTRICT="!test? ( test )" RDEPEND="!dev-ml/ocaml-re dev-ml/seq:= " DEPEND="${RDEPEND} test? ( dev-ml/ounit )" -S="${WORKDIR}/ocaml-${P}" + PATCHES=( "${FILESDIR}/ounit2.patch" )