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 9106F1382C5 for ; Wed, 20 May 2020 03:42:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3B53E08B1; Wed, 20 May 2020 03:42:43 +0000 (UTC) Received: from mail-pf1-f169.google.com (mail-pf1-f169.google.com [209.85.210.169]) (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 CBDA2E08B1 for ; Wed, 20 May 2020 03:42:43 +0000 (UTC) Received: by mail-pf1-f169.google.com with SMTP id y18so904078pfl.9 for ; Tue, 19 May 2020 20:42:43 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=llBDwMpqCs60tum10sMSk6C73vBsFNw3V6zRaWjyJ4Q=; b=sa8ThTY24xYPyC6xxhk13r6IidQvd4JH6J9+BmCuiFaH4l2q9NLOTjJa+JrREj32++ jKmGNWbbafuR5/xQW2avP70f8PHx0Yn5igUvPHuQEOy+yPCBAYk8F239KBc/IUQs0CxH NWB7P6wpfQ2hGxi5VzyNnO9YXxN1x+RMW5m+jqpsxNbMsnIxWRgyqlLHxjPAB7lpxYN8 K0orCh8owOaMANxrJruUlK/DNWoks85kTpB5CPyIIu2OK6yapiYO9BNYQubDdD+fpMzh SPlOeauxiyDSkyNjpqQyWp7ZijiMWpkoXdVyJTF9SLCmv/4ctuB51tywspW84ImDR/Gr 1M+A== X-Gm-Message-State: AOAM5319J/yNRgklQ3VC+bU8UAWMMTzXTFoB+sP3ugs4bqUQuKCtmWwU f+DUCSQ1v8h1x7QgDnkCMJvi86w9 X-Google-Smtp-Source: ABdhPJxWLGyXmFeX1Jd6hpyJjbCJLHa0Ob1SyukluSsW0y9MTVGz5z0hyQKMZbG+XdjrBEVfm9T5Fw== X-Received: by 2002:a63:e143:: with SMTP id h3mr2283464pgk.85.1589946162608; Tue, 19 May 2020 20:42:42 -0700 (PDT) Received: from localhost ([134.134.137.77]) by smtp.gmail.com with ESMTPSA id 141sm756695pfz.171.2020.05.19.20.42.41 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 19 May 2020 20:42:41 -0700 (PDT) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 04/21] catalyst: Remove PythonDir setting Date: Tue, 19 May 2020 20:42:09 -0700 Message-Id: <20200520034226.2870937-4-mattst88@gentoo.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200520034226.2870937-1-mattst88@gentoo.org> References: <20200520034226.2870937-1-mattst88@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 89720cb4-9493-47a7-87ba-fb6a5c97a8f6 X-Archives-Hash: c54ec4ad8030312c8b631d80f3fb0b04 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 --- 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: -- 2.26.2