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 921BE159C9B for ; Sat, 3 Aug 2024 09:06:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29176E2A78; Sat, 3 Aug 2024 09:06:54 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 108B6E2A78 for ; Sat, 3 Aug 2024 09:06:54 +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 D4C7D335D6B for ; Sat, 3 Aug 2024 09:06:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 111671E7E for ; Sat, 3 Aug 2024 09:06:51 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1722675870.6356b5ab72a658635dd018c25b21ce998250f887.dilfridge@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 6356b5ab72a658635dd018c25b21ce998250f887 X-VCS-Branch: master Date: Sat, 3 Aug 2024 09:06:51 +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: 1bf9da9f-c73a-4dc9-8455-1b80aeb9984e X-Archives-Hash: 6046f815ddbb1fd8489d1fe5f2345a7b commit: 6356b5ab72a658635dd018c25b21ce998250f887 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Aug 3 09:04:30 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Aug 3 09:04:30 2024 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=6356b5ab Add log.debug statements to follow profile symlink creation Signed-off-by: Andreas K. Hüttel gentoo.org> catalyst/base/stagebase.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 82300e88..2975236e 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -888,11 +888,14 @@ class StageBase(TargetBase, ClearBase, GenBase): # stage_path is chroot_path + root_path root_port_conf = Path(self.settings['stage_path'] + self.settings['port_conf']) + log.debug(' creating directory %s', root_port_conf) root_port_conf.mkdir(mode=0o755, parents=True, exist_ok=True) root_make_profile = root_port_conf / 'make.profile' + log.debug(' removing file %s', root_make_profile) root_make_profile.unlink(missing_ok=True) + log.debug(' symlinking it to %s', os.path.relpath(chroot_profile_path, root_port_conf)) root_make_profile.symlink_to(os.path.relpath(chroot_profile_path, root_port_conf), target_is_directory=True) 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 2C3EA159C9B for ; Fri, 9 Aug 2024 19:34:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DC592BC133; Fri, 9 Aug 2024 19:34:12 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43E862BC126 for ; Fri, 9 Aug 2024 19:34:12 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7B7AE3430F0 for ; Fri, 9 Aug 2024 19:34:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D87E1EE6 for ; Fri, 9 Aug 2024 19:34:08 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1722675870.6356b5ab72a658635dd018c25b21ce998250f887.dilfridge@gentoo> Subject: [gentoo-commits] proj/catalyst:dilfridge/qcow2 commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 6356b5ab72a658635dd018c25b21ce998250f887 X-VCS-Branch: dilfridge/qcow2 Date: Fri, 9 Aug 2024 19:34: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: d9fb74b2-6547-4f9e-975b-a779febc2a78 X-Archives-Hash: 26d7599a61a8f3451f1db0025996f44a Message-ID: <20240809193408.0RPlF_j0HVhMk17teAQizNMY2dcHzXgAzz8B5mhvo64@z> commit: 6356b5ab72a658635dd018c25b21ce998250f887 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Aug 3 09:04:30 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Aug 3 09:04:30 2024 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=6356b5ab Add log.debug statements to follow profile symlink creation Signed-off-by: Andreas K. Hüttel gentoo.org> catalyst/base/stagebase.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 82300e88..2975236e 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -888,11 +888,14 @@ class StageBase(TargetBase, ClearBase, GenBase): # stage_path is chroot_path + root_path root_port_conf = Path(self.settings['stage_path'] + self.settings['port_conf']) + log.debug(' creating directory %s', root_port_conf) root_port_conf.mkdir(mode=0o755, parents=True, exist_ok=True) root_make_profile = root_port_conf / 'make.profile' + log.debug(' removing file %s', root_make_profile) root_make_profile.unlink(missing_ok=True) + log.debug(' symlinking it to %s', os.path.relpath(chroot_profile_path, root_port_conf)) root_make_profile.symlink_to(os.path.relpath(chroot_profile_path, root_port_conf), target_is_directory=True)