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 52DED138330 for ; Thu, 22 Sep 2016 20:04:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F2C2E0854; Thu, 22 Sep 2016 20:04:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7C7F7E0854 for ; Thu, 22 Sep 2016 20:04:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4A241340D00 for ; Thu, 22 Sep 2016 20:04:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5AED9247C for ; Thu, 22 Sep 2016 20:04:44 +0000 (UTC) From: "Kacper Kowalik" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kacper Kowalik" Message-ID: <1474574662.a9967848712addd75c9939714d067b3b7613d324.xarthisius@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/hdf5/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/hdf5/hdf5-1.8.17.ebuild sci-libs/hdf5/metadata.xml X-VCS-Directories: sci-libs/hdf5/ X-VCS-Committer: xarthisius X-VCS-Committer-Name: Kacper Kowalik X-VCS-Revision: a9967848712addd75c9939714d067b3b7613d324 X-VCS-Branch: master Date: Thu, 22 Sep 2016 20:04:44 +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: fb1a2245-fdac-44e7-9ce9-712375224fc8 X-Archives-Hash: da778de533f2387d7c08dd8d6fb58c61 commit: a9967848712addd75c9939714d067b3b7613d324 Author: Kacper Kowalik gentoo org> AuthorDate: Thu Sep 22 20:04:22 2016 +0000 Commit: Kacper Kowalik gentoo org> CommitDate: Thu Sep 22 20:04:22 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9967848 sci-libs/hdf5: add use flag for enabling high level API Fixes bug #594560 reported by eroen eroen.eu> Package-Manager: portage-2.2.28 sci-libs/hdf5/hdf5-1.8.17.ebuild | 5 +++-- sci-libs/hdf5/metadata.xml | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sci-libs/hdf5/hdf5-1.8.17.ebuild b/sci-libs/hdf5/hdf5-1.8.17.ebuild index 7dd062e..8393c0c 100644 --- a/sci-libs/hdf5/hdf5-1.8.17.ebuild +++ b/sci-libs/hdf5/hdf5-1.8.17.ebuild @@ -18,11 +18,11 @@ SRC_URI="https://support.hdfgroup.org/ftp/HDF5/releases/${MY_P}/src/${MY_P}.tar. LICENSE="NCSA-HDF" SLOT="0/${PV%%_p*}" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" -IUSE="cxx debug examples fortran fortran2003 mpi static-libs szip threads zlib" +IUSE="cxx debug examples fortran fortran2003 +hl mpi static-libs szip threads zlib" REQUIRED_USE=" cxx? ( !mpi ) mpi? ( !cxx ) - threads? ( !cxx !mpi !fortran ) + threads? ( !cxx !mpi !fortran !hl ) fortran2003? ( fortran )" RDEPEND=" @@ -94,6 +94,7 @@ src_configure() { $(use_enable cxx) $(use_enable fortran) $(use_enable fortran2003) + $(use_enable hl) $(use_enable mpi parallel) $(use_enable threads threadsafe) $(use_with szip szlib) diff --git a/sci-libs/hdf5/metadata.xml b/sci-libs/hdf5/metadata.xml index be78d23..e650c56 100644 --- a/sci-libs/hdf5/metadata.xml +++ b/sci-libs/hdf5/metadata.xml @@ -18,5 +18,7 @@ Enable new features that require Fortran 2003 (http://www.hdfgroup.org/HDF5/doc/fortran/NewFeatures_F2003.pdf) + Enable high level API + (https://support.hdfgroup.org/HDF5/doc/HL/index.html)