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 E1DBB1384C3 for ; Sun, 6 Sep 2015 20:33:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E7EC1428A; Sun, 6 Sep 2015 20:33:49 +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 41EA61428A for ; Sun, 6 Sep 2015 20:33:49 +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 0E508340ABF for ; Sun, 6 Sep 2015 20:33:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFF5C155 for ; Sun, 6 Sep 2015 20:33:44 +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: <1441570964.b5f83751008c8f3757841b9bff59a02af1ac0ce1.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: b5f83751008c8f3757841b9bff59a02af1ac0ce1 X-VCS-Branch: pending Date: Sun, 6 Sep 2015 20:33:44 +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: 49c96ee9-1037-4653-acf4-1e4f79b15a25 X-Archives-Hash: 778686e30745b1eeed423d3a74952f61 commit: b5f83751008c8f3757841b9bff59a02af1ac0ce1 Author: Brian Dolbec gentoo org> AuthorDate: Sat Sep 5 16:23:30 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun Sep 6 20:22:44 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b5f83751 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",