commit: 7dfc36f8e6691851b33014e507db8a42c8f35315 Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Wed Dec 18 22:34:32 2024 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Thu Dec 19 01:24:45 2024 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=7dfc36f8
action_config: Call elog_process Bug: https://bugs.gentoo.org/904702 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> NEWS | 2 ++ lib/_emerge/actions.py | 1 + 2 files changed, 3 insertions(+) diff --git a/NEWS b/NEWS index 2ba46c04b7..f79a11c991 100644 --- a/NEWS +++ b/NEWS @@ -25,6 +25,8 @@ Bug fixes: * Support cross-root package moves (bug #946326). +* Process elog messages for emerge --config (bug #904702). + portage-3.0.66.1 (2024-09-18) -------------- diff --git a/lib/_emerge/actions.py b/lib/_emerge/actions.py index 65702d38fb..88770b6457 100644 --- a/lib/_emerge/actions.py +++ b/lib/_emerge/actions.py @@ -772,6 +772,7 @@ def action_config(settings, trees, myopts, myfiles): mydbapi=trees[settings["EROOT"]]["vartree"].dbapi, tree="vartree", ) + portage.elog.elog_process(mysettings.mycpv, mysettings) if retval == os.EX_OK: portage.doebuild( ebuildpath,
