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 E15CA158091 for ; Wed, 15 Jun 2022 12:42:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 441CAE087A; Wed, 15 Jun 2022 12:42:32 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 06503E0878 for ; Wed, 15 Jun 2022 12:42:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0A93D34171F for ; Wed, 15 Jun 2022 12:42:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B715501 for ; Wed, 15 Jun 2022 12:42:29 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1655233428.bbebed9043554acc799328857a523ad8ce73feb7.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/hiprompt-gtk-py/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-9999.ebuild X-VCS-Directories: gui-apps/hiprompt-gtk-py/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: bbebed9043554acc799328857a523ad8ce73feb7 X-VCS-Branch: master Date: Wed, 15 Jun 2022 12:42:29 +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: e7f86ac7-5311-4595-98bf-96e8471d0714 X-Archives-Hash: 6b9eb9ba264660ec76c58d7f653057bb commit: bbebed9043554acc799328857a523ad8ce73feb7 Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Tue Jun 14 19:03:48 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue Jun 14 19:03:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bbebed90 gui-apps/hiprompt-gtk-py: Fix shebang, fix gtk-layer-shell dependency Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-9999.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-9999.ebuild b/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-9999.ebuild index 9271a2358..bca282598 100644 --- a/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-9999.ebuild +++ b/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-9999.ebuild @@ -16,6 +16,12 @@ RDEPEND=" ${PYTHON_DEPS} $(python_gen_cond_dep 'dev-python/pygobject[${PYTHON_USEDEP}]') x11-libs/gtk+:3[introspection] - gui-libs/gtk-layer-shell + >=gui-libs/gtk-layer-shell-0.5.0 " DEPEND="${RDEPEND}" + +src_prepare() { + default + + sed -i "s;@PYTHON@;/usr/bin/${EPYTHON};g" hiprompt_gtk/hiprompt-gtk.in || die +}