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 2764B138359 for ; Wed, 7 Oct 2020 00:31:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B859E095A; Wed, 7 Oct 2020 00:31:07 +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 136FBE095A for ; Wed, 7 Oct 2020 00:31:06 +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 8264233E55B for ; Wed, 7 Oct 2020 00:31:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9FFF353 for ; Wed, 7 Oct 2020 00:31:03 +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: <1602030609.7cb47b8b259e386f5113ecdc3d4cf0bc7318e464.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/npth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/npth/npth-1.6-r1.ebuild X-VCS-Directories: dev-libs/npth/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7cb47b8b259e386f5113ecdc3d4cf0bc7318e464 X-VCS-Branch: master Date: Wed, 7 Oct 2020 00:31:03 +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: b6ec02ab-cbf5-4041-85b5-fa0951672dcd X-Archives-Hash: 467db44a3b410124026808f53fe2ff59 commit: 7cb47b8b259e386f5113ecdc3d4cf0bc7318e464 Author: Jakov Smolic sartura hr> AuthorDate: Fri Oct 2 20:25:12 2020 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 7 00:30:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cb47b8b dev-libs/npth: tidy up ebuild - inherit autotools eclass - unconditionally remove static libs - drop redundant manual deletion of .la files Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: Sam James gentoo.org> dev-libs/npth/npth-1.6-r1.ebuild | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/dev-libs/npth/npth-1.6-r1.ebuild b/dev-libs/npth/npth-1.6-r1.ebuild index 6ba87239e32..00b6f615b49 100644 --- a/dev-libs/npth/npth-1.6-r1.ebuild +++ b/dev-libs/npth/npth-1.6-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit libtool +inherit autotools DESCRIPTION="New GNU Portable Threads Library" HOMEPAGE="https://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git" @@ -12,19 +12,12 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" LICENSE="LGPL-2.1+" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="static-libs" src_prepare() { default - elibtoolize # for Solaris shared library + eautoreconf } src_configure() { - econf \ - $(use_enable static-libs static) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die + econf --disable-static }