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 EC45E13835B for ; Sun, 28 Mar 2021 03:05:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E71AE087B; Sun, 28 Mar 2021 03:05:58 +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 07986E087B for ; Sun, 28 Mar 2021 03:05:58 +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 08994340DE2 for ; Sun, 28 Mar 2021 03:05:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB69D636 for ; Sun, 28 Mar 2021 03:05:55 +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: <1616900738.156d6d434e5007d7838fc644668f5379a400e640.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/netcdf-cxx/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild X-VCS-Directories: sci-libs/netcdf-cxx/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 156d6d434e5007d7838fc644668f5379a400e640 X-VCS-Branch: master Date: Sun, 28 Mar 2021 03:05:55 +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: 851c7899-3ae3-4937-9e1f-d64d2d1ef8a3 X-Archives-Hash: 96b75c40f2b20f1adbadc5c71cbaf6b8 commit: 156d6d434e5007d7838fc644668f5379a400e640 Author: Sam James gentoo org> AuthorDate: Sun Mar 28 03:05:38 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 28 03:05:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=156d6d43 sci-libs/netcdf-cxx: port to EAPI 7, drop eutils.eclass, drop ltprune.eclass Signed-off-by: Sam James gentoo.org> sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild b/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild index abbec52bd2a..ba3408589ce 100644 --- a/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild +++ b/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild @@ -1,15 +1,13 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 - -inherit eutils ltprune +EAPI=7 MYP=${PN}4-${PV} - DESCRIPTION="C++ library for netCDF" HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/" SRC_URI="https://github.com/Unidata/netcdf-cxx4/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MYP}" LICENSE="UCAR-Unidata" SLOT="0/1" @@ -19,8 +17,6 @@ IUSE="examples" RDEPEND=">=sci-libs/netcdf-4.2:=[hdf5]" DEPEND="${RDEPEND}" -S="${WORKDIR}/${MYP}" - src_configure() { econf --disable-static } @@ -28,5 +24,6 @@ src_configure() { src_install() { default use examples && dodoc -r examples - prune_libtool_files + + find "${ED}" -name '*.la' -delete || die }