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 0803C1382C5 for ; Sat, 12 Jun 2021 05:40:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 496E2E084E; Sat, 12 Jun 2021 05:40:28 +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 15418E084E for ; Sat, 12 Jun 2021 05:40:28 +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 3BE96340775 for ; Sat, 12 Jun 2021 05:40:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B2997A9 for ; Sat, 12 Jun 2021 05:40:24 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1623476411.84c1c6ba650d5d79271c86a509633ce693b23686.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/xapps/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/xapps/xapps-2.0.6.ebuild X-VCS-Directories: x11-libs/xapps/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 84c1c6ba650d5d79271c86a509633ce693b23686 X-VCS-Branch: master Date: Sat, 12 Jun 2021 05:40:24 +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: ffd6c243-090f-49f1-9cac-fe6481771e3c X-Archives-Hash: 374ca43bc31888971c011cd1d81307a3 commit: 84c1c6ba650d5d79271c86a509633ce693b23686 Author: Matthew S. Turnbull bluefang-logic com> AuthorDate: Tue Jun 1 04:45:47 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 12 05:40:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84c1c6ba x11-libs/xapps: fix prefix install PYTHON_GI_OVERRIDESDIR contains the fully qualified python path, so no need to prefix it with $ED. Closes: https://bugs.gentoo.org/793092 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Matthew S. Turnbull bluefang-logic.com> Closes: https://github.com/gentoo/gentoo/pull/21079 Signed-off-by: Sam James gentoo.org> x11-libs/xapps/xapps-2.0.6.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-libs/xapps/xapps-2.0.6.ebuild b/x11-libs/xapps/xapps-2.0.6.ebuild index b62fa4e6f2c..bade1ef0d30 100644 --- a/x11-libs/xapps/xapps-2.0.6.ebuild +++ b/x11-libs/xapps/xapps-2.0.6.ebuild @@ -74,9 +74,9 @@ src_install() { install_pygobject_override() { PYTHON_GI_OVERRIDESDIR=$("${EPYTHON}" -c 'import gi;print(gi._overridesdir)' || die) einfo "gobject overrides directory: ${PYTHON_GI_OVERRIDESDIR}" - mkdir -p "${ED}/${PYTHON_GI_OVERRIDESDIR}/" || die - cp -r "${D}"/pygobject/* "${ED}/${PYTHON_GI_OVERRIDESDIR}/" || die - python_optimize "${ED}/${PYTHON_GI_OVERRIDESDIR}/" + mkdir -p "${D}/${PYTHON_GI_OVERRIDESDIR}/" || die + cp -r "${D}"/pygobject/* "${D}/${PYTHON_GI_OVERRIDESDIR}/" || die + python_optimize "${D}/${PYTHON_GI_OVERRIDESDIR}/" } python_foreach_impl install_pygobject_override rm -r "${D}/pygobject" || die