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 6BB6D1382C5 for ; Mon, 15 Feb 2021 08:43:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5905DE0A49; Mon, 15 Feb 2021 08:43:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 41CD9E0A49 for ; Mon, 15 Feb 2021 08:43:22 +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 49402340C54 for ; Mon, 15 Feb 2021 08:43:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8C404DB for ; Mon, 15 Feb 2021 08:43:19 +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: <1613378566.aa1e1f9c506b061f3eebb10304560bff038731b6.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/ccfits/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/ccfits/ccfits-2.5.ebuild X-VCS-Directories: sci-libs/ccfits/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: aa1e1f9c506b061f3eebb10304560bff038731b6 X-VCS-Branch: master Date: Mon, 15 Feb 2021 08:43:19 +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: f2848095-627c-459a-89a3-939a6ab2caaf X-Archives-Hash: bd94e691ee9ed910b1cc6dee58a34397 commit: aa1e1f9c506b061f3eebb10304560bff038731b6 Author: Jakov Smolic sartura hr> AuthorDate: Mon Feb 15 08:42:46 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 15 08:42:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa1e1f9c sci-libs/ccfits: Port to EAPI 7 Bug: https://bugs.gentoo.org/770637 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> sci-libs/ccfits/ccfits-2.5.ebuild | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/sci-libs/ccfits/ccfits-2.5.ebuild b/sci-libs/ccfits/ccfits-2.5.ebuild index d02029f57d0..c2dbe59e5bc 100644 --- a/sci-libs/ccfits/ccfits-2.5.ebuild +++ b/sci-libs/ccfits/ccfits-2.5.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit autotools eutils ltprune +inherit autotools MYPN=CCfits MYP=${MYPN}-${PV} @@ -15,17 +15,15 @@ SRC_URI="https://heasarc.gsfc.nasa.gov/fitsio/CCfits/${MYP}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc static-libs" +IUSE="doc" RDEPEND=">=sci-libs/cfitsio-3.080" DEPEND="${RDEPEND}" S="${WORKDIR}/${MYPN}" -DOCS=( CHANGES README.INSTALL ) -PATCHES=( - "${FILESDIR}"/${PN}-2.2-makefile.patch # avoid building cookbook by default and no rpath -) +# avoid building cookbook by default and no rpath +PATCHES=( "${FILESDIR}"/${PN}-2.2-makefile.patch ) src_prepare() { default @@ -34,7 +32,7 @@ src_prepare() { } src_configure() { - econf $(use_enable static-libs static) + econf --disable-static } src_install() { @@ -43,5 +41,6 @@ src_install() { HTML_DOCS=( html/. ) fi default - use static-libs || prune_libtool_files --all + + find "${ED}" -name '*.la' -delete || die }