From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E963D1384C3 for ; Sat, 5 Sep 2015 16:24:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82A29142B3; Sat, 5 Sep 2015 16:24:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3274F142B3 for ; Sat, 5 Sep 2015 16:24:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 440C234087E for ; Sat, 5 Sep 2015 16:24:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DDDD155 for ; Sat, 5 Sep 2015 16:24:13 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1441470210.42d2c23f979b9f2ca2b96fbe87cbbc561691f751.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/defaults.py X-VCS-Directories: catalyst/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 42d2c23f979b9f2ca2b96fbe87cbbc561691f751 X-VCS-Branch: pending Date: Sat, 5 Sep 2015 16:24:13 +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-Archives-Salt: f6946311-7573-4fa6-9d64-4f3849158a3e X-Archives-Hash: 2b0a8bdf238f6f6a1438aa0b3d0d5301 commit: 42d2c23f979b9f2ca2b96fbe87cbbc561691f751 Author: Brian Dolbec gentoo org> AuthorDate: Sat Sep 5 16:23:30 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat Sep 5 16:23:30 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=42d2c23f defaults.py: Update for the new xattr variations of the definitions This should allow to not define the decompressor_search_order in the spec file. catalyst/defaults.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/catalyst/defaults.py b/catalyst/defaults.py index 5ce2858..5af60a9 100644 --- a/catalyst/defaults.py +++ b/catalyst/defaults.py @@ -1,5 +1,8 @@ +from DeComp.definitions import DECOMPRESSOR_XATTR_SEARCH_ORDER + + # these should never be touched required_build_targets = ["targetbase", "generic_stage_target"] @@ -24,7 +27,7 @@ verbosity = 1 confdefaults={ "archdir": "%(PythonDir)s/arch", "compression_mode": 'lbzip2', - "decompressor_search_order": 'lbzip2 bzip2 tar pixz xz gzip squashfs', + "decompressor_search_order": DECOMPRESSOR_XATTR_SEARCH_ORDER, "distdir": "/usr/portage/distfiles", "hash_function": "crc32", "icecream": "/var/cache/icecream",