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 13DE613835A for ; Fri, 4 Jun 2021 01:14:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57B88E0877; Fri, 4 Jun 2021 01:14:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 37289E0877 for ; Fri, 4 Jun 2021 01:14:38 +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 0EAB6340EF9 for ; Fri, 4 Jun 2021 01:14:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50ADE7A4 for ; Fri, 4 Jun 2021 01:14:34 +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: <1622769251.d0619bf2fc5cf1bfa1143cfdad348c1b73e34291.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/rubberband/rubberband-1.9.1-r1.ebuild X-VCS-Directories: media-libs/rubberband/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: d0619bf2fc5cf1bfa1143cfdad348c1b73e34291 X-VCS-Branch: master Date: Fri, 4 Jun 2021 01:14:34 +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: 716f381c-8ded-4096-9777-99f23185e6e6 X-Archives-Hash: fbfda41764f96ad766cd558f4ea73e51 commit: d0619bf2fc5cf1bfa1143cfdad348c1b73e34291 Author: Matt Turner gentoo org> AuthorDate: Fri May 28 01:20:12 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Jun 4 01:14:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0619bf2 media-libs/rubberband: Switch to meson-multilib Signed-off-by: Matt Turner gentoo.org> media-libs/rubberband/rubberband-1.9.1-r1.ebuild | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild index ab6b7eac6dc..23f48514090 100644 --- a/media-libs/rubberband/rubberband-1.9.1-r1.ebuild +++ b/media-libs/rubberband/rubberband-1.9.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit meson multilib-minimal +inherit meson-multilib DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" HOMEPAGE="https://www.breakfastquay.com/rubberband/" @@ -37,7 +37,7 @@ multilib_src_configure() { --buildtype=release -Dfft=fftw -Dresampler=libsamplerate - -Dstatic=$(usex static-libs true false) + $(meson_use static-libs static) $(meson_use ladspa) $(meson_use jni) $(meson_use programs) @@ -49,15 +49,6 @@ multilib_src_configure() { meson_src_configure } -multilib_src_compile() { - meson_src_compile -} - -multilib_src_install() { - meson_src_install -} - multilib_src_install_all() { ! use jni && find "${ED}" -name "*.a" -delete - einstalldocs }