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 3A950158043 for ; Thu, 18 Apr 2024 11:33:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 518CAE29C4; Thu, 18 Apr 2024 11:33:26 +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 33965E29C4 for ; Thu, 18 Apr 2024 11:33:26 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39A513434BB for ; Thu, 18 Apr 2024 11:33:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 600091722 for ; Thu, 18 Apr 2024 11:33:23 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1713439982.d795bf2203c29d0586091713f8e0ae5b681f7987.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/lollypop/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/lollypop/lollypop-1.4.39.ebuild X-VCS-Directories: media-sound/lollypop/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: d795bf2203c29d0586091713f8e0ae5b681f7987 X-VCS-Branch: master Date: Thu, 18 Apr 2024 11:33:23 +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: 39b4bc01-0561-42e4-b029-6fdbf9976b77 X-Archives-Hash: 459f01c75db04a09e277953fa193ecf2 commit: d795bf2203c29d0586091713f8e0ae5b681f7987 Author: Yuan Liao gmail com> AuthorDate: Fri Apr 12 15:08:14 2024 +0000 Commit: Yixun Lan gentoo org> CommitDate: Thu Apr 18 11:33:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d795bf22 media-sound/lollypop: Fix Python shebang in /usr/libexec/lollypop-sp This is a Python script that Lollypop installs. It uses a '#!/usr/bin/env python3' shebang, which must be fixed on Gentoo to ensure that the correct Python implementation selected via PYTHON_SINGLE_TARGET is used. Signed-off-by: Yuan Liao gmail.com> Signed-off-by: Yixun Lan gentoo.org> media-sound/lollypop/lollypop-1.4.39.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/media-sound/lollypop/lollypop-1.4.39.ebuild b/media-sound/lollypop/lollypop-1.4.39.ebuild index 8fb4830813fd..05a8e39d38ae 100644 --- a/media-sound/lollypop/lollypop-1.4.39.ebuild +++ b/media-sound/lollypop/lollypop-1.4.39.ebuild @@ -58,6 +58,7 @@ src_install() { meson_src_install python_optimize python_fix_shebang "${ED}/usr/bin" + python_fix_shebang "${ED}/usr/libexec/lollypop-sp" } pkg_postinst() {