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 E94D9138359 for ; Thu, 24 Sep 2020 19:53:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1A73E0878; Thu, 24 Sep 2020 19:53:44 +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 B4D05E0877 for ; Thu, 24 Sep 2020 19:53:44 +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 A4FB4340DF6 for ; Thu, 24 Sep 2020 19:53:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7C6D395 for ; Thu, 24 Sep 2020 19:53:39 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1600977209.ef8aed59415138c1a37045af4fa328f7041ac060.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/alcotest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/alcotest/Manifest dev-ml/alcotest/alcotest-0.8.1.ebuild X-VCS-Directories: dev-ml/alcotest/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: ef8aed59415138c1a37045af4fa328f7041ac060 X-VCS-Branch: master Date: Thu, 24 Sep 2020 19:53:39 +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: 3359a67e-1943-4824-8ad5-0bdcd014532f X-Archives-Hash: 3a5691642ee237cdbef96ce809e92613 commit: ef8aed59415138c1a37045af4fa328f7041ac060 Author: Aaron Bauman gentoo org> AuthorDate: Thu Sep 24 19:42:49 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Thu Sep 24 19:53:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef8aed59 dev-ml/alcotest: drop old EAPI=5 Signed-off-by: Aaron Bauman gentoo.org> dev-ml/alcotest/Manifest | 1 - dev-ml/alcotest/alcotest-0.8.1.ebuild | 34 ---------------------------------- 2 files changed, 35 deletions(-) diff --git a/dev-ml/alcotest/Manifest b/dev-ml/alcotest/Manifest index e1a56dcbf4a..d32e219ec8a 100644 --- a/dev-ml/alcotest/Manifest +++ b/dev-ml/alcotest/Manifest @@ -1,2 +1 @@ -DIST alcotest-0.8.1.tar.gz 24358 BLAKE2B 4f905cb478183015355b7bed85b2b20de6880b64d6425a4804cf050dd95fe024e83d9c2f6b57f908bdf7eac650cd2133811219fd30de0c45fa0e66caa3178980 SHA512 76224df2d4923e666fd844a0735f2a23035454bb3c3aeb6a6f8d19376342f0f94f39a401d6225af3f90cddd2f65aa779ce87e42ee8d82e6b3ca33730d4277253 DIST alcotest-0.8.2.tar.gz 25456 BLAKE2B 6f3362dd83d127600710a9efcf5428ce1d960a2a8798a533c3216d7c8934dadd38f672f383e45c0a0ab441e723b4c6477a3c92905e2351e81bbfda324e373e69 SHA512 df1cf5ab42e91a66cae2913504d6825f842169332b8673047faea769966f62d61cb1c288325a840211df0b22c31208566cf754b0816bfdf5d8ef34e8c5127668 diff --git a/dev-ml/alcotest/alcotest-0.8.1.ebuild b/dev-ml/alcotest/alcotest-0.8.1.ebuild deleted file mode 100644 index b0d31476816..00000000000 --- a/dev-ml/alcotest/alcotest-0.8.1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit opam - -DESCRIPTION="A lightweight and colourful test framework" -HOMEPAGE="https://github.com/mirage/alcotest/" -SRC_URI="https://github.com/mirage/alcotest/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="ISC" -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-ml/fmt:= - dev-ml/astring:= - dev-ml/cmdliner:= - dev-ml/result:= -" -DEPEND="${RDEPEND} - dev-ml/jbuilder - dev-ml/findlib" - -src_compile() { - jbuilder build -p alcotest || die -} - -src_test() { - jbuilder runtest -p alcotest || die -}