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 3792C1382C5 for ; Tue, 16 Mar 2021 19:23:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37D21E086F; Tue, 16 Mar 2021 19:23:17 +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 20A6CE086F for ; Tue, 16 Mar 2021 19:23:17 +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 32B0E340EB7 for ; Tue, 16 Mar 2021 19:23:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B833631 for ; Tue, 16 Mar 2021 19:23: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: <1615922557.216c69fbe94d112fb890529a6dd869a2a11d9099.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/papi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/papi/Manifest dev-libs/papi/papi-5.5.1.ebuild X-VCS-Directories: dev-libs/papi/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 216c69fbe94d112fb890529a6dd869a2a11d9099 X-VCS-Branch: master Date: Tue, 16 Mar 2021 19:23: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: 8ce5ab3c-20c7-43a1-b090-b8c03dbdaa65 X-Archives-Hash: 7a397d51e5bb9c57a5445147f096d767 commit: 216c69fbe94d112fb890529a6dd869a2a11d9099 Author: Sam James gentoo org> AuthorDate: Tue Mar 16 18:45:12 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 16 19:22:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=216c69fb dev-libs/papi: drop 5.5.1 Signed-off-by: Sam James gentoo.org> dev-libs/papi/Manifest | 1 - dev-libs/papi/papi-5.5.1.ebuild | 47 ----------------------------------------- 2 files changed, 48 deletions(-) diff --git a/dev-libs/papi/Manifest b/dev-libs/papi/Manifest index 456133e1263..661455e1404 100644 --- a/dev-libs/papi/Manifest +++ b/dev-libs/papi/Manifest @@ -1,2 +1 @@ -DIST papi-5.5.1.tar.gz 4233127 BLAKE2B e065bed5a5607bf5ce3459ea84e1dabd6a60cd1f78f3ec2fbed29676ff79a057c77bd4210b8c45428238d927016a5a1e16d7bdfb4a9f56ea1e180cb0b19ec182 SHA512 c65c3a4e95c33ee7ceb950c184c08019d83cfee38bfe1bac86e80670a5191918edab2916b6815b15001da961deb8b6cf51263541554eb92a817e1a48371cfcf5 DIST papi-6.0.0.1.tar.gz 4665285 BLAKE2B 5b6b2de8c16510a05a57159ceba591625c78f2a6d4ea62979fea4dd3e72bce73138e36480d82e13713c9ff2298e00330619fa57fdc7f81d75e1ce519b6f600ae SHA512 54c37b49858e921bd1357d8b0bba12c27e40e89b1354d89e5a85672ef3e6d3a4784212079098004256369a172d744580fb283741e7b4ac2d6fa5642bc42ea2ad diff --git a/dev-libs/papi/papi-5.5.1.ebuild b/dev-libs/papi/papi-5.5.1.ebuild deleted file mode 100644 index 2667603df0e..00000000000 --- a/dev-libs/papi/papi-5.5.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools fortran-2 - -DESCRIPTION="Performance Application Programming Interface" -HOMEPAGE="http://icl.cs.utk.edu/papi/" -SRC_URI="http://icl.cs.utk.edu/projects/${PN}/downloads/${P}.tar.gz" -S="${WORKDIR}/${PN}-$(ver_cut 1-3)/src" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND=" - dev-libs/libpfm - virtual/mpi -" -RDEPEND="${DEPEND}" - -src_prepare() { - default - - mv configure.{in,ac} || die - eautoreconf -} - -src_configure() { - local myeconfargs=( - --with-shlib - --with-perf-events - --with-pfm-prefix="${EPREFIX}/usr" - --with-pfm-libdir="${EPREFIX}/usr/$(get_libdir)" - --with-shared-lib=yes - --with-static-lib=no - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - - dodoc ../RE* -}