[PATCH v2 07/10] libvhost-user: Switch to unsigned int for inuse field in struct VuVirtq

2022-12-20 Thread Marcel Holtmann
re] 2808 | if (num > vq->inuse) { | ^ Instead of casting the comparison to unsigned int, just make the inuse field unsigned int in the fist place. Signed-off-by: Marcel Holtmann Reviewed-by: Philippe Mathieu-Daudé --- subprojects/libvhost-user/libvhost-user.h | 2 +- 1

[PATCH v2 04/10] libvhost-user: Use unsigned int i for some for-loop iterations

2022-12-20 Thread Marcel Holtmann
’ and ‘uint32_t’ {aka ‘unsigned int’} [-Werror=sign-compare] 223 | for (i = 0; i < dev->nregions; i++) { | ^ Signed-off-by: Marcel Holtmann --- subprojects/libvhost-user/libvhost-user.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff

[PATCH v2 01/10] libvhost-user: Provide _GNU_SOURCE when compiling outside of QEMU

2022-12-20 Thread Marcel Holtmann
RCE if it is not already set by the build system. Signed-off-by: Marcel Holtmann --- subprojects/libvhost-user/libvhost-user.c | 4 1 file changed, 4 insertions(+) diff --git a/subprojects/libvhost-user/libvhost-user.c b/subprojects/libvhost-user/libvhost-user.c index d6ee6e7d9168..b55b9e244d9a 100

[PATCH v2 02/10] libvhost-user: Replace typeof with __typeof__

2022-12-20 Thread Marcel Holtmann
’ [-Werror=implicit-function-declaration] 86 | typeof(x) _min1 = (x); \ | ^~ Changing these two users of typeof makes the compiler happy and no extra flags or pragmas need to be provided. Signed-off-by: Marcel Holtmann --- subprojects/libvhost-user

[RFC v2 10/10] libvduse: Fix assignment in vring_set_avail_event

2022-12-20 Thread Marcel Holtmann
ole16(val); | ~^ Signed-off-by: Marcel Holtmann --- subprojects/libvduse/libvduse.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/subprojects/libvduse/libvduse.c b/subprojects/libvduse/libvduse.c index 338ad5e352e7..51a4ba1b6878 100644 --- a/su

Re: [PATCH 7/7] libvhost-user: Switch to unsigned int for inuse field in struct VuVirtq

2022-12-20 Thread Marcel Holtmann
omparison of integer expressions of >> different signedness: ‘unsigned int’ and ‘int’ [-Werror=sign-compare] >> 2808 | if (num > vq->inuse) { >> | ^ >> >> Instead of casting the comparision to unsigned int, just make the inuse >&

[virtio-dev] Correct way to specify virtio_foo_config structures?

2022-12-20 Thread Marcel Holtmann
are appreciated. Regards Marcel - To unsubscribe, e-mail: virtio-dev-unsubscr...@lists.oasis-open.org For additional commands, e-mail: virtio-dev-h...@lists.oasis-open.org

Re: bumping python3-multiplex to v0.6 assistance

2022-12-19 Thread Marcel Partap
Ah thanks, that was quick, very awesome : ) i just uploaded multiplex_0.6.0-1 it's gonna reach the archive soon

bumping python3-multiplex to v0.6 assistance

2022-12-19 Thread Marcel Partap
line: import setuptools; setuptools.setup() If anyone could help move this forward, we'd appreciate and there shall be bounty. Best Regards Marcel

Re: [PATCH 7/7] libvhost-user: Switch to unsigned int for inuse field in struct VuVirtq

2022-12-19 Thread Marcel Holtmann
son of integer expressions of >> different signedness: ‘unsigned int’ and ‘int’ [-Werror=sign-compare] >> 2808 | if (num > vq->inuse) { >> | ^ >> Instead of casting the comparision to unsigned int, just make the inuse >> field unsigned int i

[PATCH 0/3] Compiler warning fixes for libvduse

2022-12-19 Thread Marcel Holtmann
the structures point of view the assignment that is done makes no sense to me. I might have to dig into specification to figure it out or it better be commented accordingly to tell the compiler that it got this part wrong. Marcel Holtmann (3): libvduse: Provide _GNU_SOURCE when compiling outside

[PATCH RFC 3/3] libvduse: Fix assignment in vring_set_avail_event

2022-12-19 Thread Marcel Holtmann
ole16(val); | ~^ Signed-off-by: Marcel Holtmann --- subprojects/libvduse/libvduse.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/subprojects/libvduse/libvduse.c b/subprojects/libvduse/libvduse.c index 338ad5e352e7..51a4ba1b6878 100644 --- a/su

[PATCH 2/3] libvduse: Switch to unsigned int for inuse field in struct VduseVirtq

2022-12-19 Thread Marcel Holtmann
=sign-compare] 789 | if (vq->inuse >= vq->vring.num) { | ^~ Instead of casting the comparison to unsigned int, just make the inuse field unsigned int in the fist place. Signed-off-by: Marcel Holtmann --- subprojects/libvduse/libvduse.c | 2 +- 1 file c

[PATCH 1/3] libvduse: Provide _GNU_SOURCE when compiling outside of QEMU

2022-12-19 Thread Marcel Holtmann
by the build system. Signed-off-by: Marcel Holtmann --- subprojects/libvduse/libvduse.c | 4 1 file changed, 4 insertions(+) diff --git a/subprojects/libvduse/libvduse.c b/subprojects/libvduse/libvduse.c index e089d4d546cf..c871bd331a6b 100644 --- a/subprojects/libvduse/libvduse.c +++ b/subprojects

[PATCH 5/7] libvhost-user: Declare uffdio_register early to make it C90 compliant

2022-12-19 Thread Marcel Holtmann
[-Werror=declaration-after-statement] 683 | struct uffdio_register reg_struct; | ^~ In this case, it is also simple enough and doesn't cause any extra ifdef additions. Signed-off-by: Marcel Holtmann --- subprojects/libvhost-user/libvhost-user.c | 4 +++- 1 file changed

[PATCH 3/7] libvhost-user: Cast rc variable to avoid compiler warning

2022-12-19 Thread Marcel Holtmann
ler warning switched on. Signed-off-by: Marcel Holtmann --- subprojects/libvhost-user/libvhost-user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/libvhost-user/libvhost-user.c b/subprojects/libvhost-user/libvhost-user.c index 67d75ece53b7..bcdf32a24f60 100

[PATCH 0/7] Various compiler warning fixes for libvhost-user

2022-12-19 Thread Marcel Holtmann
that can be done without any harm to the code and its readabilty. Marcel Holtmann (7): libvhost-user: Provide _GNU_SOURCE when compiling outside of QEMU libvhost-user: Replace typeof with __typeof__ libvhost-user: Cast rc variable to avoid compiler warning libvhost-user: Use unsigned int i

[PATCH 1/7] libvhost-user: Provide _GNU_SOURCE when compiling outside of QEMU

2022-12-19 Thread Marcel Holtmann
RCE if it is not already set by the build system. Signed-off-by: Marcel Holtmann --- subprojects/libvhost-user/libvhost-user.c | 4 1 file changed, 4 insertions(+) diff --git a/subprojects/libvhost-user/libvhost-user.c b/subprojects/libvhost-user/libvhost-user.c index d6ee6e7d9168..b55b9e244d9a 100

[PATCH 2/7] libvhost-user: Replace typeof with __typeof__

2022-12-19 Thread Marcel Holtmann
’ [-Werror=implicit-function-declaration] 86 | typeof(x) _min1 = (x); \ | ^~ Changing these two users of typeof makes the compiler happy and no extra flags or pragmas need to be provided. Signed-off-by: Marcel Holtmann --- subprojects/libvhost-user

[PATCH 7/7] libvhost-user: Switch to unsigned int for inuse field in struct VuVirtq

2022-12-19 Thread Marcel Holtmann
re] 2808 | if (num > vq->inuse) { | ^ Instead of casting the comparision to unsigned int, just make the inuse field unsigned int in the fist place. Signed-off-by: Marcel Holtmann --- subprojects/libvhost-user/libvhost-user.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[PATCH 4/7] libvhost-user: Use unsigned int i for some for-loop iterations

2022-12-19 Thread Marcel Holtmann
’ and ‘uint32_t’ {aka ‘unsigned int’} [-Werror=sign-compare] 223 | for (i = 0; i < dev->nregions; i++) { | ^ Signed-off-by: Marcel Holtmann --- subprojects/libvhost-user/libvhost-user.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff

[PATCH 6/7] libvhost-user: Change dev->postcopy_ufd assignment to make it C90 compliant

2022-12-19 Thread Marcel Holtmann
ter-statement] 1625 | struct uffdio_api api_struct; | ^~ Understandable, it might be desired to avoid else clauses, but in this case it seems clear enough and frankly the dev->postcopy_ufd is only assigned once. Signed-off-by: Marcel Holtmann --- subprojects/libvhost-user/li

Re: [PATCH v3] hw/pvrdma: Protect against buggy or malicious guest driver

2022-12-19 Thread Marcel Apfelbaum
On Mon, Dec 19, 2022 at 10:57 AM Yuval Shaia wrote: > > Can anyone else pick this one? Adding Thomas, I dropped the ball with this one, I am sorry about that, maybe it doesn't worth a Pull Request only for it. Maybe it can go through the Misc tree? Thank you, Marcel > > Tha

Re: Oak Jenkins build takes up too many resources

2022-12-18 Thread Marcel Reutegger
On 16.12.22, 20:01, "Konrad Windszus" wrote: > @Marcel: Are you still looking into optimizations? No, I’m not. Regards Marcel

Re: [Dev-luatex] luaotfload strange message

2022-12-17 Thread Marcel Fabian Krüger
Features={RawFeature={embolden=5}} > ] These filenames seem odd. Are you sure that these are actually the names of the font files on your system? Best, Marcel ___ dev-luatex mailing list dev-luatex@ntg.nl https://mailman.ntg.nl/mailman/listinfo/dev-luatex

December 2022 report: draft for review

2022-12-15 Thread Marcel Reutegger via dev
Hi, The draft for the December 2022 board report is available here: https://jackrabbit.apache.org/jcr/status/board-report-2022-12.html Please review and let me know if something is missing or incorrect. I will submit the report tomorrow. Regards Marcel

[OG12][committed] OpenMP, libgomp: Handle unified shared memory in omp_target_is_accessible.

2022-12-13 Thread Marcel Vollweiler
is not supported for all gcn targets, I tested gcn with offloading for x86_64-linux on various targets (gfx90a, gfx908, gfx906, gfx803) - also without regressions. Marcel - Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter

[jira] [Resolved] (OAK-10029) Disable Sonar checks on PRs from forks

2022-12-13 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-10029?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger resolved OAK-10029. Fix Version/s: 1.46.0 Resolution: Fixed Thank you for the review, Angela. I merged

[jira] [Assigned] (OAK-10029) Disable Sonar checks on PRs from forks

2022-12-13 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-10029?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger reassigned OAK-10029: -- Assignee: Marcel Reutegger > Disable Sonar checks on PRs from fo

[jira] [Commented] (OAK-10029) Disable Sonar checks on PRs from forks

2022-12-13 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-10029?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17646523#comment-17646523 ] Marcel Reutegger commented on OAK-10029: Suggested change: https://github.com/apache/jackrabbit

[jira] [Created] (OAK-10029) Disable Sonar checks on PRs from forks

2022-12-13 Thread Marcel Reutegger (Jira)
Marcel Reutegger created OAK-10029: -- Summary: Disable Sonar checks on PRs from forks Key: OAK-10029 URL: https://issues.apache.org/jira/browse/OAK-10029 Project: Jackrabbit Oak Issue Type

[jira] [Closed] (OAK-10028) Build Jackrabbit/jackrabbit-oak-trunk #739 failed

2022-12-13 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-10028?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger closed OAK-10028. -- > Build Jackrabbit/jackrabbit-oak-trunk #739 fai

[jira] [Resolved] (OAK-10027) CacheWarmingTest does not clean up

2022-12-13 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-10027?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger resolved OAK-10027. Fix Version/s: 1.46.0 Resolution: Fixed > CacheWarmingTest does not clean

[jira] [Resolved] (OAK-10028) Build Jackrabbit/jackrabbit-oak-trunk #739 failed

2022-12-13 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-10028?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger resolved OAK-10028. Resolution: Duplicate > Build Jackrabbit/jackrabbit-oak-trunk #739 fai

[jira] [Commented] (OAK-10027) CacheWarmingTest does not clean up

2022-12-12 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-10027?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17646478#comment-17646478 ] Marcel Reutegger commented on OAK-10027: PR with suggested fix: https://github.com/apache

[jira] [Created] (OAK-10027) CacheWarmingTest does not clean up

2022-12-12 Thread Marcel Reutegger (Jira)
Marcel Reutegger created OAK-10027: -- Summary: CacheWarmingTest does not clean up Key: OAK-10027 URL: https://issues.apache.org/jira/browse/OAK-10027 Project: Jackrabbit Oak Issue Type: Bug

[jira] [Updated] (OAK-9883) Add assertion to CacheWarmingTest

2022-12-12 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9883?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger updated OAK-9883: -- Fix Version/s: (was: 1.46.0) > Add assertion to CacheWarmingT

[PATCH v1] imx8: scu_api: sync sc_rm_is_pad_owned api change

2022-12-12 Thread Marcel Ziswiler
with new SCFW (API version: 1.21 and later). old scfw + old u-boot: API overflow issue old scfw + new u-boot, or new scfw + old u-boot: API compatible issue new scfw + new u-boot: Working Signed-off-by: Ye Li Reviewed-by : Jason Liu Signed-off-by: Marcel Ziswiler --- I stumbled over this one

[PATCH v1 15/16] apalis-imx8: update update_uboot confirmation message

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Update update_uboot confirmation message. Signed-off-by: Marcel Ziswiler --- include/configs/apalis-imx8.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/apalis-imx8.h b/include/configs/apalis-imx8.h index 85c305f8f00..c54c4d0465a

[PATCH v1 16/16] apalis-imx8: update env memory layout

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Update the distro config env memory layout for the Apalis iMX8 aka QuadMax: - kernel_comp_addr_r=0xf000 temporary area for uncompressing (ie FIT images or Image.gz booted using booti) - kernel_comp_size=0x0800 - loadaddr=0x9540 avoiding any reserved areas

[PATCH v1 13/16] apalis-imx8: introduce setup setting setupargs

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Introduce setup setting setupargs and move earlycon there. Signed-off-by: Marcel Ziswiler --- include/configs/apalis-imx8.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/configs/apalis-imx8.h b/include/configs/apalis-imx8.h index

[PATCH v1 10/16] apalis-imx8: update spdx license identifier string

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Update SPDX license identifier string. While at it also update copyright period. Signed-off-by: Marcel Ziswiler --- arch/arm/dts/fsl-imx8qm-apalis.dts | 4 ++-- board/toradex/apalis-imx8/Makefile | 4 ++-- board/toradex/apalis-imx8

[PATCH v1 12/16] apalis-imx8: remove obsolete net usb start

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Remove obsolete net USB start. While at it also add a comment about enabling distro-boot. Signed-off-by: Marcel Ziswiler --- include/configs/apalis-imx8.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/configs/apalis-imx8.h b/include

[PATCH v1 14/16] apalis-imx8: drop obsolete environment variables

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Drop obsolete environment variables fdt_addr, finduuid, mmcargs, mmcdev, mmcpart and panel. Signed-off-by: Marcel Ziswiler --- include/configs/apalis-imx8.h | 7 --- 1 file changed, 7 deletions(-) diff --git a/include/configs/apalis-imx8.h b/include/configs/apalis

[PATCH v1 08/16] apalis/colibri-imx8/8x: remove global variable script

2022-12-11 Thread Marcel Ziswiler
;script" to fix working the general distro boot script mechanism. Signed-off-by: Oleksandr Suvorov Signed-off-by: Marcel Ziswiler --- include/configs/apalis-imx8.h | 1 - include/configs/colibri-imx8x.h | 1 - 2 files changed, 2 deletions(-) diff --git a/include/configs/apalis-imx8

[PATCH v1 11/16] apalis-imx8: remove obsolete sdhc related config defines

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Remove obsolete SDHC related config defines. Nowadays, all SDHC related hardware configuration comes from the device tree. Signed-off-by: Marcel Ziswiler --- include/configs/apalis-imx8.h | 9 - 1 file changed, 9 deletions(-) diff --git a/include/configs/apalis

[PATCH v1 09/16] apalis-imx8: enable environment bootcount limit

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Enable optional environment bootcount limit functionality. Signed-off-by: Marcel Ziswiler --- configs/apalis-imx8_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/apalis-imx8_defconfig b/configs/apalis-imx8_defconfig index eabdb12478c..019846e1af2

[PATCH v1 07/16] apalis/colibri-imx8/8x: add overlay support for i.mx 8/8x-based soms

2022-12-11 Thread Marcel Ziswiler
From: Oleksandr Suvorov There is no "apply" command enabled for "fdt". Enable "apply" command to allow overlays to be applied. Signed-off-by: Oleksandr Suvorov Signed-off-by: Marcel Ziswiler --- configs/apalis-imx8_defconfig | 1 + configs/colibri-imx8x_defco

[PATCH v1 06/16] apalis-imx8: set bootdelay

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Set the boot delay to one second. Signed-off-by: Marcel Ziswiler --- configs/apalis-imx8_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/apalis-imx8_defconfig b/configs/apalis-imx8_defconfig index 92a0c67b32e..aee43d07816 100644 --- a/configs

[PATCH v1 05/16] apalis-imx8: provide proper config_sys_prompt

2022-12-11 Thread Marcel Ziswiler
From: Igor Opaniuk This provides correct system prompt for U-Boot console. Signed-off-by: Igor Opaniuk Signed-off-by: Marcel Ziswiler --- configs/apalis-imx8_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/apalis-imx8_defconfig b/configs/apalis-imx8_defconfig index

[PATCH v1 03/16] apalis-imx8: turn off lcd backlight before os handover

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler U-Boot typically tears down the display controller before handing control over to Linux. On LCD displays disabling pixel clock leads to a fading out effect with vertical/horizontal lines. Make sure to disable back light GPIO Apalis BKL1 before booting Linux. Signed-off

[PATCH v1 04/16] apalis-imx8: display build info

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Display build info with information about the version of SCFW, SECO and TF-A (ATF). Signed-off-by: Marcel Ziswiler --- board/toradex/apalis-imx8/apalis-imx8.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/board/toradex/apalis-imx8/apalis-imx8.c b/board/toradex

[PATCH v1 00/16] apalis-imx8: boot issue fix and support refresh

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler This series fixes a boot issue and refreshes Apalis iMX8 support as follows: - fix booting caused by missing DM_EVENT - implement PCB version and SoC variant handling - turn off LCD backlight before OS handover - display build info - provide proper prompt - set bootdelay

[PATCH v1 02/16] apalis-imx8: implement pcb version and soc variant handling

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Implement PCB version and SoC variant handling which automatically loads the correct device tree for the Linux kernel. Signed-off-by: Marcel Ziswiler --- board/toradex/apalis-imx8/apalis-imx8.c | 104 +++- configs/apalis-imx8_defconfig

[PATCH v1 01/16] apalis-imx8: fix booting caused by missing dm_event

2022-12-11 Thread Marcel Ziswiler
From: Marcel Ziswiler Without the DM_EVENT absolutely no output whatsoever and the system does not boot at all. Fixes: c5ef2025579e ("dm: fix DM_EVENT dependencies") Signed-off-by: Marcel Ziswiler --- configs/apalis-imx8_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git

Bug#1025859: alacritty: provide x-terminal-emulator alternative

2022-12-10 Thread Marcel Fourné
Package: alacritty Version: 0.11.0-2 Severity: wishlist Currently, alacritty cannot be configured via update-alternatives --config x-terminal-emulator and the packaging does not provide an alternative for that name via Provides: x-terminal-emulator It would be nice to have this level of

[yi-editor/yi] 62da52: GHC 9.0 update related fixes

2022-12-10 Thread 'Marcel Fourné' via yi . devel
Branch: refs/heads/master Home: https://github.com/yi-editor/yi Commit: 62da528d911d8f114d531ae4d99d48913f39c5e5 https://github.com/yi-editor/yi/commit/62da528d911d8f114d531ae4d99d48913f39c5e5 Author: Marcel Fourné Date: 2022-08-17 (Wed, 17 Aug 2022) Changed paths

[yi-editor/yi] 57c9e3: typos

2022-12-10 Thread 'Marcel Fourné' via yi . devel
/commit/79e6c87e6300f69560927a7c0b115db17a00ea1d Author: Marcel Fourné Date: 2022-12-10 (Sat, 10 Dec 2022) Changed paths: M yi-intero/README.md M yi-keymap-emacs/src/Yi/Keymap/Emacs/Utils.hs M yi-keymap-vim/src/Yi/Keymap/Vim/NormalMap.hs M yi-keymap-vim/src/Yi/Keymap

[yi-editor/yi] 9107e6: typos

2022-12-10 Thread 'Marcel Fourné' via yi . devel
/UI/Common.hs M yi-core/src/Yi/UI/Utils.hs Log Message: --- typos Commit: 65c157580e93f496a1acc6117ad02594dbcd9f35 https://github.com/yi-editor/yi/commit/65c157580e93f496a1acc6117ad02594dbcd9f35 Author: Marcel Fourné Date: 2022-12-10 (Sat, 10 Dec 2022

Re: [Koha-devel] Formally give up on trying to provide PostgreSQL DB support?

2022-12-07 Thread Marcel de Rooy
Yes, we already gave up years ago. But we never said so  Van: Koha-devel namens Fridolin SOMERS Verzonden: dinsdag 6 december 2022 22:37 Aan: koha-devel@lists.koha-community.org Onderwerp: Re: [Koha-devel] Formally give up on trying to provide PostgreSQL DB

Sponsored upload needed to fix elpa-agda2-mode #1017415

2022-12-06 Thread Marcel Fourné
the original bug reporter to this mail, since they might be interested to see some progress here. Cheers, Marcel

Re: Grep help for musicxml

2022-12-06 Thread 'Marcel Lamers' via BBEdit Talk
Thx JJ, that works great! On Monday, 5 December 2022 at 21:45:30 UTC+1 jj wrote: > Hi Marcel, > > You could try this. > > Find: > > > > (?s)())+)()\n((?:.(?!) > > Replace: > > > \n\n\2\n\n\n\1\3 > > HTH > > Jean Jourdain > On M

Re: Grep help for musicxml

2022-12-05 Thread 'Marcel Lamers' via BBEdit Talk
It gets much simpler if I add e.g. a ! before every first. I can then search for ()([^!]+)()([^!]+)() On Monday, 5 December 2022 at 17:13:42 UTC+1 Marcel Lamers wrote: > Hi, > > I have a musicxml file that is not properly imported into my music > notation app and I have to chang

Grep help for musicxml

2022-12-05 Thread 'Marcel Lamers' via BBEdit Talk
Hi, I have a musicxml file that is not properly imported into my music notation app and I have to change the syntax to do a better import. I gave it a go with grep but can't seem to get the proper pattern to make the change. In short, I want to remove the dynamics tags plus content from a note

Re: [Koha-devel] Good enough?

2022-12-05 Thread Marcel de Rooy
%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7Csdata=bxdii78avAYEIcecc8o0tQZ4v7atwVTkmbJMYPe1Dek%3Dreserved=0 Le lun. 5 déc. 2022 à 11:34, Marcel de Rooy a écrit : > > Could you provide more info on those git hooks? A wiki URL? > > Marcel >

Re: [Koha-devel] Good enough?

2022-12-05 Thread Marcel de Rooy
Could you provide more info on those git hooks? A wiki URL? Marcel -Original Message- From: Koha-devel On Behalf Of Jonathan Druart Sent: Friday, December 2, 2022 3:43 PM To: koha-devel Subject: [Koha-devel] Good enough? Hi devs, I was wondering... How good is your "good e

Re: [OpenIndiana-discuss] perl Term::ReadKey module question

2022-12-01 Thread Marcel Telka
ARNING: No copyright notice found $ git show $ git push $ ... and here is the result: https://github.com/OpenIndiana/oi-userland/pull/10094 Regards. -- +-------+ | Marcel Telka e-mail: mar...@telka.sk | |

Re: Need committer help updating news/nzbhydra2

2022-12-01 Thread Marcel Bischoff
> On 1. Dec 2022, at 11:44, Ronald Klop wrote: > > > Van: Marcel Bischoff > Datum: donderdag, 1 december 2022 11:14 > Aan: FreeBSD-ports FreeBSD > Onderwerp: Need committer help updating news/nzbhydra2 > > Hi all, > > could someone please commit &g

Need committer help updating news/nzbhydra2

2022-12-01 Thread Marcel Bischoff
and unanswered email with the current maintainer several times. It's perfectly alright to be busy with other things, that's why I'm offering to take over maintainership if all involved agree. Best Marcel

[Cloud-init] Provisioning bare metal boxes with cloud-init?

2022-11-30 Thread Marcel Hernandez
I have an old laptop in which I'd like to install Ubuntu Server 22.04 and provision it automatically with a cloud-init template. I've been doing this for some time with a Raspberry Pi 4, whose Ubuntu image already comes with an accessible user-data file that you can modify to your liking before

Re: What is this "\t"?

2022-11-29 Thread Marcel Timmerman
C macro definitions. The other types are fixed, like gboolean and just added to the list. The file is called Gnome::N::GlibToRakuTypes. On 29 Nov 2022, at 15:05, Marcel Timmerman wrote: On 29-11-2022 10:13, Francis Grizzly Smit wrote: Hi Francis, Personally I never use \name are I hate how

Re: What is this "\t"?

2022-11-29 Thread Marcel Timmerman
C macro definitions. The other types are fixed, like gboolean and just added to the list. The file is called Gnome::N::GlibToRakuTypes. On 29 Nov 2022, at 15:05, Marcel Timmerman wrote: On 29-11-2022 10:13, Francis Grizzly Smit wrote: Hi Francis, Personally I never use \name are I hate how

Re: What is this "\t"?

2022-11-29 Thread Marcel Timmerman
On 29-11-2022 10:13, Francis Grizzly Smit wrote: Hi Francis, Personally I never use \name are I hate how it looks, and so far I have never needed it, so unless I can find something it can do that I cannot do any other way, I'll keep on not using it To show an example where I could use it I

Re: What is this "\t"?

2022-11-29 Thread Marcel Timmerman
On 29-11-2022 10:13, Francis Grizzly Smit wrote: Hi Francis, Personally I never use \name are I hate how it looks, and so far I have never needed it, so unless I can find something it can do that I cannot do any other way, I'll keep on not using it To show an example where I could use it I

[jira] [Resolved] (LOG4J2-3634) Log4JBridgeHandler & Tomcat Webapps: Propagating log levels leads to no handlers in the (root) logger

2022-11-29 Thread Marcel Koch (Jira)
[ https://issues.apache.org/jira/browse/LOG4J2-3634?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Koch resolved LOG4J2-3634. - Fix Version/s: 2.20.0 Resolution: Fixed See [https://github.com/apache/logging-log4j2

Re: [go-nuts] Tool showing all assignemnts to the blank identifier

2022-11-29 Thread Marcel Huijkman
golangci-lint has : dogsled: # checks assignments with too many blank identifiers; default is 2 max-blank-identifiers: 0 On Monday, November 28, 2022 at 1:50:21 PM UTC+1 Jan Mercl wrote: > On Mon, Nov 28, 2022 at 1:44 PM Wojciech Muła wrote: > > > Is there any tool that would point out places

[Freesurfer] FS_7_2_0_Ubuntu_18_04_06.ova.7z password

2022-11-28 Thread Marcel Heers
External Email - Use Caution Can you please share the password for the above mentioned VirtualBox with me? Thanks in advance! Marcel ___ Freesurfer mailing list Freesurfer@nmr.mgh.harvard.edu https://mail.nmr.mgh.harvard.edu/mailman

Re: [oi-dev] $WS_TOOLS/python-integrate-project

2022-11-28 Thread Marcel Telka
s possible (modulo differences caused by Perl and Python itself; for example Python have no problem with versions, while Perl does). HTH. -- +---+ | Marcel Telka e-mail: mar...@telka.sk | |

Re: [Bioc-devel] Flexibility for submitting a new ExperimentData-package

2022-11-28 Thread Marcel Ramos
the underlying code and not the user interface. Best regards, Marcel On 11/24/22 1:57 AM, Daniel Laajala wrote: > Dear Bioconductor devs, > > thanks for all the hard work. Regarding if there's any leeway in how > ExperimentData-packages are structured: > > We started workin

Re: [Bioc-devel] Flexibility for submitting a new ExperimentData-package

2022-11-28 Thread Marcel Ramos
the underlying code and not the user interface. Best regards, Marcel On 11/24/22 1:57 AM, Daniel Laajala wrote: > Dear Bioconductor devs, > > thanks for all the hard work. Regarding if there's any leeway in how > ExperimentData-packages are structured: > > We started workin

Re: [Koha] Koha 22.11.00 Rosalie released

2022-11-27 Thread Marcel de Rooy
Great, Tomas! Congratulations. Thank you all. Van: Koha namens Tomas Cohen Arazi Verzonden: vrijdag 25 november 2022 19:36 Aan: koha Onderwerp: [Koha] Koha 22.11.00 Rosalie released The Koha community is proud to announce the release of Koha 22.11.00. Koha

[ovirt-users] Re: Remove Vms with 200 GB Harddisk but gluster not Release diskspace

2022-11-27 Thread Marcel d'Heureuse
Hi, I remove the vm and check the Box including disks. Ovirt didn't know the vm and disks anymore. Can I remove manual the uuid named files from remove_me folder and  also from the shard folder? Br Marcel 21.11.2022 23:28:32 Colin Coe : > Did you click remove disk when you removed the

[Dev-luatex] Dropped kerning around automatic hyphens

2022-11-27 Thread Marcel Fabian Krüger
No |couple_nodes(f, t);| as we can better not expose |f| as |prev| -pointer. -*/ -vlink(f) = t ; -alink(t) = null ; +couple_nodes(f, t); tlink(f) = tail_of_list(t); } else { vlink(f) = null; -- Best, Marcel >From fb9a4811

[Dev-luatex] Wrong tail in node.ligaturing

2022-11-27 Thread Marcel Fabian Krüger
; } /*tex Goto the next node, where |\par| allows |vlink(cur)| to be NULL. */ +last = cur; cur = vlink(cur); } return cur; -- Best regards, Marcel >From 21c3fdc0d7aee2abfe0021248d7565a880a94571 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Fabian=20Kr=C3=BC

Re: [fr-users] Hors sujet, Au clair de la lune ...

2022-11-26 Thread Marcel Van Den Broeck
Bonsoir, J'ai le même problème, c'est dommage parce que ses réponses sont toujours pertientes. Bon week-end à toutes et à tous Marcel Le sam. 26 nov. 2022 à 18:48, Sylvain Jeanneret a écrit : > Bonsoir à tous, > > Les messages de "ocleyr2lal...@zaclys.net" vont systé

[jira] [Resolved] (OAK-9971) Migrate Oak maintenance builds from Travis CI to Jenkins

2022-11-25 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9971?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger resolved OAK-9971. --- Fix Version/s: 1.46.0 Resolution: Fixed > Migrate Oak maintenance builds from Travis

[jira] [Commented] (OAK-9971) Migrate Oak maintenance builds from Travis CI to Jenkins

2022-11-25 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9971?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17638623#comment-17638623 ] Marcel Reutegger commented on OAK-9971: --- PR for 1.8 branch: https://github.com/apache/jackrabbit-oak

[jira] [Commented] (OAK-9443) Test failure: LeaseUpdateSocketTimeoutIT.leaseUpdateFailureOnSocketTimeout

2022-11-25 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9443?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17638622#comment-17638622 ] Marcel Reutegger commented on OAK-9443: --- Disabled also on 1.22 branch via https://github.com/apache

[jira] [Updated] (OAK-9487) WarnLogStringPropertySizeTest may fail with multiple fixtures

2022-11-25 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9487?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger updated OAK-9487: -- Fix Version/s: 1.22.14 > WarnLogStringPropertySizeTest may fail with multiple fixtu

[jira] [Commented] (OAK-9487) WarnLogStringPropertySizeTest may fail with multiple fixtures

2022-11-25 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9487?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17638617#comment-17638617 ] Marcel Reutegger commented on OAK-9487: --- PR for merge into 1.22 branch: https://github.com/apache

[jira] [Updated] (OAK-9563) LastRevSingleNodeRecoveryTest fails in setUp()

2022-11-25 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger updated OAK-9563: -- Fix Version/s: 1.8.27 1.22.14 Labels: (was: candidate_oak_1_22

[jira] [Commented] (OAK-9563) LastRevSingleNodeRecoveryTest fails in setUp()

2022-11-24 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9563?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17638366#comment-17638366 ] Marcel Reutegger commented on OAK-9563: --- PR for merge into 1.8 branch: https://github.com/apache

[jira] [Commented] (OAK-9563) LastRevSingleNodeRecoveryTest fails in setUp()

2022-11-24 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9563?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17638363#comment-17638363 ] Marcel Reutegger commented on OAK-9563: --- PR for merge into 1.22 branch: https://github.com/apache

[jira] [Updated] (OAK-9563) LastRevSingleNodeRecoveryTest fails in setUp()

2022-11-24 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger updated OAK-9563: -- Labels: candidate_oak_1_22 candidate_oak_1_8 (was: ) > LastRevSingleNodeRecoveryTest fa

[jira] [Commented] (OAK-9971) Migrate Oak maintenance builds from Travis CI to Jenkins

2022-11-24 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9971?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17638334#comment-17638334 ] Marcel Reutegger commented on OAK-9971: --- PR for 1.22 branch: https://github.com/apache/jackrabbit-oak

[jira] [Assigned] (OAK-9971) Migrate Oak maintenance builds from Travis CI to Jenkins

2022-11-24 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-9971?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger reassigned OAK-9971: - Assignee: Marcel Reutegger > Migrate Oak maintenance builds from Travis CI to Jenk

[jira] [Commented] (OAK-10000) Build Jackrabbit/jackrabbit-oak-trunk #712 failed

2022-11-24 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17638317#comment-17638317 ] Marcel Reutegger commented on OAK-1: File was introduced with OAK-10009. [~angela], can you

[jira] [Updated] (OAK-10000) Build Jackrabbit/jackrabbit-oak-trunk #712 failed

2022-11-24 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-1?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger updated OAK-1: --- Description: No description is provided The build Jackrabbit/jackrabbit-oak-trunk #712 has

Re: [Patch] OpenMP, libgomp, gimple: omp_get_max_teams, omp_set_num_teams, and omp_{gs}et_teams_thread_limit on offload devices

2022-11-24 Thread Marcel Vollweiler
unneccessary small upper bound and the chance to get memory allocation failures due to a too large number of teams. As for testcases, have you tested this in a native setup where dg-set-target-env-var actually works? Besides remote testing with offloading (which does not yet work with dg

[jira] [Resolved] (OAK-10010) Test org.apache.jackrabbit.oak.plugins.document.RandomizedClusterTest.addRemoveSet is Flaky

2022-11-23 Thread Marcel Reutegger (Jira)
[ https://issues.apache.org/jira/browse/OAK-10010?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger resolved OAK-10010. Fix Version/s: 1.46.0 Resolution: Fixed Thank you for reporting this issue

<    5   6   7   8   9   10   11   12   13   14   >