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 5E70E1396D9 for ; Tue, 14 Nov 2017 05:02:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69F4EE1075; Tue, 14 Nov 2017 05:02:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 4C6DBE1075 for ; Tue, 14 Nov 2017 05:02:39 +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 CB9EF33BF01 for ; Tue, 14 Nov 2017 05:02:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6880197BE for ; Tue, 14 Nov 2017 05:02:36 +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: <1510634961.f45b4973d64f6b8154eaa3a6b4b0b900ac33f1ce.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: repoman/ X-VCS-Repository: proj/portage X-VCS-Files: repoman/setup.py X-VCS-Directories: repoman/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: f45b4973d64f6b8154eaa3a6b4b0b900ac33f1ce X-VCS-Branch: master Date: Tue, 14 Nov 2017 05:02:36 +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: e218ccc2-178f-4bf4-ae80-21aaef71990a X-Archives-Hash: e3c1e99fc8b4843bb45a2f1851304e40 commit: f45b4973d64f6b8154eaa3a6b4b0b900ac33f1ce Author: Zac Medico gentoo org> AuthorDate: Tue Nov 14 04:45:20 2017 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Nov 14 04:49:21 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=f45b4973 repoman/setup.py: x_sdist default root owner for archive files repoman/setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/repoman/setup.py b/repoman/setup.py index 9c4def929..eead1e299 100755 --- a/repoman/setup.py +++ b/repoman/setup.py @@ -339,11 +339,15 @@ class x_install_scripts(install_scripts): class x_sdist(sdist): - """ sdist defaulting to .tar.bz2 format """ + """ sdist defaulting to .tar.bz2 format, and archive files owned by root """ def finalize_options(self): if self.formats is None: self.formats = ['bztar'] + if self.owner is None: + self.owner = 'root' + if self.group is None: + self.group = 'root' sdist.finalize_options(self)