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 8E5FC139694 for ; Tue, 18 Apr 2017 20:10:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED11221C07C; Tue, 18 Apr 2017 20:10:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B761921C07C for ; Tue, 18 Apr 2017 20:10:18 +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 B501B34167D for ; Tue, 18 Apr 2017 20:10:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4248B743F for ; Tue, 18 Apr 2017 20:10: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: <1492546194.ed40f0d4086818bc455b2db2127bcac78116d01c.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/js_of_ocaml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/js_of_ocaml/js_of_ocaml-2.8.4-r1.ebuild dev-ml/js_of_ocaml/js_of_ocaml-2.8.4.ebuild dev-ml/js_of_ocaml/js_of_ocaml-9999.ebuild dev-ml/js_of_ocaml/metadata.xml X-VCS-Directories: dev-ml/js_of_ocaml/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: ed40f0d4086818bc455b2db2127bcac78116d01c X-VCS-Branch: master Date: Tue, 18 Apr 2017 20:10: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: d58ff6bc-3b10-46dd-89e9-b52441f9e04d X-Archives-Hash: 912c031bb4efd8214b630534e6473a9f commit: ed40f0d4086818bc455b2db2127bcac78116d01c Author: Alexis Ballier gentoo org> AuthorDate: Tue Apr 18 20:01:36 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Apr 18 20:09:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed40f0d4 dev-ml/js_of_ocaml: fix automagic on ppx_driver and merge ppx useflags into one Package-Manager: Portage-2.3.5, Repoman-2.3.2 .../{js_of_ocaml-2.8.4.ebuild => js_of_ocaml-2.8.4-r1.ebuild} | 8 ++++---- dev-ml/js_of_ocaml/js_of_ocaml-9999.ebuild | 8 ++++---- dev-ml/js_of_ocaml/metadata.xml | 1 - 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-2.8.4.ebuild b/dev-ml/js_of_ocaml/js_of_ocaml-2.8.4-r1.ebuild similarity index 86% rename from dev-ml/js_of_ocaml/js_of_ocaml-2.8.4.ebuild rename to dev-ml/js_of_ocaml/js_of_ocaml-2.8.4-r1.ebuild index 11d4b7ce009..9331122157d 100644 --- a/dev-ml/js_of_ocaml/js_of_ocaml-2.8.4.ebuild +++ b/dev-ml/js_of_ocaml/js_of_ocaml-2.8.4-r1.ebuild @@ -20,15 +20,14 @@ fi LICENSE="LGPL-2.1-with-linking-exception" SLOT="0/${PV}" -IUSE="+ocamlopt doc +deriving +ppx +ppx-deriving +react +xml X" +IUSE="+ocamlopt doc +deriving +ppx +react +xml X" RDEPEND=" >=dev-lang/ocaml-3.12:=[ocamlopt?,X?] >=dev-ml/lwt-2.4.4:=[camlp4(+)] react? ( dev-ml/react:= dev-ml/reactiveData:= ) xml? ( >=dev-ml/tyxml-4:= ) - ppx? ( dev-ml/ppx_tools:= ) - ppx-deriving? ( dev-ml/ppx_deriving:= ) + ppx? ( dev-ml/ppx_tools:= dev-ml/ppx_deriving:= dev-ml/ppx_driver:= ) dev-ml/cmdliner:= dev-ml/menhir:= dev-ml/ocaml-base64:= @@ -52,7 +51,8 @@ src_configure() { use X || echo "WITH_GRAPHICS := NO" >> Makefile.conf use react || echo "WITH_REACT := NO" >> Makefile.conf use ppx || echo "WITH_PPX := NO" >> Makefile.conf - use ppx-deriving || echo "WITH_PPX_PPX_DERIVING := NO" >> Makefile.conf + use ppx || echo "WITH_PPX_DERIVING := NO" >> Makefile.conf + use ppx || echo "WITH_PPX_DRIVER := NO" >> Makefile.conf echo "WITH_ASYNC := NO" >> Makefile.conf } diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-9999.ebuild b/dev-ml/js_of_ocaml/js_of_ocaml-9999.ebuild index a68da44990b..5b17a890bb3 100644 --- a/dev-ml/js_of_ocaml/js_of_ocaml-9999.ebuild +++ b/dev-ml/js_of_ocaml/js_of_ocaml-9999.ebuild @@ -20,15 +20,14 @@ fi LICENSE="LGPL-2.1-with-linking-exception" SLOT="0/${PV}" -IUSE="+ocamlopt doc +deriving +ppx +ppx-deriving +react +xml X" +IUSE="+ocamlopt doc +deriving +ppx +react +xml X" RDEPEND=" >=dev-lang/ocaml-3.12:=[ocamlopt?,X?] >=dev-ml/lwt-2.4.4:=[camlp4(+)] react? ( dev-ml/react:= dev-ml/reactiveData:= ) xml? ( >=dev-ml/tyxml-4:= ) - ppx? ( dev-ml/ppx_tools:= ) - ppx-deriving? ( dev-ml/ppx_deriving:= ) + ppx? ( dev-ml/ppx_tools:= dev-ml/ppx_deriving:= dev-ml/ppx_driver:= ) dev-ml/cmdliner:= dev-ml/menhir:= dev-ml/ocaml-base64:= @@ -48,7 +47,8 @@ src_configure() { use X || echo "WITH_GRAPHICS := NO" >> Makefile.conf use react || echo "WITH_REACT := NO" >> Makefile.conf use ppx || echo "WITH_PPX := NO" >> Makefile.conf - use ppx-deriving || echo "WITH_PPX_PPX_DERIVING := NO" >> Makefile.conf + use ppx || echo "WITH_PPX_DERIVING := NO" >> Makefile.conf + use ppx || echo "WITH_PPX_DRIVER := NO" >> Makefile.conf echo "WITH_ASYNC := NO" >> Makefile.conf } diff --git a/dev-ml/js_of_ocaml/metadata.xml b/dev-ml/js_of_ocaml/metadata.xml index 0b34c19deed..904a7a4498e 100644 --- a/dev-ml/js_of_ocaml/metadata.xml +++ b/dev-ml/js_of_ocaml/metadata.xml @@ -8,7 +8,6 @@ Enable dev-ml/deriving support for improving the type safety. Enables the ppx syntax extension - Enables deriving support through ppx syntax extensions. Enable functionnal reactive programming support.