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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AC20A158087 for ; Tue, 1 Feb 2022 13:24:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E24582BC028; Tue, 1 Feb 2022 13:24:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 258CB2BC028 for ; Tue, 1 Feb 2022 13:24:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F5F0342F20 for ; Tue, 1 Feb 2022 13:24:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6928A166 for ; Tue, 1 Feb 2022 13:24:10 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1643721839.8b2b03b5ef7d4c6e58d2ff48b8ecc9dd8c3e0903.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/spawn/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/spawn/Manifest dev-ml/spawn/spawn-0.15.0.ebuild X-VCS-Directories: dev-ml/spawn/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 8b2b03b5ef7d4c6e58d2ff48b8ecc9dd8c3e0903 X-VCS-Branch: master Date: Tue, 1 Feb 2022 13:24:10 +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: b78bd1f3-4101-4357-b43e-5ec9448cffa1 X-Archives-Hash: df2f1c9a2010e12e9634899abf221e62 commit: 8b2b03b5ef7d4c6e58d2ff48b8ecc9dd8c3e0903 Author: Alfredo Tupone gentoo org> AuthorDate: Tue Feb 1 13:23:59 2022 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Tue Feb 1 13:23:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b2b03b5 dev-ml/spawn: 0.15.0 bump Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/spawn/Manifest | 1 + dev-ml/spawn/spawn-0.15.0.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/dev-ml/spawn/Manifest b/dev-ml/spawn/Manifest index 5729a7114f2e..8fec981a8019 100644 --- a/dev-ml/spawn/Manifest +++ b/dev-ml/spawn/Manifest @@ -1 +1,2 @@ DIST spawn-0.13.0.tar.gz 13048 BLAKE2B f64815c99b3ee7a0e4a18c33012df658e57d7973101ced83aa509c2dfa6455b59b110cc61477da0750305fb8b81ed4a1436a6a7418313185644ea531745a80da SHA512 897ffec4a4c15c819e4429f6b71427005d6b40df6039e6c7f0b1ca4b4e35b24304dc56e27ce88bd81f5b61f936444f5d6e80ea14483991067aa6ee072f4a90dc +DIST spawn-0.15.0.tar.gz 15808 BLAKE2B 72c29c012c3aa700b345e6c5b5a5b8bed4576c721cd9fa435c652e0605cc88bb545247e5a8284b7603e22ca5ab27d36042c6d8020742fc5e9e7b762167a9f864 SHA512 3a775b57a73efee6adbc30b32fa779f27d11c7008a46f90fdb9da6288533e2d83fc49dbcd770c087f2e4560c5586ff72a9a2985d8929955773cc10d83f126013 diff --git a/dev-ml/spawn/spawn-0.15.0.ebuild b/dev-ml/spawn/spawn-0.15.0.ebuild new file mode 100644 index 000000000000..7f4f39e52537 --- /dev/null +++ b/dev-ml/spawn/spawn-0.15.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit dune + +DESCRIPTION="Spawning sub-processes" +HOMEPAGE="https://github.com/janestreet/spawn" +SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="+ocamlopt test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( dev-ml/ppx_expect )"