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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BB0F2158020 for ; Fri, 28 Oct 2022 18:50:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB9DBE088B; Fri, 28 Oct 2022 18:50:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AE16BE088B for ; Fri, 28 Oct 2022 18:50:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A549F341189 for ; Fri, 28 Oct 2022 18:50:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09DF666B for ; Fri, 28 Oct 2022 18:50:18 +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: <1666982865.19508b21a9e8854d472133717f4eeb39b3638a21.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/jansson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/jansson/jansson-2.14-r1.ebuild dev-libs/jansson/jansson-2.14.ebuild X-VCS-Directories: dev-libs/jansson/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 19508b21a9e8854d472133717f4eeb39b3638a21 X-VCS-Branch: master Date: Fri, 28 Oct 2022 18:50:18 +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: 0d6b99e8-a763-45d3-a28d-f5923a230216 X-Archives-Hash: 331f5e4582b0adf2fd44b41d578381fe commit: 19508b21a9e8854d472133717f4eeb39b3638a21 Author: Sam James gentoo org> AuthorDate: Fri Oct 28 18:40:24 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 28 18:47:45 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19508b21 dev-libs/jansson: drop multilib No multilib reverse dependencies. Signed-off-by: Sam James gentoo.org> .../{jansson-2.14.ebuild => jansson-2.14-r1.ebuild} | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-libs/jansson/jansson-2.14.ebuild b/dev-libs/jansson/jansson-2.14-r1.ebuild similarity index 71% rename from dev-libs/jansson/jansson-2.14.ebuild rename to dev-libs/jansson/jansson-2.14-r1.ebuild index 8c97fdd39128..fb6ee3866f10 100644 --- a/dev-libs/jansson/jansson-2.14.ebuild +++ b/dev-libs/jansson/jansson-2.14-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit multilib-minimal toolchain-funcs +inherit toolchain-funcs DESCRIPTION="C library for encoding, decoding and manipulating JSON data" HOMEPAGE="https://www.digip.org/jansson/" @@ -18,23 +18,23 @@ BDEPEND="doc? ( dev-python/sphinx )" PATCHES=( "${FILESDIR}/${P}-test-symbols.patch" ) -multilib_src_configure() { +src_configure() { tc-ld-force-bfd - ECONF_SOURCE="${S}" econf $(use_enable static-libs static) + econf $(use_enable static-libs static) } -multilib_src_compile() { +src_compile() { default - if multilib_is_native_abi && use doc ; then + if use doc ; then emake html HTML_DOCS=( "${BUILD_DIR}"/doc/_build/html/. ) fi } -multilib_src_install() { +src_install() { default - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die }