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 8F2091382C5 for ; Wed, 20 May 2020 03:42:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5ACFE08CE; Wed, 20 May 2020 03:42:54 +0000 (UTC) Received: from mail-pl1-f195.google.com (mail-pl1-f195.google.com [209.85.214.195]) (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 CDFDAE08CE for ; Wed, 20 May 2020 03:42:54 +0000 (UTC) Received: by mail-pl1-f195.google.com with SMTP id x10so775944plr.4 for ; Tue, 19 May 2020 20:42:54 -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=hpeK2gSxfvgPGQ61jD9qF2SOkTLh+JVjLNEz5+x+qC4=; b=J7Cvqt33wDlnC/Egs+YKnEyctk00LKflE3pyDR09N4VgDu4lwc8MUCDNJ7FK1U3XRM 6J5Z6RGGIqgptmpGehSjCSQbOaM5K1U/+j8AwMBB+aGoiM0PASxc4aVb7KAStTTF5FnH 1Qsk/e1fMxx2vz+4ZM9bGKEGdwCPtWnyMz4VviUFarnHEDUljj5Fty66qnOszwuiZTof +h5ppViX4+WVjw5DcPV5K7PLf2JGXdFwD2FyG9MH657BGY0ulZeRIFrHHgmlctuWLASG MWbCV2URNpG7d1EardTk1RWdzKigNenmRfDFJ7B4F87J+gGjs1eukc9bqeGMtb8aJxTE myIw== X-Gm-Message-State: AOAM531cCx1ZovekdGIRvs/FFt2IjwR83i0UTmkMbg1LuVX2+GiOj7iP MJH3akh2luYPFV4NvnXNQrU2ZFJe X-Google-Smtp-Source: ABdhPJyRDBbhqrzj1LjulPodT0GvWM0V3tftn7Wo8lIP2nn2ClvyN71VisBWxgiKb/IrqjEI1gAlgA== X-Received: by 2002:a17:902:8509:: with SMTP id bj9mr2574792plb.151.1589946173447; Tue, 19 May 2020 20:42:53 -0700 (PDT) Received: from localhost ([134.134.137.77]) by smtp.gmail.com with ESMTPSA id gg8sm738722pjb.39.2020.05.19.20.42.52 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 19 May 2020 20:42:52 -0700 (PDT) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 08/21] catalyst: Disallow DEBUG and VERBOSE in spec files Date: Tue, 19 May 2020 20:42:13 -0700 Message-Id: <20200520034226.2870937-8-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: b86677f0-4532-4686-a86d-988c7b90fe71 X-Archives-Hash: f003dd43ba9932d7b218e0f8d96a193b Catalyst has --debug/-d and --verbose/-v options for this. Since conf_values is assigned in a very confusing manner in main.py, I suspect these values were added to the list due to a misunderstanding. Signed-off-by: Matt Turner --- catalyst/defaults.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/catalyst/defaults.py b/catalyst/defaults.py index 0da717f1..ccabd88d 100644 --- a/catalyst/defaults.py +++ b/catalyst/defaults.py @@ -20,13 +20,11 @@ valid_config_file_values.extend([ "compression_mode", "compressor_arch", "compressor_options", - "DEBUG", "decompressor_search_order", "digests", "distcc", "envscript", "options", - "VERBOSE", ]) confdefaults = { -- 2.26.2