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 A11241382C5 for ; Wed, 10 Feb 2021 22:04:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D495EE0B29; Wed, 10 Feb 2021 22:04:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 BFD21E0B29 for ; Wed, 10 Feb 2021 22:04: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 A1269340B29 for ; Wed, 10 Feb 2021 22:03:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40946495 for ; Wed, 10 Feb 2021 22:03:58 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1612994635.3e0139cb3692b6e3354d2d0a52229abdc663fb2b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libbrahe/, dev-libs/libbrahe/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libbrahe/files/1.1.0-missing_libs.patch dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild X-VCS-Directories: dev-libs/libbrahe/ dev-libs/libbrahe/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3e0139cb3692b6e3354d2d0a52229abdc663fb2b X-VCS-Branch: master Date: Wed, 10 Feb 2021 22:03:58 +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: dcf1bf65-665d-402b-9475-205668a6d4dd X-Archives-Hash: 6e64df0f39d3e975f2bd5b21bc791be2 commit: 3e0139cb3692b6e3354d2d0a52229abdc663fb2b Author: Sam James gentoo org> AuthorDate: Wed Feb 10 21:57:00 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 10 22:03:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e0139cb dev-libs/libbrahe: port to EAPI 7 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-libs/libbrahe/files/1.1.0-missing_libs.patch | 4 ++-- dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild | 25 +++++++++++++++++------- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/dev-libs/libbrahe/files/1.1.0-missing_libs.patch b/dev-libs/libbrahe/files/1.1.0-missing_libs.patch index 7466f917f9d..d9153a812ad 100644 --- a/dev-libs/libbrahe/files/1.1.0-missing_libs.patch +++ b/dev-libs/libbrahe/files/1.1.0-missing_libs.patch @@ -1,5 +1,5 @@ ---- src/Makefile.am.orig 2008-05-01 02:21:34.000000000 +0200 -+++ src/Makefile.am 2008-05-01 02:21:47.000000000 +0200 +--- a/src/Makefile.am ++++ b/src/Makefile.am @@ -14,3 +14,4 @@ AM_CFLAGS = -std=gnu99 -pedantic -Wall -Wno-format diff --git a/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild b/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild index 4d2e451c2a3..63f386c80ec 100644 --- a/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild +++ b/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild @@ -1,10 +1,9 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -AUTOTOOLS_AUTORECONF=1 -inherit autotools-utils +inherit autotools DESCRIPTION="A Heterogenous C Library of Numeric Functions" HOMEPAGE="http://www.coyotegulch.com/products/brahe/" @@ -14,7 +13,19 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" -IUSE="static-libs" - DOCS=( AUTHORS ChangeLog NEWS ) -PATCHES=( "${FILESDIR}/${PV}-missing_libs.patch" ) + +PATCHES=( + "${FILESDIR}/${PV}-missing_libs.patch" +) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + + find "${ED}" -name '*.a' -delete || die +}