Re: [PATCH] tools/ocaml: Rationalise .gitignore

2024-09-09 Thread Andrew Cooper
On 09/09/2024 1:31 pm, Edwin Torok wrote: > On Fri, Sep 6, 2024 at 3:55 PM Andrew Cooper > wrote: >> The root .gitignore is quite stale from recent (and less recent) removals, >> but >> also fails to work for the forthcoming dynamic plugin work. >> >> Strip all Ocaml content out of the root .git

Re: [PATCH] tools/ocaml: Rationalise .gitignore

2024-09-09 Thread Edwin Torok
On Fri, Sep 6, 2024 at 3:55 PM Andrew Cooper wrote: > > The root .gitignore is quite stale from recent (and less recent) removals, but > also fails to work for the forthcoming dynamic plugin work. > > Strip all Ocaml content out of the root .gitignore, and provide a more local > .gitignore's with

Re: [PATCH] tools/ocaml: Rationalise .gitignore

2024-09-09 Thread Christian Lindig
> On 6 Sep 2024, at 15:55, Andrew Cooper wrote: > > The root .gitignore is quite stale from recent (and less recent) removals, but > also fails to work for the forthcoming dynamic plugin work. > > Strip all Ocaml content out of the root .gitignore, and provide a more local > .gitignore's with

Re: [PATCH] tools/ocaml: Rationalise .gitignore

2024-09-06 Thread Andrew Cooper
On 06/09/2024 3:55 pm, Andrew Cooper wrote: > diff --git a/tools/ocaml/.gitignore b/tools/ocaml/.gitignore > new file mode 100644 > index ..3687c2af4f26 > --- /dev/null > +++ b/tools/ocaml/.gitignore > @@ -0,0 +1,5 @@ > +/**/META > +/**/.ocamldep.make > +/**/*.annot > +/**/*.cm[ixao] >

[PATCH] tools/ocaml: Rationalise .gitignore

2024-09-06 Thread Andrew Cooper
The root .gitignore is quite stale from recent (and less recent) removals, but also fails to work for the forthcoming dynamic plugin work. Strip all Ocaml content out of the root .gitignore, and provide a more local .gitignore's with up-to-date patterns. Signed-off-by: Andrew Cooper --- CC: Chri