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 C8DCA158094 for ; Thu, 28 Jul 2022 13:03:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97619E0ECD; Thu, 28 Jul 2022 13:03:57 +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 795A3E0ECD for ; Thu, 28 Jul 2022 13:03:57 +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 8606434119D for ; Thu, 28 Jul 2022 13:03:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 254FD553 for ; Thu, 28 Jul 2022 13:03:55 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1659013429.f9b8556de55fde06faa776bf977556391c25be89.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/fwupd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/fwupd/fwupd-1.8.3.ebuild X-VCS-Directories: sys-apps/fwupd/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: f9b8556de55fde06faa776bf977556391c25be89 X-VCS-Branch: master Date: Thu, 28 Jul 2022 13:03:55 +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: aaf6ca7c-3101-4e5f-8b72-74ca970400eb X-Archives-Hash: ec1354adb1698f74b181abe522cacb0b commit: f9b8556de55fde06faa776bf977556391c25be89 Author: Marek Szuba gentoo org> AuthorDate: Thu Jul 28 12:18:38 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Thu Jul 28 13:03:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9b8556d sys-apps/fwupd: fix Python shebangs in contrib build scripts This includes among others generate-gresource-xml.py, which is used by the feature 'gresource_quirks'. Bug: https://bugs.gentoo.org/861572 Signed-off-by: Marek Szuba gentoo.org> sys-apps/fwupd/fwupd-1.8.3.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys-apps/fwupd/fwupd-1.8.3.ebuild b/sys-apps/fwupd/fwupd-1.8.3.ebuild index 2d52acf698a3..4265a6081d1e 100644 --- a/sys-apps/fwupd/fwupd-1.8.3.ebuild +++ b/sys-apps/fwupd/fwupd-1.8.3.ebuild @@ -107,6 +107,7 @@ pkg_setup() { src_prepare() { default + # c.f. https://github.com/fwupd/fwupd/issues/1414 sed -e "/test('thunderbolt-self-test', e, env: test_env, timeout : 120)/d" \ -i plugins/thunderbolt/meson.build || die @@ -118,6 +119,8 @@ src_prepare() { -i data/builder/meson.build || die sed -e "/install_dir.*'doc'/s/doc/gtk-doc/" \ -i docs/meson.build || die + + python_fix_shebang "${S}"/contrib/*.py } src_configure() {