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 9A2771384C3 for ; Sun, 6 Sep 2015 21:21:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB3661426D; Sun, 6 Sep 2015 21:21:35 +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 62EB51426D for ; Sun, 6 Sep 2015 21:21:35 +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 A6B893409EC for ; Sun, 6 Sep 2015 21:21:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4B9918C for ; Sun, 6 Sep 2015 21:21:31 +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: <1441574280.1039b4beef11da6dfd8d54b1ab3724b1e817bcdf.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:master 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: 1039b4beef11da6dfd8d54b1ab3724b1e817bcdf X-VCS-Branch: master Date: Sun, 6 Sep 2015 21:21:31 +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: 06604e67-c1ea-471b-a5d9-114424def76f X-Archives-Hash: 74c716a5afd4e07d69bf60319a166f89 Message-ID: <20150906212131.A_SJgGEkK2ANu6NzKIDReKcwLFiOXmfoOfuTIKB3pg8@z> commit: 1039b4beef11da6dfd8d54b1ab3724b1e817bcdf Author: Brian Dolbec gentoo org> AuthorDate: Sat Sep 5 16:23:30 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun Sep 6 21:18:00 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=1039b4be 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 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/catalyst/defaults.py b/catalyst/defaults.py index 5ce2858..5db7ab6 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"] @@ -23,8 +26,8 @@ verbosity = 1 confdefaults={ "archdir": "%(PythonDir)s/arch", - "compression_mode": 'lbzip2', - "decompressor_search_order": 'lbzip2 bzip2 tar pixz xz gzip squashfs', + "compression_mode": 'lbzip2_x', + "decompressor_search_order": DECOMPRESSOR_XATTR_SEARCH_ORDER, "distdir": "/usr/portage/distfiles", "hash_function": "crc32", "icecream": "/var/cache/icecream",