[gentoo-portage-dev] [PATCH 4/4] Add note to NEWS/ChangeLog for PORT_LOGDIR* changes

2018-12-14 Thread M. J. Everitt
Suggested-by: Michael Everitt Bug: https://bugs.gentoo.org/668538 --- NEWS | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS b/NEWS index b430f273f..e65205c42 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ News (mainly features/major bug fixes) +portage-next +-- +* Rena

[gentoo-portage-dev] [PATCH 3/4] Update documentation for PORT_LOGDIR* changes

2018-12-14 Thread M. J. Everitt
Suggested-by: Michael Everitt Bug: https://bugs.gentoo.org/668538 --- man/make.conf.5 | 28 +--- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/man/make.conf.5 b/man/make.conf.5 index a0faf51bf..a8f5b639f 100644 --- a/man/make.conf.5 +++ b/man/make.conf.5

[gentoo-portage-dev] [PATCH 1/4] Renamed PORT_LOGDIR[_CLEAN] to PORTAGE_LOGDIR[_CLEAN]

2018-12-14 Thread M. J. Everitt
To match similar existing PORTAGE_* variables Suggested-by: Zac Medico Acked-by: Michael Everitt Bug: https://bugs.gentoo.org/668538 --- NEWS | 2 +- cnf/make.conf.example | 12 +- cnf/make.globals

[gentoo-portage-dev] [PATCH 2/4] Provide compatibility support for old PORT_LOGDIR* variable names

2018-12-14 Thread M. J. Everitt
Suggested-by: Zac Medico Acked-by: Michael Everitt Bug: https://bugs.gentoo.org/668538 --- lib/portage/package/ebuild/config.py | 11 +++ 1 file changed, 11 insertions(+) diff --git a/lib/portage/package/ebuild/config.py b/lib/portage/package/ebuild/config.py index a68df5807..5c1404389

[gentoo-portage-dev] [PATCH 0/4] Rename PORT_LOGDIR{,_CLEAN} variables to PORTAGE_LOGDIR{,_CLEAN} Bug 668538

2018-12-14 Thread M. J. Everitt
This patchset aims to fix potential ambiguity and confusion between older PORT_LOG* variables, and more recent PORTAGE_* variables - often leading to mysteriously lacking logging due to incorrect variable names. Documented in Bug 668538; with thanks to Zac for diagnosis, and solution assistance!