Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/_emerge/
Date: Tue, 30 Sep 2014 00:47:03
Message-Id: 1412037746.1939495d8fcdd90e4e19b3d9aba24d4cf153358a.dol-sen@gentoo
1 commit: 1939495d8fcdd90e4e19b3d9aba24d4cf153358a
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 11 17:05:17 2014 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Tue Sep 30 00:42:26 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=1939495d
7
8 _emerge/main.py: Set portage._sync_mode for --sync
9
10 This allows repos with non-existent directories to be available.
11 If the new repo is set for auto-sync, then it can be created with the sync module's new().
12
13 ---
14 pym/_emerge/main.py | 4 ++++
15 1 file changed, 4 insertions(+)
16
17 diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py
18 index 492cc25..f698614 100644
19 --- a/pym/_emerge/main.py
20 +++ b/pym/_emerge/main.py
21 @@ -1046,6 +1046,10 @@ def emerge_main(args=None):
22 elif myaction == "moo":
23 print(COWSAY_MOO % platform.system())
24 return os.EX_OK
25 + elif myaction == "sync":
26 + # need to set this to True now in order for the repository config
27 + # loading to allow new repos with non-existent directories
28 + portage._sync_mode = True
29
30 # Portage needs to ensure a sane umask for the files it creates.
31 os.umask(0o22)