Re: [gentoo-dev] [PATCH] Add 'host' variable to GIT_CRATES to support other host like self-host gitlab or gitea

2024-11-27 Thread Paul Zander
Hi, associative arrays declared in functions are implicitly local in bash. That means any associative array declared in global ebuild scope needs to be declare global explicitly, as it's not guaranteed not to be sourced within a function by a PM ( e.g. paludis does this ). https://lists.gnu.

Re: [gentoo-dev] fricas[doc] now fails to emerge

2024-08-20 Thread Paul Zander
Am 20.08.24 um 16:52 schrieb Robin H. Johnson: On Mon, Aug 19, 2024 at 09:49:28PM +0200, Ulrich Mueller wrote: I pushed a fix to virtualx.eclass for you. That addpredict looks like a workaround, not like a real fix of the problem. It's a fix in that it correctly tells Sandbox that upstream mes

[gentoo-dev] [PATCH 3/3] [QA] drop indent_size

2024-05-05 Thread Paul Zander
indent_size is the width in spaces, we use tabs. tab_width would be the tab width in spaces, but there is no reason to force this. Signed-off-by: Paul Zander --- .editorconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index dc1d5587a8b

[gentoo-dev] [PATCH 2/3] [QA] allow overriding settings

2024-05-05 Thread Paul Zander
Signed-off-by: Paul Zander --- .editorconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index f2cd7328e57..dc1d5587a8b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,7 +2,6 @@ # Distributed under the terms of the GNU General Public License v2

[gentoo-dev] [PATCH 1/3] [QA] fix .editorconfig

2024-05-05 Thread Paul Zander
This series of patches is meant as a basis to fix the .editorconfig used in ::gentoo. Initial reason was that .patch files are being broken by the current version. trimming trailing whitespace breaks patches Signed-off-by: Paul Zander --- .editorconfig | 6 ++ 1 file changed, 6 insertions