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 DAE1915808B for ; Mon, 11 Apr 2022 07:46:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE3D8E0AA5; Mon, 11 Apr 2022 07:46:55 +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 C1833E0AA5 for ; Mon, 11 Apr 2022 07:46:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B51193412B3 for ; Mon, 11 Apr 2022 07:46:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 415CA1BD for ; Mon, 11 Apr 2022 07:46:52 +0000 (UTC) From: "Sergey Popov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Popov" Message-ID: <1649663207.80d29e9c5330d6cecdf0225e564a94427610b702.pinkbyte@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xmlrpc-c/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/xmlrpc-c/xmlrpc-c-1.51.06-r2.ebuild dev-libs/xmlrpc-c/xmlrpc-c-1.54.05.ebuild X-VCS-Directories: dev-libs/xmlrpc-c/ X-VCS-Committer: pinkbyte X-VCS-Committer-Name: Sergey Popov X-VCS-Revision: 80d29e9c5330d6cecdf0225e564a94427610b702 X-VCS-Branch: master Date: Mon, 11 Apr 2022 07:46:52 +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: 177e7160-cadc-43ff-a6a2-6b0b485c4524 X-Archives-Hash: a9f66530bff8c423d18b12e3e874c500 commit: 80d29e9c5330d6cecdf0225e564a94427610b702 Author: Sergey Popov gentoo org> AuthorDate: Mon Apr 11 07:44:41 2022 +0000 Commit: Sergey Popov gentoo org> CommitDate: Mon Apr 11 07:46:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80d29e9c dev-libs/xmlrpc: fix multilib builds Previosly broken by commit c96c1ecd22c1fda96cb02bed3e33d7643e383996 Reported-by: Michael Cook gmail.com> Closes: https://bugs.gentoo.org/837539 Bug: https://bugs.gentoo.org/836469 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Sergey Popov gentoo.org> dev-libs/xmlrpc-c/xmlrpc-c-1.51.06-r2.ebuild | 8 ++++++-- dev-libs/xmlrpc-c/xmlrpc-c-1.54.05.ebuild | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/dev-libs/xmlrpc-c/xmlrpc-c-1.51.06-r2.ebuild b/dev-libs/xmlrpc-c/xmlrpc-c-1.51.06-r2.ebuild index 54cf9c58c907..283f805275ca 100644 --- a/dev-libs/xmlrpc-c/xmlrpc-c-1.51.06-r2.ebuild +++ b/dev-libs/xmlrpc-c/xmlrpc-c-1.51.06-r2.ebuild @@ -64,12 +64,16 @@ multilib_src_configure() { multilib_src_compile() { default_src_compile - # Needed for tests, bug #836469 - cp "${BUILD_DIR}"/include/xmlrpc-c/config.h "${S}"/include/xmlrpc-c || die # Tools building is broken in this release #multilib_is_native_abi && use tools && emake -rC "${S}"/tools } +multilib_src_test() { + # Needed for tests, bug #836469 + cp "${BUILD_DIR}"/include/xmlrpc-c/config.h "${S}"/include/xmlrpc-c || die + default_src_test +} + #multilib_src_install_all() { # # Tools building is broken in this release # #use tools && emake DESTDIR="${D}" -rC "${S}"/tools install diff --git a/dev-libs/xmlrpc-c/xmlrpc-c-1.54.05.ebuild b/dev-libs/xmlrpc-c/xmlrpc-c-1.54.05.ebuild index 05c4799f8bdf..d6b2720a168b 100644 --- a/dev-libs/xmlrpc-c/xmlrpc-c-1.54.05.ebuild +++ b/dev-libs/xmlrpc-c/xmlrpc-c-1.54.05.ebuild @@ -64,12 +64,16 @@ multilib_src_configure() { multilib_src_compile() { default_src_compile - # Needed for tests, bug #836469 - cp "${BUILD_DIR}"/include/xmlrpc-c/config.h "${S}"/include/xmlrpc-c || die # Tools building is broken in this release #multilib_is_native_abi && use tools && emake -rC "${S}"/tools } +multilib_src_test() { + # Needed for tests, bug #836469 + cp "${BUILD_DIR}"/include/xmlrpc-c/config.h "${S}"/include/xmlrpc-c || die + default_src_test +} + #multilib_src_install_all() { # # Tools building is broken in this release # #use tools && emake DESTDIR="${D}" -rC "${S}"/tools install