Re: Backport bot not running?

2023-11-28 Thread Daniel Sahlberg
ons 29 nov. 2023 kl. 05:57 skrev Nathan Hartman :

> The backport bot (svn-role) normally runs nightly but the most recent
> backport approval has been waiting in 1.14.x/STATUS for a couple of
> days now.
>
> I went ahead and merged it manually (with
> tools/dist/merge-approved-backports.py). This did the right thing, so
> I assume there wasn't any syntax error in STATUS.
>
> I don't have access to svn-qavm1 so I can't check why it didn't happen
> automatically. Maybe someone with access could check if the machine is
> at least running...
>
> Thanks,
> Nathan


I’ll check later today


Kind regards
Daniel

>
>


Backport bot not running?

2023-11-28 Thread Nathan Hartman
The backport bot (svn-role) normally runs nightly but the most recent
backport approval has been waiting in 1.14.x/STATUS for a couple of
days now.

I went ahead and merged it manually (with
tools/dist/merge-approved-backports.py). This did the right thing, so
I assume there wasn't any syntax error in STATUS.

I don't have access to svn-qavm1 so I can't check why it didn't happen
automatically. Maybe someone with access could check if the machine is
at least running...

Thanks,
Nathan


Re: Is there a write opposite to "svn cat"?

2023-11-28 Thread Yasuhito FUTATSUKI

Hello,

On 2023/11/28 16:17, Daniel Sahlberg wrote:

Den mån 27 nov. 2023 kl 21:35 skrev Johan Corveleyn :


The documentation say:
[[[
   put SRC-FILE URL   : add or modify file URL with contents copied

from

SRC-FILE (use "-" to read from standard

input)

]]]


Just chiming in here from the sideline, without ability to test right
now, but: has anyone tried to use a full "-" (double quote, dash,
double quote) as argument? As in:

svnmucc put "-" URL

Maybe that's what that help text is actually trying to say.



Good thinking, never thought about that. I've tested now but unfortunately
it doesn't make a difference, still the same error message. (Tested on
Windows with 1.8 and 1.14 and on Linux with 1.14).


On FreeBSD/Linux, "-" is treated as a normal file name, so svnmucc
returns if the file "-" doesn't exist:
[[[
svnmucc: E02: Can't open file '"-"': No such file or directory
]]]
and if ./"-" exists it try to commit its content.

Note: Most shells on Unix/Linux treat double quote charater as a
speciall character. So to pass "-" (including a pair of double
quotatation characters) to svnmucc from shell command line,
we should escape it like '"-"' or \"-\".

Cheers,
--
Yasuhito FUTATSUKI