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 0D0F1139694 for ; Wed, 2 Aug 2017 11:23:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D7A81FC0E3; Wed, 2 Aug 2017 11:23:09 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 188D71FC0E3 for ; Wed, 2 Aug 2017 11:23:09 +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 D9FAB3418EC for ; Wed, 2 Aug 2017 11:23:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 462287603 for ; Wed, 2 Aug 2017 11:23:04 +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: <1501672972.74f12defd4da532db8e883ca280bed75a381349f.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/sexplib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/sexplib/sexplib-0.9.2.ebuild X-VCS-Directories: dev-ml/sexplib/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 74f12defd4da532db8e883ca280bed75a381349f X-VCS-Branch: master Date: Wed, 2 Aug 2017 11:23:04 +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: b06727ce-bb1c-4074-ab66-efc4f129ec57 X-Archives-Hash: a85caa2c821aa0e7df1c6f61796dca33 commit: 74f12defd4da532db8e883ca280bed75a381349f Author: Alexis Ballier gentoo org> AuthorDate: Wed Aug 2 11:15:33 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Wed Aug 2 11:22:52 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f12def dev-ml/sexplib: convert to opam.eclass Package-Manager: Portage-2.3.6, Repoman-2.3.3 dev-ml/sexplib/sexplib-0.9.2.ebuild | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/dev-ml/sexplib/sexplib-0.9.2.ebuild b/dev-ml/sexplib/sexplib-0.9.2.ebuild index 8ea3c1e3150..0def0f6d5df 100644 --- a/dev-ml/sexplib/sexplib-0.9.2.ebuild +++ b/dev-ml/sexplib/sexplib-0.9.2.ebuild @@ -3,6 +3,8 @@ EAPI=6 +inherit opam + DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions" HOMEPAGE="https://github.com/janestreet/sexplib" SRC_URI="https://github.com/janestreet/sexplib/archive/v${PV}.tar.gz -> ${P}.tar.gz" @@ -12,18 +14,9 @@ SLOT="0/${PV}" KEYWORDS="~amd64 ~ppc" IUSE="" -RDEPEND="dev-lang/ocaml:=" -DEPEND="${RDEPEND} dev-ml/opam dev-ml/jbuilder" +RDEPEND="" +DEPEND="${RDEPEND} dev-ml/jbuilder" src_test() { jbuilder runtest || die } - -src_install() { - opam-installer -i \ - --prefix="${ED}/usr" \ - --libdir="${D}/$(ocamlc -where)" \ - --docdir="${ED}/usr/share/doc/${PF}" \ - ${PN}.install || die - dodoc CHANGES.md README.org -}