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 7970C158020 for ; Sat, 3 Dec 2022 08:11:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 909D3E0C28; Sat, 3 Dec 2022 08:11:02 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52E2EE0C28 for ; Sat, 3 Dec 2022 08:11:02 +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 23A083412DA for ; Sat, 3 Dec 2022 08:11:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CEF5757 for ; Sat, 3 Dec 2022 08:10:59 +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: <1670054451.43a6a49ad572340d0f6d459b412d620e2e27e116.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-fileutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.2-r1.ebuild X-VCS-Directories: dev-ml/ocaml-fileutils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 43a6a49ad572340d0f6d459b412d620e2e27e116 X-VCS-Branch: master Date: Sat, 3 Dec 2022 08:10:59 +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: 3817b8b4-4834-454a-bcf6-46a72dc733e1 X-Archives-Hash: 484024f31f5ecc2c8e8d9938e70741be commit: 43a6a49ad572340d0f6d459b412d620e2e27e116 Author: Rafael Kitover gmail com> AuthorDate: Fri Dec 2 21:14:06 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 3 08:00:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43a6a49a dev-ml/ocaml-fileutils: drop 0.6.2-r1 In preparation for adding 0.6.4. Signed-off-by: Rafael Kitover gmail.com> Signed-off-by: Sam James gentoo.org> .../ocaml-fileutils-0.6.2-r1.ebuild | 32 ---------------------- 1 file changed, 32 deletions(-) diff --git a/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.2-r1.ebuild b/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.2-r1.ebuild deleted file mode 100644 index 9cf634b3f69e..000000000000 --- a/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.2-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DUNE_PKG_NAME="fileutils" - -inherit dune - -DESCRIPTION="Pure OCaml functions to manipulate real file (POSIX like) and filename" -HOMEPAGE="https://github.com/gildor478/ocaml-fileutils" -SRC_URI="https://github.com/gildor478/${PN}/releases/download/v${PV}/${DUNE_PKG_NAME}-v${PV}.tbz -> ${P}.tar.bz2" - -LICENSE="LGPL-2.1-with-linking-exception" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+ocamlopt" - -DEPEND=">=dev-ml/ounit2-2.0.0:= - >=dev-ml/stdlib-shims-0.2.0:=" -RDEPEND="${DEPEND}" - -DOCS=( "README.md" "CHANGES.md" "LICENSE.txt" ) - -S="${WORKDIR}/${DUNE_PKG_NAME}-v${PV}" - -src_prepare() { - default - - # Port to dev-ml/ounit2 - sed -i -e 's/oUnit/ounit2/' test/dune || die -}