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 60ED513835A for ; Mon, 15 Mar 2021 04:02:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1C24E0880; Mon, 15 Mar 2021 04:02:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7A80FE0884 for ; Mon, 15 Mar 2021 04:02:16 +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 64F35340E06 for ; Mon, 15 Mar 2021 04:02:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 859C25D2 for ; Mon, 15 Mar 2021 04:02:12 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615780914.58218de97a92af06a2af9550ad4d0cc534f59cef.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/fmt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/fmt/Manifest dev-ml/fmt/fmt-0.8.4.ebuild X-VCS-Directories: dev-ml/fmt/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 58218de97a92af06a2af9550ad4d0cc534f59cef X-VCS-Branch: master Date: Mon, 15 Mar 2021 04:02:12 +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: a4a32b56-0bf9-402e-a503-a7b3c45ab2ad X-Archives-Hash: 92377bcb249cf88c2cea933ca9faeeda commit: 58218de97a92af06a2af9550ad4d0cc534f59cef Author: Sam James gentoo org> AuthorDate: Mon Mar 15 03:13:53 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 15 04:01:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58218de9 dev-ml/fmt: drop 0.8.4 Signed-off-by: Sam James gentoo.org> dev-ml/fmt/Manifest | 1 - dev-ml/fmt/fmt-0.8.4.ebuild | 33 --------------------------------- 2 files changed, 34 deletions(-) diff --git a/dev-ml/fmt/Manifest b/dev-ml/fmt/Manifest index 6bade5578e9..8b6f6722529 100644 --- a/dev-ml/fmt/Manifest +++ b/dev-ml/fmt/Manifest @@ -1,2 +1 @@ -DIST fmt-0.8.4.tbz 14079 BLAKE2B c4b6fc35a27734e8d878ef1abfa900b659d4acafc20757b0413aec1404378aed6e57c6a1a0e5c7dbda7e60fdd911d38fa1fecc76d670299ddf6ed14930fbcc28 SHA512 d17407f15447172ad444fa288b9a16962b0e4829cb73f62004b0f8dad2bec60a7911ad11fd05545d61d7fdb88099e53694548c73368399ba183c53383e1dfd31 DIST fmt-0.8.9.tbz 21469 BLAKE2B 4cddf626118c9bdea435f9db4e6a3c0b92b49b2c07d1b0f708ae7b82963453be666ad49df196d98b466236509d3fa5a519e191da6b2385a308d1019f1583f0b5 SHA512 19b97caf5d2dbe86cd75bec478707b8f4e4b899b2a11ce04790dc5acb5c9ed6ea98047de52ee50c6480231a16307af2541eabaa94d18d7d008f7a67496f5f626 diff --git a/dev-ml/fmt/fmt-0.8.4.ebuild b/dev-ml/fmt/fmt-0.8.4.ebuild deleted file mode 100644 index e08ee4dfd3c..00000000000 --- a/dev-ml/fmt/fmt-0.8.4.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit findlib opam - -DESCRIPTION="Combinators to devise OCaml Format pretty-printing functions" -HOMEPAGE="https://erratique.ch/software/fmt https://github.com/dbuenzli/fmt" -SRC_URI="https://erratique.ch/software/fmt/releases/${P}.tbz" - -LICENSE="ISC" -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-ml/result:=[ocamlopt] - dev-lang/ocaml:=[ocamlopt] - dev-ml/uchar:=[ocamlopt] - dev-ml/cmdliner:=[ocamlopt]" -DEPEND="${RDEPEND} - >=dev-ml/topkg-0.9 - dev-ml/ocamlbuild - dev-ml/findlib" - -src_compile() { - ocaml pkg/pkg.ml build --tests $(usex test 'true' 'false') || die -} - -src_test() { - ocaml pkg/pkg.ml test || die -}