Re: [PATCH] Make svn_apply_autoprops.py Windows-compatible

2024-04-23 Thread Branko Čibej
On 23. 04. 24 20:29, Yasuhito FUTATSUKI wrote: On 2024/04/24 1:30, Branko Čibej wrote: On 23. 04. 24 17:24, Yasuhito FUTATSUKI wrote: Hello, On 2024/04/23 20:42, Khairul Azhar Kasmiran wrote: I've reattached the patch as a .txt file. On 2024/04/23 10:46:41 Khairul Azhar Kasmiran wrote:   

svn: E155004: Working copy '/myfolder/etc' locked.

2024-04-23 Thread GERALDINE MCCORMACK
Hello, Can I ask a Q regarding a strange problem I am having. I see the error "svn: E155004: Working copy '/myfolder/etc' locked" when I am trying to add a file to my etc folder. I have checked the locks (programmatically) before trying to add the file, and for sure, there is no lock on

Re: [PATCH] Make svn_apply_autoprops.py Windows-compatible

2024-04-23 Thread Yasuhito FUTATSUKI
On 2024/04/24 1:30, Branko Čibej wrote: > On 23. 04. 24 17:24, Yasuhito FUTATSUKI wrote: >> Hello, >> >> On 2024/04/23 20:42, Khairul Azhar Kasmiran wrote: >>> I've reattached the patch as a .txt file. >>> >>> On 2024/04/23 10:46:41 Khairul Azhar Kasmiran wrote:    2. Using `ON` instead of `*`

Re: [PATCH] Make svn_apply_autoprops.py Windows-compatible

2024-04-23 Thread Branko Čibej
On 23. 04. 24 17:24, Yasuhito FUTATSUKI wrote: Hello, On 2024/04/23 20:42, Khairul Azhar Kasmiran wrote: I've reattached the patch as a .txt file. On 2024/04/23 10:46:41 Khairul Azhar Kasmiran wrote: 2. Using `ON` instead of `*` for boolean properties like `svn:executable` since for some r

Re: [PATCH] Make svn_apply_autoprops.py Windows-compatible

2024-04-23 Thread Yasuhito FUTATSUKI
Hello, On 2024/04/23 20:42, Khairul Azhar Kasmiran wrote: > I've reattached the patch as a .txt file. > > On 2024/04/23 10:46:41 Khairul Azhar Kasmiran wrote: >> 2. Using `ON` instead of `*` for boolean properties like >> `svn:executable` since for some reason, `*` becomes a wildcard on >> Win

RE: [PATCH] Make svn_apply_autoprops.py Windows-compatible

2024-04-23 Thread Khairul Azhar Kasmiran
I've reattached the patch as a .txt file. On 2024/04/23 10:46:41 Khairul Azhar Kasmiran wrote: > Hi everyone! > > This is a patch to make `contrib/client-side/svn_apply_autoprops.py` > Windows-compatible -- I have just found out that `git svn` doesn't > honor autoprops. > > The changes are: > 1.

[PATCH] Make svn_apply_autoprops.py Windows-compatible

2024-04-23 Thread Khairul Azhar Kasmiran
Hi everyone! This is a patch to make `contrib/client-side/svn_apply_autoprops.py` Windows-compatible -- I have just found out that `git svn` doesn't honor autoprops. The changes are: 1. Replacing `os.spawnvp()` with `subprocess.call()` since `os.spawnvp()` isn't supported on Windows. 2. Using