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 A5DB31381F4 for ; Wed, 15 Aug 2012 03:04:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5788CE0B65; Wed, 15 Aug 2012 03:04:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 273CAE0B65 for ; Wed, 15 Aug 2012 03:04:06 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6086D1B4065 for ; Wed, 15 Aug 2012 03:04:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 1D267E5437 for ; Wed, 15 Aug 2012 03:04:04 +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: <1344999803.e672b5ccbbbe38eda5c733fc799a20d92a8bdf75.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: e672b5ccbbbe38eda5c733fc799a20d92a8bdf75 X-VCS-Branch: master Date: Wed, 15 Aug 2012 03:04:04 +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: c1ccc3c5-a5ec-4610-921d-4b348cda7f67 X-Archives-Hash: 4037a333950808456c92557fbff29799 commit: e672b5ccbbbe38eda5c733fc799a20d92a8bdf75 Author: Jan Pobrislo volny cz> AuthorDate: Wed Aug 15 03:03:23 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Aug 15 03:03:23 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=e672b5cc emerge-webrsync: PORTAGE_RSYNC_OPTS, bug #364105 --- bin/emerge-webrsync | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/bin/emerge-webrsync b/bin/emerge-webrsync index 80d6294..5644abf 100755 --- a/bin/emerge-webrsync +++ b/bin/emerge-webrsync @@ -41,7 +41,8 @@ else fi eval $("${portageq}" envvar -v DISTDIR FEATURES FETCHCOMMAND GENTOO_MIRRORS \ PORTAGE_BIN_PATH PORTAGE_GPG_DIR \ - PORTAGE_NICENESS PORTAGE_RSYNC_EXTRA_OPTS PORTAGE_TMPDIR PORTDIR \ + PORTAGE_NICENESS PORTAGE_RSYNC_EXTRA_OPTS \ + PORTAGE_RSYNC_OPTS PORTAGE_TMPDIR PORTDIR \ SYNC USERLAND http_proxy ftp_proxy) export http_proxy ftp_proxy @@ -220,9 +221,7 @@ sync_local() { chown ${ownership} portage > /dev/null 2>&1 && \ chown -R ${ownership} portage cd portage - rsync -av --progress --stats --delete --delete-after \ - --exclude='/distfiles' --exclude='/packages' \ - --exclude='/local' ${PORTAGE_RSYNC_EXTRA_OPTS} . "${PORTDIR%%/}" + rsync ${PORTAGE_RSYNC_OPTS} ${PORTAGE_RSYNC_EXTRA_OPTS} . "${PORTDIR%%/}" cd .. vecho "Cleaning up ..."