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 B73791382C5 for ; Sun, 6 Dec 2020 18:33:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14BCFE09B4; Sun, 6 Dec 2020 18:33:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E9127E09B4 for ; Sun, 6 Dec 2020 18:33:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C1707341222 for ; Sun, 6 Dec 2020 18:33:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73007468 for ; Sun, 6 Dec 2020 18:33:12 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1607279587.6b65f0aeb83969edc646cbf3e225f35804263a7a.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/sysprof-capture/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/sysprof-capture/sysprof-capture-3.36.0-r1.ebuild X-VCS-Directories: dev-util/sysprof-capture/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 6b65f0aeb83969edc646cbf3e225f35804263a7a X-VCS-Branch: master Date: Sun, 6 Dec 2020 18:33:12 +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: b54ccaf3-b4a5-4346-b7cd-eb169f102b67 X-Archives-Hash: fd8109cc4e06cb73d61eb94c16f5fc80 commit: 6b65f0aeb83969edc646cbf3e225f35804263a7a Author: Matt Turner gentoo org> AuthorDate: Sun Dec 6 18:07:12 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Dec 6 18:33:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b65f0ae dev-util/sysprof-capture: Add multilib support Signed-off-by: Matt Turner gentoo.org> .../sysprof-capture/sysprof-capture-3.36.0-r1.ebuild | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/dev-util/sysprof-capture/sysprof-capture-3.36.0-r1.ebuild b/dev-util/sysprof-capture/sysprof-capture-3.36.0-r1.ebuild index f5767d87f27..9eade932617 100644 --- a/dev-util/sysprof-capture/sysprof-capture-3.36.0-r1.ebuild +++ b/dev-util/sysprof-capture/sysprof-capture-3.36.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=7 GNOME_ORG_MODULE="sysprof" -inherit gnome.org meson systemd +inherit gnome.org meson multilib-minimal systemd DESCRIPTION="Static library for sysprof capture data generation" HOMEPAGE="http://sysprof.com/" @@ -23,7 +23,7 @@ BDEPEND=" virtual/pkgconfig " -src_configure() { +multilib_src_configure() { local emesonargs=( -Denable_gtk=false -Dlibsysprof=false @@ -35,3 +35,15 @@ src_configure() { ) meson_src_configure } + +multilib_src_compile() { + meson_src_compile +} + +multilib_src_test() { + meson_src_test +} + +multilib_src_install() { + meson_src_install +}