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 B8FC11382C5 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 92876E087E; Fri, 4 Jun 2021 01:14:38 +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 78848E087E for ; Fri, 4 Jun 2021 01:14:38 +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 9B50B340F13 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 AE6027A9 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: <1622769252.fca46a00a329308a59ca7b74a0306a4b7c0f8e74.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gupnp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/gupnp/gupnp-1.2.6.ebuild X-VCS-Directories: net-libs/gupnp/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: fca46a00a329308a59ca7b74a0306a4b7c0f8e74 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: 5f96d783-a3cd-4532-a52e-fd8ed7413ee6 X-Archives-Hash: a7d8f72d9e89e5341e2fa7c0a90deb60 commit: fca46a00a329308a59ca7b74a0306a4b7c0f8e74 Author: Matt Turner gentoo org> AuthorDate: Fri May 28 01:25:31 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Jun 4 01:14:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fca46a00 net-libs/gupnp: Switch to meson-multilib Signed-off-by: Matt Turner gentoo.org> net-libs/gupnp/gupnp-1.2.6.ebuild | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/net-libs/gupnp/gupnp-1.2.6.ebuild b/net-libs/gupnp/gupnp-1.2.6.ebuild index 762f6fb77a4..df4827c9b14 100644 --- a/net-libs/gupnp/gupnp-1.2.6.ebuild +++ b/net-libs/gupnp/gupnp-1.2.6.ebuild @@ -6,7 +6,7 @@ VALA_USE_DEPEND="vapigen" PYTHON_COMPAT=( python3_{7,8,9} ) PYTHON_REQ_USE="xml" -inherit gnome.org meson multilib-minimal python-single-r1 vala xdg +inherit gnome.org meson-multilib python-single-r1 vala xdg DESCRIPTION="An object-oriented framework for creating UPnP devs and control points" HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP" @@ -58,27 +58,14 @@ multilib_src_configure() { local emesonargs=( -Dcontext_manager=${backend} - -Dintrospection=$(multilib_native_usex introspection true false) - -Dvapi=$(multilib_native_usex vala true false) - -Dgtk_doc=$(multilib_native_usex gtk-doc true false) + $(meson_native_use_bool introspection) + $(meson_native_use_bool vala vapi) + $(meson_native_use_bool gtk-doc gtk_doc) -Dexamples=false ) meson_src_configure } -multilib_src_compile() { - meson_src_compile -} - -multilib_src_test() { - meson_src_test -} - -multilib_src_install() { - meson_src_install -} - multilib_src_install_all() { - einstalldocs python_fix_shebang "${ED}"/usr/bin/gupnp-binding-tool-1.2 }