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 0C0AF1382C5 for ; Sun, 25 Apr 2021 18:41:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 520E1E0830; Sun, 25 Apr 2021 18:41:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 3DC13E0830 for ; Sun, 25 Apr 2021 18:41:39 +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 6058C340F94 for ; Sun, 25 Apr 2021 18:41:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D85F359C for ; Sun, 25 Apr 2021 18:41:36 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1619376092.617c54030bb49bdefca2237d90aa259cb9a4e04f.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/os-brick/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/os-brick/os-brick-4.0.1-r1.ebuild dev-python/os-brick/os-brick-4.0.1.ebuild X-VCS-Directories: dev-python/os-brick/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 617c54030bb49bdefca2237d90aa259cb9a4e04f X-VCS-Branch: master Date: Sun, 25 Apr 2021 18:41:36 +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: 5bbbc114-0e19-4ac2-a0b2-4027775297b0 X-Archives-Hash: 4467c59cdfa5179a7d7d6296212fcd28 commit: 617c54030bb49bdefca2237d90aa259cb9a4e04f Author: Matthew Thode gentoo org> AuthorDate: Sun Apr 25 18:41:07 2021 +0000 Commit: Matthew Thode gentoo org> CommitDate: Sun Apr 25 18:41:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=617c5403 dev-python/os-brick: fix installing to /usr/etc Closes: https://bugs.gentoo.org/785472 Package-Manager: Portage-3.0.18, Repoman-3.0.2 RepoMan-Options: --force Signed-off-by: Matthew Thode gentoo.org> .../os-brick/{os-brick-4.0.1.ebuild => os-brick-4.0.1-r1.ebuild} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-python/os-brick/os-brick-4.0.1.ebuild b/dev-python/os-brick/os-brick-4.0.1-r1.ebuild similarity index 89% rename from dev-python/os-brick/os-brick-4.0.1.ebuild rename to dev-python/os-brick/os-brick-4.0.1-r1.ebuild index 12b80504c96..dfc56644fd2 100644 --- a/dev-python/os-brick/os-brick-4.0.1.ebuild +++ b/dev-python/os-brick/os-brick-4.0.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -32,3 +32,8 @@ RDEPEND=" >=dev-python/tenacity-6.0.0[${PYTHON_USEDEP}] >=dev-python/os-win-3.0.0[${PYTHON_USEDEP}] " + +python_prepare_all() { + sed -i -e 's/\tetc/\t\/etc/g' setup.cfg || die + distutils-r1_python_prepare_all +}