From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Q3w9i-0001KL-QF for garchives@archives.gentoo.org; Sun, 27 Mar 2011 20:01:48 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C51911C04D; Sun, 27 Mar 2011 20:01:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 97A0A1C04D for ; Sun, 27 Mar 2011 20:01:38 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3CF521B4164 for ; Sun, 27 Mar 2011 20:01:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 946B78006A for ; Sun, 27 Mar 2011 20:01:37 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <3bfc88f2aed25d4289dafca6c069eae8e71971ea.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: 3bfc88f2aed25d4289dafca6c069eae8e71971ea Date: Sun, 27 Mar 2011 20:01:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 5bb672225fb5445b282bb9893b21e648 commit: 3bfc88f2aed25d4289dafca6c069eae8e71971ea Author: Zac Medico gentoo org> AuthorDate: Sun Mar 27 20:01:10 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Mar 27 20:01:10 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D3bfc88f2 emerge-webrsync: drop lzma support The lzma snapshots have been replaced by xz snapshots, as discussed in the "RFC: Remove .lzma in favor of .xz portage snapshots" thread on the gentoo-dev ml: http://archives.gentoo.org/gentoo-dev/msg_7de1b57ce531fdf33d33b5b07000643= 6.xml --- bin/emerge-webrsync | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/bin/emerge-webrsync b/bin/emerge-webrsync index 8279242..69cfc96 100755 --- a/bin/emerge-webrsync +++ b/bin/emerge-webrsync @@ -64,7 +64,6 @@ do_tar() { local decompressor case ${file} in *.xz) decompressor=3D"xzcat" ;; - *.lzma) decompressor=3D"lzcat" ;; *.bz2) decompressor=3D"bzcat" ;; *.gz) decompressor=3D"zcat" ;; *) decompressor=3D"cat" ;; @@ -227,16 +226,15 @@ do_snapshot() { local mirror =20 local compressions=3D"" - # lzma is not supported in app-arch/tarsync, so use + # 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=3D"${compressions} xz" - type -P lzcat > /dev/null && compressions=3D"${compressions} lzma" fi type -P bzcat > /dev/null && compressions=3D"${compressions} bz2" type -P zcat > /dev/null && compressions=3D"${compressions} gz" if [[ -z ${compressions} ]] ; then - eecho "unable to locate any decompressors (lzcat or bzcat or zcat)" + eecho "unable to locate any decompressors (xzcat or bzcat or zcat)" exit 1 fi =20