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 152C91382C5 for ; Sun, 17 Jan 2021 13:38:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64218E0877; Sun, 17 Jan 2021 13:38:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 4DC6FE0877 for ; Sun, 17 Jan 2021 13:38:00 +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 534C1340CCC for ; Sun, 17 Jan 2021 13:37:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A79BD92 for ; Sun, 17 Jan 2021 13:37:56 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1610890667.493b2537c8f2ed7413c7a2dceb3a0fe4477531c4.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/netcdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/netcdf/netcdf-4.6.1.ebuild X-VCS-Directories: sci-libs/netcdf/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 493b2537c8f2ed7413c7a2dceb3a0fe4477531c4 X-VCS-Branch: master Date: Sun, 17 Jan 2021 13:37:56 +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: f91e1a14-e7f0-43a3-a469-b26a2bdf2d2c X-Archives-Hash: 8f9a92f5b5f75a787a162243eb19f243 commit: 493b2537c8f2ed7413c7a2dceb3a0fe4477531c4 Author: Pacho Ramos gentoo org> AuthorDate: Sun Jan 17 13:37:47 2021 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Jan 17 13:37:47 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=493b2537 sci-libs/netcdf: Drop old Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Pacho Ramos gentoo.org> sci-libs/netcdf/netcdf-4.6.1.ebuild | 54 ------------------------------------- 1 file changed, 54 deletions(-) diff --git a/sci-libs/netcdf/netcdf-4.6.1.ebuild b/sci-libs/netcdf/netcdf-4.6.1.ebuild deleted file mode 100644 index ed2f91c0b4a..00000000000 --- a/sci-libs/netcdf/netcdf-4.6.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils ltprune - -DESCRIPTION="Scientific library and interface for array oriented data access" -HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/" -SRC_URI="https://github.com/Unidata/netcdf-c/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="UCAR-Unidata" -SLOT="0/11" -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" -IUSE="+dap examples hdf +hdf5 mpi static-libs szip test tools" -RESTRICT="!test? ( test )" - -RDEPEND=" - dap? ( net-misc/curl:0= ) - hdf? ( sci-libs/hdf:0= sci-libs/hdf5:0= ) - hdf5? ( sci-libs/hdf5:0=[hl(+),mpi=,szip=,zlib] )" -DEPEND="${RDEPEND}" -# doc generation is missing many doxygen files in tar ball -# doc? ( app-doc/doxygen[dot] )" - -REQUIRED_USE="test? ( tools ) szip? ( hdf5 ) mpi? ( hdf5 )" - -S="${WORKDIR}/${PN}-c-${PV}" - -src_configure() { - local myconf - if use mpi; then - export CC=mpicc - fi - econf "${myconf}" \ - --disable-examples \ - --disable-dap-remote-tests \ - $(use_enable dap) \ - $(use_enable hdf hdf4) \ - $(use_enable hdf5 netcdf-4) \ - $(use_enable static-libs static) \ - $(use_enable tools utilities) -} - -src_test() { - # fails parallel tests: bug #621486 - emake check -j1 -} - -src_install() { - default - use examples && dodoc -r examples - prune_libtool_files -}