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 04141139085 for ; Wed, 28 Dec 2016 11:25:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76FE9E0C07; Wed, 28 Dec 2016 11:25:55 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 56712E0C07 for ; Wed, 28 Dec 2016 11:25:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0A40534112A for ; Wed, 28 Dec 2016 11:25:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77BB24A8 for ; Wed, 28 Dec 2016 11:25:52 +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: <1482924342.16773143f45f52d970697fc39e27f690c267c9cb.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.4.0.ebuild X-VCS-Directories: sci-libs/netcdf/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 16773143f45f52d970697fc39e27f690c267c9cb X-VCS-Branch: master Date: Wed, 28 Dec 2016 11:25:52 +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-Archives-Salt: 233eac22-2fca-4a1b-84eb-a3b842721d7d X-Archives-Hash: abd95a6b417be8eb50959bec08f8fe28 commit: 16773143f45f52d970697fc39e27f690c267c9cb Author: Pacho Ramos gentoo org> AuthorDate: Wed Dec 28 11:23:13 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed Dec 28 11:25:42 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16773143 sci-libs/netcdf: Drop old Package-Manager: Portage-2.3.3, Repoman-2.3.1 sci-libs/netcdf/netcdf-4.4.0.ebuild | 59 ------------------------------------- 1 file changed, 59 deletions(-) diff --git a/sci-libs/netcdf/netcdf-4.4.0.ebuild b/sci-libs/netcdf/netcdf-4.4.0.ebuild deleted file mode 100644 index 253c2c9..00000000 --- a/sci-libs/netcdf/netcdf-4.4.0.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit autotools-utils - -DESCRIPTION="Scientific library and interface for array oriented data access" -HOMEPAGE="http://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 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" -IUSE="+dap examples hdf +hdf5 mpi static-libs szip test tools" - -RDEPEND=" - dap? ( net-misc/curl:0= ) - hdf? ( sci-libs/hdf:0= sci-libs/hdf5:0= ) - hdf5? ( sci-libs/hdf5:0=[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() { - # --docdir="${EPREFIX}"/usr/share/doc/${PF} - # $(use_enable doc doxygen) - local myeconfargs=( - --disable-examples - --disable-dap-remote-tests - $(use_enable dap) - $(use_enable hdf hdf4) - $(use_enable hdf5 netcdf-4) - $(use_enable tools utilities) - ) - if use mpi; then - export CC=mpicc - myeconfargs+=( --enable-parallel ) - use test && myeconfargs+=( --enable-parallel-tests ) - fi - autotools-utils_src_configure -} - -src_test() { - autotools-utils_src_test -j1 -} - -src_install() { - autotools-utils_src_install - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi -}