* [gentoo-commits] proj/portage:master commit in: pym/_emerge/, pym/portage/emaint/modules/sync/
@ 2017-01-23 0:56 Zac Medico
0 siblings, 0 replies; only message in thread
From: Zac Medico @ 2017-01-23 0:56 UTC (permalink / raw
To: gentoo-commits
commit: 23f239134b0290cbe0435e13d8f1b1757c6d8524
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 23 00:31:51 2017 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Jan 23 00:40:37 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=23f23913
action_sync: fix TypeError: 'int' object is not subscriptable (bug 606588)
Handle the tuple returned from SyncRepos._sync since commit
f143e58dd3fd80ab67121e7a62e8cf47151d3907. Also fix the
SyncRepos._sync method to prevent corruption of the returncode
variable.
Fixes: f143e58dd3fd ("emaint: exit with non-zero status code when module fails (bug 567478)")
X-Gentoo-Bug: 606588
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=606588
pym/_emerge/actions.py | 6 ++----
pym/portage/emaint/modules/sync/sync.py | 4 ++--
2 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py
index 6704afc..ccb6a5d 100644
--- a/pym/_emerge/actions.py
+++ b/pym/_emerge/actions.py
@@ -2000,11 +2000,9 @@ def action_sync(emerge_config, trees=DeprecationWarning,
syncer = SyncRepos(emerge_config)
- retvals = syncer.auto_sync(options={'return-messages': False})
+ success, msgs = syncer.auto_sync(options={'return-messages': False})
- if retvals:
- return retvals[0][1]
- return os.EX_OK
+ return os.EX_OK if success else 1
def action_uninstall(settings, trees, ldpath_mtimes,
diff --git a/pym/portage/emaint/modules/sync/sync.py b/pym/portage/emaint/modules/sync/sync.py
index d867699..b190b3c 100644
--- a/pym/portage/emaint/modules/sync/sync.py
+++ b/pym/portage/emaint/modules/sync/sync.py
@@ -236,8 +236,8 @@ class SyncRepos(object):
if retvals:
msgs.extend(self.rmessage(retvals, 'sync'))
- for repo, returncode in retvals:
- if returncode != os.EX_OK:
+ for repo, retval in retvals:
+ if retval != os.EX_OK:
returncode = False
break
else:
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2017-01-23 0:56 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-23 0:56 [gentoo-commits] proj/portage:master commit in: pym/_emerge/, pym/portage/emaint/modules/sync/ Zac Medico
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox