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 D9A18158020 for ; Thu, 3 Nov 2022 17:40:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3BB1E0AAD; Thu, 3 Nov 2022 17:39:59 +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 C6A8AE0AAD for ; Thu, 3 Nov 2022 17:39:59 +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 A66C6341201 for ; Thu, 3 Nov 2022 17:39:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE17E55B for ; Thu, 3 Nov 2022 17:39:56 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1667497166.ae89d486ffc473b058d23988d1bbb6c1a9bfb46f.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/notebook_shim/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/notebook_shim/notebook_shim-0.2.2-r1.ebuild dev-python/notebook_shim/notebook_shim-0.2.2.ebuild X-VCS-Directories: dev-python/notebook_shim/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: ae89d486ffc473b058d23988d1bbb6c1a9bfb46f X-VCS-Branch: master Date: Thu, 3 Nov 2022 17:39:56 +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: ddc24684-52e4-47ca-a861-5951f4766479 X-Archives-Hash: dbc6dd141bbe3d819a3adf8009d55e46 commit: ae89d486ffc473b058d23988d1bbb6c1a9bfb46f Author: Arthur Zamarin gentoo org> AuthorDate: Thu Nov 3 17:39:26 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Thu Nov 3 17:39:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae89d486 dev-python/notebook_shim: fix usr/etc installation Closes: https://bugs.gentoo.org/879297 Signed-off-by: Arthur Zamarin gentoo.org> .../{notebook_shim-0.2.2.ebuild => notebook_shim-0.2.2-r1.ebuild} | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/notebook_shim/notebook_shim-0.2.2.ebuild b/dev-python/notebook_shim/notebook_shim-0.2.2-r1.ebuild similarity index 90% rename from dev-python/notebook_shim/notebook_shim-0.2.2.ebuild rename to dev-python/notebook_shim/notebook_shim-0.2.2-r1.ebuild index 17126685a250..7aae57be1d88 100644 --- a/dev-python/notebook_shim/notebook_shim-0.2.2.ebuild +++ b/dev-python/notebook_shim/notebook_shim-0.2.2-r1.ebuild @@ -36,3 +36,8 @@ python_test() { local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 epytest -p pytest_tornasync.plugin } + +src_install() { + distutils-r1_src_install + mv "${ED}/usr/etc" "${ED}/etc" || die +}