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 6E79B158020 for ; Fri, 28 Oct 2022 18:50:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93B2DE08D3; Fri, 28 Oct 2022 18:50:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 38EE9E08D3 for ; Fri, 28 Oct 2022 18:50:23 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BB332341193 for ; Fri, 28 Oct 2022 18:50:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16DAC6FE for ; Fri, 28 Oct 2022 18:50:19 +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: <1666982870.c49c3e4b78283f8e9f8e8e941d843019c5d1741e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libyang/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libyang/libyang-2.0.194-r1.ebuild net-libs/libyang/libyang-2.0.194.ebuild X-VCS-Directories: net-libs/libyang/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c49c3e4b78283f8e9f8e8e941d843019c5d1741e X-VCS-Branch: master Date: Fri, 28 Oct 2022 18:50: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: 8669b645-8119-4198-b5ac-453458ef7fcf X-Archives-Hash: c4e1ddb3fcc8883cc614e77128e11dca commit: c49c3e4b78283f8e9f8e8e941d843019c5d1741e Author: Sam James gentoo org> AuthorDate: Fri Oct 28 18:08:32 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 28 18:47:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c49c3e4b net-libs/libyang: drop multilib No multilib reverse dependencies. Signed-off-by: Sam James gentoo.org> .../{libyang-2.0.194.ebuild => libyang-2.0.194-r1.ebuild} | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/net-libs/libyang/libyang-2.0.194.ebuild b/net-libs/libyang/libyang-2.0.194-r1.ebuild similarity index 75% rename from net-libs/libyang/libyang-2.0.194.ebuild rename to net-libs/libyang/libyang-2.0.194-r1.ebuild index 975c5453bec1..f08475ffb964 100644 --- a/net-libs/libyang/libyang-2.0.194.ebuild +++ b/net-libs/libyang/libyang-2.0.194-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake-multilib +inherit cmake DESCRIPTION="YANG data modeling language library" HOMEPAGE="https://github.com/CESNET/libyang" @@ -15,7 +15,7 @@ KEYWORDS="amd64 ~arm64 x86" IUSE="doc test" RESTRICT="!test? ( test )" -RDEPEND="dev-libs/libpcre2[${MULTILIB_USEDEP}]" +RDEPEND="dev-libs/libpcre2" DEPEND=" ${RDEPEND} test? ( dev-util/cmocka ) @@ -25,7 +25,7 @@ BDEPEND=" doc? ( app-doc/doxygen[dot] ) " -multilib_src_configure() { +src_configure() { local mycmakeargs=( -DENABLE_TESTS=$(usex test) -DENABLE_VALGRIND_TESTS=OFF @@ -33,12 +33,14 @@ multilib_src_configure() { cmake_src_configure } -multilib_src_compile() { +src_compile() { cmake_src_compile - multilib_is_native_abi && use doc && cmake_src_compile doc + use doc && cmake_src_compile doc } -multilib_src_install_all() { +src_install() { + cmake_src_install + use doc && dodoc -r doc/. }