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 103581382C5 for ; Mon, 14 Jun 2021 23:09:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC7A3E097B; Mon, 14 Jun 2021 23:09:48 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D4EEFE097B for ; Mon, 14 Jun 2021 23:09:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 72014340E74 for ; Mon, 14 Jun 2021 23:09:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA936720 for ; Mon, 14 Jun 2021 23:09:45 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1623712182.250bc39f8bbcf0f56ea98110101f80e752082436.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/er/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/er/Manifest sys-cluster/er/er-0.0.3.ebuild X-VCS-Directories: sys-cluster/er/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 250bc39f8bbcf0f56ea98110101f80e752082436 X-VCS-Branch: dev Date: Mon, 14 Jun 2021 23:09:45 +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: 40886243-c776-4d32-8cbf-175771600715 X-Archives-Hash: 552d758e2048120a0062e1c099faf16d commit: 250bc39f8bbcf0f56ea98110101f80e752082436 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Jun 14 22:43:15 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Mon Jun 14 23:09:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=250bc39f sys-cluster/er: drop 0.0.3 Signed-off-by: Alessandro Barbieri gmail.com> sys-cluster/er/Manifest | 1 - sys-cluster/er/er-0.0.3.ebuild | 33 --------------------------------- 2 files changed, 34 deletions(-) diff --git a/sys-cluster/er/Manifest b/sys-cluster/er/Manifest index ebc014aca..785ff4262 100644 --- a/sys-cluster/er/Manifest +++ b/sys-cluster/er/Manifest @@ -1,2 +1 @@ -DIST er-0.0.3.tar.gz 13130 BLAKE2B 1906a0627a0d17f776ba8612ec3c5feb60d41451d026add4dca0164b57570ba7bd81f1ecf303ab0f0c17cd8a26f4588afbb4748ccc66d3b82e922d5b46a3d147 SHA512 0edb8fd96ef606003e0623d6742993e3bb663fd0a3761ed4b68fc14e24c1ab586b200b0f01530570e40a7733bca3c0ecadbac0fb515594b79d9c123fe7c417e8 DIST er-0.0.4.tar.gz 20824 BLAKE2B 05d49669a04d94a39ae46f71fb2cf034b7b9d43831f9b5d12468264dd550a97db2fae1d2a0e1b73188d23404e091ef4a4870e04f7c37d5318961b0b542b5656a SHA512 8e5b78a7b3013c5e1bb71584afddb2f0162a2c1a6845cca112e36c5929eafb8f227288eabd237ed1fbb04fcf6e00edfa4042650d9910198f3d98abfccdb562fe diff --git a/sys-cluster/er/er-0.0.3.ebuild b/sys-cluster/er/er-0.0.3.ebuild deleted file mode 100644 index 119e42780..000000000 --- a/sys-cluster/er/er-0.0.3.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit cmake - -DESCRIPTION="High-level distributed erasure coding lib combining shuffile and redset" -HOMEPAGE="https://github.com/ECP-VeloC/er" -SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND=" - virtual/mpi - sys-cluster/KVTree[mpi] - sys-cluster/redset - sys-cluster/shuffile - sys-libs/zlib -" -DEPEND="${RDEPEND}" -BDEPEND=" - >=dev-util/cmake-2.8 -" - -src_prepare() { - #do not build static library - sed -i '/er-static/d' src/CMakeLists.txt || die - default - cmake_src_prepare -}