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 3D5D4138334 for ; Fri, 13 Dec 2019 17:41:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5869FE086F; Fri, 13 Dec 2019 17:41:08 +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 3DA9DE086F for ; Fri, 13 Dec 2019 17:41:08 +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 1165E34D877 for ; Fri, 13 Dec 2019 17:41:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E17908A7 for ; Fri, 13 Dec 2019 17:41:04 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1576258823.7043fcf71d39c109aafc7a53d0f83344a0d7ad18.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/oc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/oc/oc-2.0.ebuild X-VCS-Directories: sci-libs/oc/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 7043fcf71d39c109aafc7a53d0f83344a0d7ad18 X-VCS-Branch: master Date: Fri, 13 Dec 2019 17:41:04 +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: 16338f85-19d2-42be-9812-4cfb6481ffb0 X-Archives-Hash: d7eb85bb5c279d1bbca56bf6861b1deb commit: 7043fcf71d39c109aafc7a53d0f83344a0d7ad18 Author: David Seifert gentoo org> AuthorDate: Fri Dec 13 17:40:23 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Dec 13 17:40:23 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7043fcf7 sci-libs/oc: Port to EAPI 7 Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> sci-libs/oc/oc-2.0.ebuild | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/sci-libs/oc/oc-2.0.ebuild b/sci-libs/oc/oc-2.0.ebuild index f44b5451489..24434e06661 100644 --- a/sci-libs/oc/oc-2.0.ebuild +++ b/sci-libs/oc/oc-2.0.ebuild @@ -1,26 +1,33 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 -inherit autotools-utils +EAPI=7 DESCRIPTION="Network Data Access Protocol client C library" HOMEPAGE="http://opendap.org/" SRC_URI="http://opendap.org/pub/OC/source/${P}.tar.gz" LICENSE="LGPL-2" - SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc static-libs" +IUSE="doc" +# tests need network +RESTRICT="test" RDEPEND="net-misc/curl" DEPEND="${RDEPEND}" -# tests need network -#PROPERTIES=network +src_configure() { + econf --disable-static +} src_install() { - autotools-utils_src_install - use doc; dodoc docs/oc*html && dohtml docs/html/* + if use doc; then + dodoc docs/oc*html + HTML_DOCS=( docs/html/. ) + fi + default + + # no static archives + find "${D}" -name '*.la' -delete || die }