[PATCH] Fix objdump output parser in "nsis.py"

2025-04-12 Thread Arthur Sengileyev
inside dlldir and no setup file will be created. Instead of checking for whitespace in prefix use lstrip to accommodate for differences in outputs. Signed-off-by: Arthur Sengileyev --- scripts/nsis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/nsis.py b/scripts

[PATCH v3] Windows installer: keep dependency cache

2023-01-15 Thread Arthur Sengileyev
It should be possible to reuse cache built by previous iteration to process next executables. Processed dependencies are already skipped later based on dll name. Signed-off-by: Arthur Sengileyev Reviewed-by: Bin Meng --- scripts/nsis.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion

Re: [PATCH v2] Windows installer: keep dependency cache

2023-01-15 Thread Arthur Sengileyev
Will resubmit v3 fixing this. Sorry for this. This is my first time using the mailing list to submit changes. Regards, Arthur On Sun, Jan 15, 2023 at 5:16 PM Bin Meng wrote: > On Sun, Jan 15, 2023 at 2:40 AM Arthur Sengileyev > wrote: > > > > It should be possible to re

[PATCH v2] Windows installer: keep dependency cache

2023-01-14 Thread Arthur Sengileyev
It should be possible to reuse cache built by previous iteration to process next executables. Processed dependencies are already skipped later based on dll name. Changes for v2: (1) changed variable name (2) changed wording in description Signed-off-by: Arthur Sengileyev Reviewed-by: Bin Meng

[PATCH] Windows installer: keep dependency cache

2023-01-03 Thread Arthur Sengileyev
It should be possible to reuse cache built by previous iteration processing next executables. Already processed dependencies are already skipped later based on dll name. Signed-off-by: Arthur Sengileyev --- scripts/nsis.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a