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 43CCE139694 for ; Fri, 23 Jun 2017 12:31:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5EFFF224012; Fri, 23 Jun 2017 12:31:31 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3BB39224013 for ; Fri, 23 Jun 2017 12:31:31 +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 E3A633418C8 for ; Fri, 23 Jun 2017 12:31:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24F99746F for ; Fri, 23 Jun 2017 12:31:28 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1498221081.a42256baa926156020349dd451442d3aebb88dc4.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/atd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/atd/atd-1.12.0.ebuild X-VCS-Directories: dev-ml/atd/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: a42256baa926156020349dd451442d3aebb88dc4 X-VCS-Branch: master Date: Fri, 23 Jun 2017 12:31:28 +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-Archives-Salt: e9133525-81de-4278-bd3f-3978c899cb67 X-Archives-Hash: f39a90ee37c4ed9fcfac335d255220f6 commit: a42256baa926156020349dd451442d3aebb88dc4 Author: Alexis Ballier gentoo org> AuthorDate: Fri Jun 23 12:29:31 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Fri Jun 23 12:31:21 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a42256ba dev-ml/atd: split atdgen again Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-ml/atd/atd-1.12.0.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dev-ml/atd/atd-1.12.0.ebuild b/dev-ml/atd/atd-1.12.0.ebuild index da91321baad..5095732e9dd 100644 --- a/dev-ml/atd/atd-1.12.0.ebuild +++ b/dev-ml/atd/atd-1.12.0.ebuild @@ -12,22 +12,27 @@ SRC_URI="https://github.com/mjambon/atd/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0/${PV}" KEYWORDS="~amd64" -IUSE="+ocamlopt" +IUSE="+ocamlopt test" DEPEND=" dev-lang/ocaml:=[ocamlopt?] dev-ml/easy-format:=[ocamlopt?] dev-ml/menhir:=[ocamlopt?] - dev-ml/biniou:= - dev-ml/yojson:= - !dev-ml/atdgen " RDEPEND="${DEPEND}" DEPEND="${DEPEND} dev-ml/jbuilder dev-ml/opam + test? ( + dev-ml/biniou + dev-ml/yojson + ) " +src_compile() { + jbuilder build -p atd || die +} + oinstall() { opam-installer -i \ --prefix="${ED}/usr" \ @@ -38,5 +43,4 @@ oinstall() { src_install() { oinstall atd - oinstall atdgen }