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 48A0A1382C5 for ; Thu, 21 May 2020 20:25:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 093CEE0957; Thu, 21 May 2020 20:25:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 DD649E0967 for ; Thu, 21 May 2020 20:25:35 +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 04EBC34F291 for ; Thu, 21 May 2020 20:25:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B308E257 for ; Thu, 21 May 2020 20:25:33 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1589939377.f40238e0c5644db5dcaaab9f0305cc9d62b144a1.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/defaults.py catalyst/main.py X-VCS-Directories: catalyst/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: f40238e0c5644db5dcaaab9f0305cc9d62b144a1 X-VCS-Branch: master Date: Thu, 21 May 2020 20:25:33 +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: 3b1ec522-2d78-479e-acbb-4af00e7f335b X-Archives-Hash: 10506cc86b0f358c596684bb995bc62b Message-ID: <20200521202533.BdAePhc0IyhM7DDrVtdCmNB7n0SK-fH7bg-GXR-Saas@z> commit: f40238e0c5644db5dcaaab9f0305cc9d62b144a1 Author: Matt Turner gentoo org> AuthorDate: Mon May 18 22:52:36 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed May 20 01:49:37 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f40238e0 catalyst: Remove PythonDir setting Was used to find the arch directory containing, e.g., sparc.py, but all that code is gone now after the modules were converted to TOML. Signed-off-by: Matt Turner gentoo.org> catalyst/defaults.py | 1 - catalyst/main.py | 3 --- 2 files changed, 4 deletions(-) diff --git a/catalyst/defaults.py b/catalyst/defaults.py index 404f4892..f6bc1e14 100644 --- a/catalyst/defaults.py +++ b/catalyst/defaults.py @@ -64,7 +64,6 @@ confdefaults = { "options": set(), "pkgdir": "/var/cache/binpkgs", "port_tmpdir": "/var/tmp/portage", - "PythonDir": "./catalyst", "repo_basedir": "/var/db/repos", "repo_name": "gentoo", "repos": "%(storedir)s/repos", diff --git a/catalyst/main.py b/catalyst/main.py index bad712fa..b01d7a6a 100644 --- a/catalyst/main.py +++ b/catalyst/main.py @@ -55,9 +55,6 @@ def parse_config(config_files): else: conf_values[x] = confdefaults[x] - # add our python base directory to use for loading target arch's - conf_values["PythonDir"] = os.path.dirname(os.path.realpath(__file__)) - # print out any options messages for opt in conf_values['options']: if opt in option_messages: