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 BBB991387FF for ; Mon, 20 Oct 2014 03:54:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37AA8E089D; Mon, 20 Oct 2014 03:54:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36F93E08D9 for ; Mon, 20 Oct 2014 03:54:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00AF5340478 for ; Mon, 20 Oct 2014 03:54:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4950C8492 for ; Mon, 20 Oct 2014 03:54:45 +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: <1413776913.a60913589efdd7e933c4a74ed8f8bb179b96e361.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/main.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: a60913589efdd7e933c4a74ed8f8bb179b96e361 X-VCS-Branch: plugin-sync Date: Mon, 20 Oct 2014 03:54:45 +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: 2bf1af44-15f7-4982-825f-ab4a754678ef X-Archives-Hash: 502016398a720a8ccbfdc255e27fe105 commit: a60913589efdd7e933c4a74ed8f8bb179b96e361 Author: Brian Dolbec gentoo org> AuthorDate: Mon Apr 21 18:23:36 2014 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Oct 20 03:48:33 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=a6091358 _emerge/main.py: Remove redundant portage._sync_mode setting --- pym/_emerge/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index f5f2ec4..a986cfe 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -1049,8 +1049,6 @@ def emerge_main(args=None): # Portage needs to ensure a sane umask for the files it creates. os.umask(0o22) - if myaction == "sync": - portage._sync_mode = True emerge_config = load_emerge_config( action=myaction, args=myfiles, opts=myopts) rval = profile_check(emerge_config.trees, emerge_config.action)