[gentoo-portage-dev] [PATCH] ebuild-helpers: avoid exec loops or fork bombs in wrappers (bug 547086)

2015-04-28 Thread Zac Medico
Since commit 130c01b9e561dd6ff7733a4905b21a0a921e9a22, extra portage paths in PATH could trigger exec loops or fork bombs in wrappers. Fixes: 130c01b9e561 (_doebuild_path: add fallback for temp PORTAGE_BIN_PATH (bug 547086)) X-Gentoo-Bug: 547086 X-Gentoo-Bug-URL:

[gentoo-portage-dev] [PATCH v3] ebuild-helpers: avoid exec loops or fork bombs in wrappers (bug 547086)

2015-04-28 Thread Zac Medico
Since commit 130c01b9e561dd6ff7733a4905b21a0a921e9a22, extra portage paths in PATH could trigger exec loops or fork bombs in wrappers. Fixes: 130c01b9e561 (_doebuild_path: add fallback for temp PORTAGE_BIN_PATH (bug 547086)) X-Gentoo-Bug: 547086 X-Gentoo-Bug-URL:

[gentoo-portage-dev] [PATCH v3] ro_checker: only check nearest parent (bug 547390)

2015-04-28 Thread Zac Medico
The ro_checker code added in commit 47ef9a0969474f963dc8e52bfbbb8bc075e8d73c incorrectly asserts that all parent directories be writable. Fix it to only assert that the nearest parent directory be writable. Fixes 47ef9a096947: (Test for read-only filesystems, fixes bug 378869) X-Gentoo-Bug:

Re: [gentoo-portage-dev] [PATCH] Bundle a minimalistic derivation of Python's formatter module (bug 547732)

2015-04-28 Thread Zac Medico
On 04/28/2015 05:07 PM, Brian Dolbec wrote: On Sat, 25 Apr 2015 13:37:10 -0700 Zac Medico zmed...@gentoo.org wrote: Python's formatter module is scheduled for removal in Python 3.6, so replace it with a minimalistic derivation. X-Gentoo-Bug: 547732 X-Gentoo-Bug-url:

[gentoo-portage-dev] [PATCH] ro_checker: only check nearest parent (bug 547390)

2015-04-28 Thread Zac Medico
The ro_checker code added in commit 47ef9a0969474f963dc8e52bfbbb8bc075e8d73c incorrectly asserts that all parent directories be writable. Fix it to only assert that the nearest parent directory be writable. Fixes 47ef9a096947: (Test for read-only filesystems, fixes bug 378869) X-Gentoo-Bug:

[gentoo-portage-dev] [PATCH v2] ro_checker: only check nearest parent (bug 547390)

2015-04-28 Thread Zac Medico
The ro_checker code added in commit 47ef9a0969474f963dc8e52bfbbb8bc075e8d73c incorrectly asserts that all parent directories be writable. Fix it to only assert that the nearest parent directory be writable. Fixes 47ef9a096947: (Test for read-only filesystems, fixes bug 378869) X-Gentoo-Bug:

[gentoo-portage-dev] [PATCH v2] ebuild-helpers: avoid exec loops or fork bombs in wrappers (bug 547086)

2015-04-28 Thread Zac Medico
Since commit 130c01b9e561dd6ff7733a4905b21a0a921e9a22, extra portage paths in PATH could trigger exec loops or fork bombs in wrappers. Fixes: 130c01b9e561 (_doebuild_path: add fallback for temp PORTAGE_BIN_PATH (bug 547086)) X-Gentoo-Bug: 547086 X-Gentoo-Bug-URL:

Re: [gentoo-portage-dev] [PATCH v3] ebuild-helpers: avoid exec loops or fork bombs in wrappers (bug 547086)

2015-04-28 Thread Brian Dolbec
On Mon, 27 Apr 2015 18:53:02 -0700 Zac Medico zmed...@gentoo.org wrote: Since commit 130c01b9e561dd6ff7733a4905b21a0a921e9a22, extra portage paths in PATH could trigger exec loops or fork bombs in wrappers. Fixes: 130c01b9e561 (_doebuild_path: add fallback for temp PORTAGE_BIN_PATH (bug

[gentoo-portage-dev] [PATCH] _unmerge_protected_symlinks: suggest UNINSTALL_IGNORE (bug 428098)

2015-04-28 Thread Zac Medico
X-Gentoo-Bug: 428098 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=428098 --- pym/portage/dbapi/vartree.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index c59d778..cacbf96 100644 ---

Re: [gentoo-portage-dev] [PATCH] _unmerge_protected_symlinks: suggest UNINSTALL_IGNORE (bug 428098)

2015-04-28 Thread Brian Dolbec
On Tue, 28 Apr 2015 19:58:51 -0700 Zac Medico zmed...@gentoo.org wrote: X-Gentoo-Bug: 428098 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=428098 --- pym/portage/dbapi/vartree.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pym/portage/dbapi/vartree.py

Re: [gentoo-portage-dev] [PATCH] search: fix addCP so only the specified results are displayed (bug 547736)

2015-04-28 Thread Brian Dolbec
On Sat, 25 Apr 2015 15:47:20 -0700 Zac Medico zmed...@gentoo.org wrote: Since commit 4938b8a8a72e719b394a5c5b0c5030c160091d57, the search.addCP method has not worked as intended. Fixes: 4938b8a8a72e (Display emerge search results incrementally (412471)) X-Gentoo-Bug: 547736

Re: [gentoo-portage-dev] [PATCH] Make the USE variable readonly (bug 325009)

2015-04-28 Thread Brian Dolbec
On Sun, 26 Apr 2015 14:14:09 -0700 Zac Medico zmed...@gentoo.org wrote: This requires the EBUILD_FORCE_TEST code from dyn_test to execute before USE is declared readonly. X-Gentoo-Bug: 325009 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=325009 --- bin/ebuild.sh | 10

Re: [gentoo-portage-dev] [PATCH v3] ro_checker: only check nearest parent (bug 547390)

2015-04-28 Thread Brian Dolbec
On Sun, 26 Apr 2015 21:30:28 -0700 Zac Medico zmed...@gentoo.org wrote: The ro_checker code added in commit 47ef9a0969474f963dc8e52bfbbb8bc075e8d73c incorrectly asserts that all parent directories be writable. Fix it to only assert that the nearest parent directory be writable. Fixes