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 9AD37138334 for ; Sun, 15 Dec 2019 07:40:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4449E0877; Sun, 15 Dec 2019 07:40:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C9386E0877 for ; Sun, 15 Dec 2019 07:40:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 76F0634D78A for ; Sun, 15 Dec 2019 07:40:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8329A30C for ; Sun, 15 Dec 2019 07:40:39 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1576395569.ce0f37932dfa194566aa32bf6f3a11066c4854fe.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/emerge-webrsync X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: ce0f37932dfa194566aa32bf6f3a11066c4854fe X-VCS-Branch: master Date: Sun, 15 Dec 2019 07:40:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6f8054cd-584e-4efb-a8cf-3e0e2a3de427 X-Archives-Hash: 349f7b972d09fe49e4a70b2abc8a8574 commit: ce0f37932dfa194566aa32bf6f3a11066c4854fe Author: Zac Medico gentoo org> AuthorDate: Sun Dec 15 07:21:01 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Dec 15 07:39:29 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ce0f3793 emerge-webrsync: enable xz snapshots for tarsync There's xz support in current versions of diffball. Bug: https://bugs.gentoo.org/702970 Signed-off-by: Zac Medico gentoo.org> bin/emerge-webrsync | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bin/emerge-webrsync b/bin/emerge-webrsync index 2190ad20b..5fe30133d 100755 --- a/bin/emerge-webrsync +++ b/bin/emerge-webrsync @@ -309,11 +309,7 @@ do_snapshot() { local mirror local compressions="" - # xz is not supported in app-arch/tarsync, so use - # bz2 format if we have tarsync. - if ! type -P tarsync > /dev/null ; then - type -P xzcat > /dev/null && compressions="${compressions} xz" - fi + type -P xzcat > /dev/null && compressions="${compressions} xz" type -P bzcat > /dev/null && compressions="${compressions} bz2" type -P zcat > /dev/null && compressions="${compressions} gz" if [[ -z ${compressions} ]] ; then