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 7996A138350 for ; Thu, 13 Feb 2020 10:42:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AFB6E086C; Thu, 13 Feb 2020 10:42:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 12EE1E086C for ; Thu, 13 Feb 2020 10:42:12 +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 09D8734ECDC for ; Thu, 13 Feb 2020 10:42:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 464FE138 for ; Thu, 13 Feb 2020 10:42:08 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1581590522.c93dbf15a04101056c9bcbc62e3c12bdd6d21b8b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/twisted/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/twisted/twisted-19.10.0.ebuild X-VCS-Directories: dev-python/twisted/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c93dbf15a04101056c9bcbc62e3c12bdd6d21b8b X-VCS-Branch: master Date: Thu, 13 Feb 2020 10:42:08 +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: 4b49fa7c-306b-45f7-a0f9-b83b89517079 X-Archives-Hash: 5f3086aa1feafade63010055a904f3ea commit: c93dbf15a04101056c9bcbc62e3c12bdd6d21b8b Author: Michał Górny gentoo org> AuthorDate: Thu Feb 13 10:41:05 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Feb 13 10:42:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c93dbf15 dev-python/twisted: Fix stray % in var refs Closes: https://bugs.gentoo.org/709470 Signed-off-by: Michał Górny gentoo.org> dev-python/twisted/twisted-19.10.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/twisted/twisted-19.10.0.ebuild b/dev-python/twisted/twisted-19.10.0.ebuild index 6491d91917f..6de8b0c43fb 100644 --- a/dev-python/twisted/twisted-19.10.0.ebuild +++ b/dev-python/twisted/twisted-19.10.0.ebuild @@ -127,7 +127,7 @@ python_test() { python_install() { distutils-r1_python_install - cd "${D%}$(python_get_sitedir)" || die + cd "${D}$(python_get_sitedir)" || die # own the dropin.cache so we don't leave orphans touch twisted/plugins/dropin.cache || die @@ -162,7 +162,7 @@ pkg_postinst() { } python_postrm() { - rm -f "${ROOT%}$(python_get_sitedir)/twisted/plugins/dropin.cache" || die + rm -f "${ROOT}$(python_get_sitedir)/twisted/plugins/dropin.cache" || die } pkg_postrm(){