From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1264926-garchives=archives.gentoo.org@lists.gentoo.org> 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 0CD3B1382C5 for <garchives@archives.gentoo.org>; Sun, 28 Mar 2021 01:14:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAE8DE086B; Sun, 28 Mar 2021 01:14:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 C078EE0845 for <gentoo-commits@lists.gentoo.org>; Sun, 28 Mar 2021 01:14:45 +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 311CC340DE2 for <gentoo-commits@lists.gentoo.org>; Sun, 28 Mar 2021 01:14:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B1E2632 for <gentoo-commits@lists.gentoo.org>; Sun, 28 Mar 2021 01:14:42 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1616894025.fd5082a8ca42d8119a85207092141bc319340f9b.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.2-r300.ebuild sci-libs/netcdf-cxx/netcdf-cxx-4.2-r301.ebuild X-VCS-Directories: sci-libs/netcdf-cxx/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fd5082a8ca42d8119a85207092141bc319340f9b X-VCS-Branch: master Date: Sun, 28 Mar 2021 01:14:42 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b43a1867-0aaf-4da1-ba78-3d7460878dd9 X-Archives-Hash: 039a9d738939e3881305e8dace562937 commit: fd5082a8ca42d8119a85207092141bc319340f9b Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Mar 27 23:43:40 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Mar 28 01:13:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd5082a8 sci-libs/netcdf-cxx: port 4.2-r300 to EAPI 7, drop autotools-utils.eclass * Port to EAPI 7 * Drop autotools-utils.eclass * Drop unused versionator.eclass Revbumping to ensure visibility of any reported issues, but should not be technically necessary. Signed-off-by: Sam James <sam <AT> gentoo.org> ...cdf-cxx-4.2-r300.ebuild => netcdf-cxx-4.2-r301.ebuild} | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/sci-libs/netcdf-cxx/netcdf-cxx-4.2-r300.ebuild b/sci-libs/netcdf-cxx/netcdf-cxx-4.2-r301.ebuild similarity index 80% rename from sci-libs/netcdf-cxx/netcdf-cxx-4.2-r300.ebuild rename to sci-libs/netcdf-cxx/netcdf-cxx-4.2-r301.ebuild index a15d37a2a1d..25f862ab6e1 100644 --- a/sci-libs/netcdf-cxx/netcdf-cxx-4.2-r300.ebuild +++ b/sci-libs/netcdf-cxx/netcdf-cxx-4.2-r301.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit autotools-utils versionator +inherit autotools DESCRIPTION="C++ library for netCDF" HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/" @@ -12,14 +12,19 @@ SRC_URI="https://www.unidata.ucar.edu/downloads/netcdf/ftp/${P}.tar.gz" LICENSE="UCAR-Unidata" SLOT="3" KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" -IUSE="examples static-libs" +IUSE="examples" RDEPEND=">=sci-libs/netcdf-4.2:0=" DEPEND="${RDEPEND}" +src_configure() { + econf --disable-static +} + src_install() { - autotools-utils_src_install - if use examples; then + default + + if use examples ; then insinto /usr/share/doc/${PF} doins -r examples fi