[PATCH 01/12] subprojects: Update .gitignore for proc-macro2 and syn

Zhao Liu posted 12 patches 1 week, 5 days ago
There is a newer version of this series
[PATCH 01/12] subprojects: Update .gitignore for proc-macro2 and syn
Posted by Zhao Liu 1 week, 5 days ago
Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
---
 subprojects/.gitignore | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/subprojects/.gitignore b/subprojects/.gitignore
index f4281934ce11..9d579f72d121 100644
--- a/subprojects/.gitignore
+++ b/subprojects/.gitignore
@@ -16,7 +16,7 @@
 /libc-0.2.162
 /proc-macro-error-1.0.4
 /proc-macro-error-attr-1.0.4
-/proc-macro2-1.0.84
+/proc-macro2-1.0.95
 /quote-1.0.36
-/syn-2.0.66
+/syn-2.0.104
 /unicode-ident-1.0.12
-- 
2.34.1
Re: [PATCH 01/12] subprojects: Update .gitignore for proc-macro2 and syn
Posted by Manos Pitsidianakis 1 week, 5 days ago
On Tue, Sep 16, 2025 at 11:34 AM Zhao Liu <zhao1.liu@intel.com> wrote:
>
> Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
> ---
>  subprojects/.gitignore | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/subprojects/.gitignore b/subprojects/.gitignore
> index f4281934ce11..9d579f72d121 100644
> --- a/subprojects/.gitignore
> +++ b/subprojects/.gitignore
> @@ -16,7 +16,7 @@
>  /libc-0.2.162
>  /proc-macro-error-1.0.4
>  /proc-macro-error-attr-1.0.4
> -/proc-macro2-1.0.84
> +/proc-macro2-1.0.95
>  /quote-1.0.36
> -/syn-2.0.66
> +/syn-2.0.104
>  /unicode-ident-1.0.12
> --
> 2.34.1
>

Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>

Maybe we could change the entries to match any directory with a version, e.g.

/proc-macro2-[0-9.]*/
Re: [PATCH 01/12] subprojects: Update .gitignore for proc-macro2 and syn
Posted by Zhao Liu 1 week, 4 days ago
On Tue, Sep 16, 2025 at 12:58:24PM +0300, Manos Pitsidianakis wrote:
> Date: Tue, 16 Sep 2025 12:58:24 +0300
> From: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
> Subject: Re: [PATCH 01/12] subprojects: Update .gitignore for proc-macro2
>  and syn
> 
> On Tue, Sep 16, 2025 at 11:34 AM Zhao Liu <zhao1.liu@intel.com> wrote:
> >
> > Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
> > ---
> >  subprojects/.gitignore | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/subprojects/.gitignore b/subprojects/.gitignore
> > index f4281934ce11..9d579f72d121 100644
> > --- a/subprojects/.gitignore
> > +++ b/subprojects/.gitignore
> > @@ -16,7 +16,7 @@
> >  /libc-0.2.162
> >  /proc-macro-error-1.0.4
> >  /proc-macro-error-attr-1.0.4
> > -/proc-macro2-1.0.84
> > +/proc-macro2-1.0.95
> >  /quote-1.0.36
> > -/syn-2.0.66
> > +/syn-2.0.104
> >  /unicode-ident-1.0.12
> > --
> > 2.34.1
> >
> 
> Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>

Thanks!

> Maybe we could change the entries to match any directory with a version, e.g.
> 
> /proc-macro2-[0-9.]*/

Here I prefer exact matching, as it allows for timely cleanup of outdated
subprojects.

Regards,
Zhao