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 EC626138334 for ; Mon, 30 Dec 2019 21:36:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A539E093A; Mon, 30 Dec 2019 21:36:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D4746E093A for ; Mon, 30 Dec 2019 21:36:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D513034DCCB for ; Mon, 30 Dec 2019 21:36:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 833763D for ; Mon, 30 Dec 2019 21:36:14 +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: <1577741669.82b29bdd12c1ea1002a455c98fa7958311b92ec3.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: misc/ X-VCS-Repository: proj/portage X-VCS-Files: misc/emerge-delta-webrsync X-VCS-Directories: misc/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 82b29bdd12c1ea1002a455c98fa7958311b92ec3 X-VCS-Branch: master Date: Mon, 30 Dec 2019 21:36:14 +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: ad68570d-b4a6-4b95-9855-6bb87f9d1deb X-Archives-Hash: 724c6c84e2ad231e6c862d84184e0864 commit: 82b29bdd12c1ea1002a455c98fa7958311b92ec3 Author: Zac Medico gentoo org> AuthorDate: Mon Dec 30 21:34:29 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Dec 30 21:34:29 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=82b29bdd emerge-delta-webrsync: chmod 755 temp dir (bug 704256) Before the rsync call, chmod 755 the temporary directory so that the root directory of the repository will have appropriate permissions. Fixes: fa0f8720e168 ("emerge-delta-webrsync: handle gentoo-YYYYMMDD directory name") Bug: https://bugs.gentoo.org/704256 Signed-off-by: Zac Medico gentoo.org> misc/emerge-delta-webrsync | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/emerge-delta-webrsync b/misc/emerge-delta-webrsync index cda5a9229..082e15e52 100755 --- a/misc/emerge-delta-webrsync +++ b/misc/emerge-delta-webrsync @@ -372,6 +372,7 @@ sync_local() { chown -R ${ownership} "${TMPDIR}" rsync_opts+=" --owner --group" fi + chmod 755 . rsync ${rsync_opts} . "${repo_location%%/}" cd "${DISTDIR}"