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 4C1651581C1 for ; Sat, 13 Jul 2024 07:58:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DEA2E2B1D; Sat, 13 Jul 2024 07:58:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 6086EE2B1D for ; Sat, 13 Jul 2024 07:58:22 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 88689343051 for ; Sat, 13 Jul 2024 07:58:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F33191869 for ; Sat, 13 Jul 2024 07:58:19 +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: <1720857483.ebfb0ee87717b68604b8349f8e8652ff3cbfd89d.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/pp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/pp/Manifest dev-ml/pp/pp-1.2.0.ebuild X-VCS-Directories: dev-ml/pp/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: ebfb0ee87717b68604b8349f8e8652ff3cbfd89d X-VCS-Branch: master Date: Sat, 13 Jul 2024 07:58:19 +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: 08afddb9-3833-47b8-a5de-1adea97605c4 X-Archives-Hash: 62b05de8cf53bb2c70c9f4880507f03e commit: ebfb0ee87717b68604b8349f8e8652ff3cbfd89d Author: Alfredo Tupone gentoo org> AuthorDate: Sat Jul 13 07:58:03 2024 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sat Jul 13 07:58:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebfb0ee8 dev-ml/pp: add 1.2.0 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/pp/Manifest | 1 + dev-ml/pp/pp-1.2.0.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/dev-ml/pp/Manifest b/dev-ml/pp/Manifest index 98899d7acc09..55dc8ae007d9 100644 --- a/dev-ml/pp/Manifest +++ b/dev-ml/pp/Manifest @@ -1 +1,2 @@ DIST pp-1.1.2.tbz 9586 BLAKE2B 36bf09c2623c28215f2d4d3260681dacf7041919e09eb5e53ee04f90706b037784c0f7d5cbdfee58ce2808f28df09638fa4d15b82d8542badc05c06c0d8cce96 SHA512 58f78b083483006b40814be9aac33c895349eb1c6427d2762b4d760192613401262478bd5deff909763517560b06af7bf013c6a6f87d549aafa77b26345303f2 +DIST pp-1.2.0.tbz 10959 BLAKE2B 92d9ca14a9c6370cdd2ccadacfe74cd44fd260a5c0c8ae757354ebbde9a41be14c4af88636e8cd8221cea3a7b4bb3eb584e51a220055473462ed8c43a5d3e0e7 SHA512 912164c2aa7241d73f735dadfbefe8ed0138d241579d2e885440e068fac78eb9f0b3d782c2420e757e313168c1725daff6ab91800dd315b1e05288456998b40a diff --git a/dev-ml/pp/pp-1.2.0.ebuild b/dev-ml/pp/pp-1.2.0.ebuild new file mode 100644 index 000000000000..b9cb6b75d1b6 --- /dev/null +++ b/dev-ml/pp/pp-1.2.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="Pretty-printing library" +HOMEPAGE="https://github.com/ocaml-dune/pp" +SRC_URI="https://github.com/ocaml-dune/pp/releases/download/${PV}/${P}.tbz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="+ocamlopt test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( dev-ml/ppx_expect )"