public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 1/2] gdb, gnulib: Regenerate using the maintainer mode
@ 2023-01-04  2:02 Tsukasa OI
  2023-01-04  2:02 ` [PATCH 2/2] sim: " Tsukasa OI
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Tsukasa OI @ 2023-01-04  2:02 UTC (permalink / raw)
  To: Pedro Alves, Mike Frysinger; +Cc: Tsukasa OI, gdb-patches

From: Tsukasa OI <research_trasio@irq.a4lg.com>

Those files have changed by regenerating using the maintainer mode.
gdb/aclocal.m4 changed its m4_include ordering and {gdbsupport,gnulib}
/Makefile.in changed their copyright year.
---
 gdb/aclocal.m4         | 10 +++++-----
 gdbsupport/Makefile.in |  2 +-
 gnulib/Makefile.in     |  2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/gdb/aclocal.m4 b/gdb/aclocal.m4
index 4aac87b52ed5..806c551456f5 100644
--- a/gdb/aclocal.m4
+++ b/gdb/aclocal.m4
@@ -199,6 +199,11 @@ AC_DEFUN([_AM_SUBST_NOTMAKE])
 # Public sister of _AM_SUBST_NOTMAKE.
 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
 
+m4_include([../libtool.m4])
+m4_include([../ltoptions.m4])
+m4_include([../ltsugar.m4])
+m4_include([../ltversion.m4])
+m4_include([../lt~obsolete.m4])
 m4_include([../config/acx.m4])
 m4_include([../config/ax_pthread.m4])
 m4_include([../config/bfd64.m4])
@@ -212,9 +217,4 @@ m4_include([../config/override.m4])
 m4_include([../config/pkg.m4])
 m4_include([../config/plugins.m4])
 m4_include([../config/tcl.m4])
-m4_include([../libtool.m4])
-m4_include([../ltoptions.m4])
-m4_include([../ltsugar.m4])
-m4_include([../ltversion.m4])
-m4_include([../lt~obsolete.m4])
 m4_include([acinclude.m4])
diff --git a/gdbsupport/Makefile.in b/gdbsupport/Makefile.in
index 6aadae410316..c4b43c99c3d7 100644
--- a/gdbsupport/Makefile.in
+++ b/gdbsupport/Makefile.in
@@ -15,7 +15,7 @@
 @SET_MAKE@
 
 #
-#   Copyright (C) 2020-2022 Free Software Foundation, Inc.
+#   Copyright (C) 2020-2023 Free Software Foundation, Inc.
 #
 # This file is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
diff --git a/gnulib/Makefile.in b/gnulib/Makefile.in
index 6a2091627d28..8d5bf7f16729 100644
--- a/gnulib/Makefile.in
+++ b/gnulib/Makefile.in
@@ -14,7 +14,7 @@
 
 @SET_MAKE@
 
-# Copyright (C) 2019-2022 Free Software Foundation, Inc.
+# Copyright (C) 2019-2023 Free Software Foundation, Inc.
 
 # This file is part of GDB.
 

base-commit: e346efcde0fd60c8b010cfc5b14dc0e725bc9e75
-- 
2.39.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 2/2] sim: Regenerate using the maintainer mode
  2023-01-04  2:02 [PATCH 1/2] gdb, gnulib: Regenerate using the maintainer mode Tsukasa OI
@ 2023-01-04  2:02 ` Tsukasa OI
  2023-01-04  2:11   ` Mike Frysinger
  2023-01-04  8:56 ` [PATCH 1/2] gdb, gnulib: " Tsukasa OI
  2023-01-05  3:32 ` [PATCH v2] gdbsupport, gnulib: Regenerate with " Tsukasa OI
  2 siblings, 1 reply; 6+ messages in thread
From: Tsukasa OI @ 2023-01-04  2:02 UTC (permalink / raw)
  To: Pedro Alves, Mike Frysinger; +Cc: Tsukasa OI, gdb-patches

From: Tsukasa OI <research_trasio@irq.a4lg.com>

Those files have changed by regenerating using the maintainer mode.
The first line of sim/ppc/pk.h have changed by an effect of the commit
319e41e83a40 ("sim: ppc: inline the sim-packages option").
---
 sim/ppc/pk.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sim/ppc/pk.h b/sim/ppc/pk.h
index b4de99658459..92e49e9e8a45 100644
--- a/sim/ppc/pk.h
+++ b/sim/ppc/pk.h
@@ -1,2 +1,2 @@
-/* Generated file; do not edit.  */
+/* Generated file by Makefile.in; do not edit.  */
 extern package_create_instance_callback pk_disklabel_create_instance;
-- 
2.39.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] sim: Regenerate using the maintainer mode
  2023-01-04  2:02 ` [PATCH 2/2] sim: " Tsukasa OI
@ 2023-01-04  2:11   ` Mike Frysinger
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Frysinger @ 2023-01-04  2:11 UTC (permalink / raw)
  To: Tsukasa OI; +Cc: Pedro Alves, gdb-patches

[-- Attachment #1: Type: text/plain, Size: 24 bytes --]

lgtm, please push
-mike

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] gdb, gnulib: Regenerate using the maintainer mode
  2023-01-04  2:02 [PATCH 1/2] gdb, gnulib: Regenerate using the maintainer mode Tsukasa OI
  2023-01-04  2:02 ` [PATCH 2/2] sim: " Tsukasa OI
@ 2023-01-04  8:56 ` Tsukasa OI
  2023-01-05  3:32 ` [PATCH v2] gdbsupport, gnulib: Regenerate with " Tsukasa OI
  2 siblings, 0 replies; 6+ messages in thread
From: Tsukasa OI @ 2023-01-04  8:56 UTC (permalink / raw)
  To: Pedro Alves; +Cc: gdb-patches

On 2023/01/04 11:02, Tsukasa OI wrote:
> From: Tsukasa OI <research_trasio@irq.a4lg.com>
> 
> Those files have changed by regenerating using the maintainer mode.
> gdb/aclocal.m4 changed its m4_include ordering and {gdbsupport,gnulib}
> /Makefile.in changed their copyright year.
> ---
>  gdb/aclocal.m4         | 10 +++++-----

It seems, gdb/aclocal.m4 diff is caused by inconsistent maintainer mode
environment and only {gdbsupport,gnulib} are affected.

I'll resubmit PATCH v2 (since PATCH 2/2 is already merged, only consists
of updated version of this patch [PATCH 1/2]).

>  gdbsupport/Makefile.in |  2 +-
>  gnulib/Makefile.in     |  2 +-
>  3 files changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/gdb/aclocal.m4 b/gdb/aclocal.m4
> index 4aac87b52ed5..806c551456f5 100644
> --- a/gdb/aclocal.m4
> +++ b/gdb/aclocal.m4
> @@ -199,6 +199,11 @@ AC_DEFUN([_AM_SUBST_NOTMAKE])
>  # Public sister of _AM_SUBST_NOTMAKE.
>  AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
>  
> +m4_include([../libtool.m4])
> +m4_include([../ltoptions.m4])
> +m4_include([../ltsugar.m4])
> +m4_include([../ltversion.m4])
> +m4_include([../lt~obsolete.m4])
>  m4_include([../config/acx.m4])
>  m4_include([../config/ax_pthread.m4])
>  m4_include([../config/bfd64.m4])
> @@ -212,9 +217,4 @@ m4_include([../config/override.m4])
>  m4_include([../config/pkg.m4])
>  m4_include([../config/plugins.m4])
>  m4_include([../config/tcl.m4])
> -m4_include([../libtool.m4])
> -m4_include([../ltoptions.m4])
> -m4_include([../ltsugar.m4])
> -m4_include([../ltversion.m4])
> -m4_include([../lt~obsolete.m4])
>  m4_include([acinclude.m4])
> diff --git a/gdbsupport/Makefile.in b/gdbsupport/Makefile.in
> index 6aadae410316..c4b43c99c3d7 100644
> --- a/gdbsupport/Makefile.in
> +++ b/gdbsupport/Makefile.in
> @@ -15,7 +15,7 @@
>  @SET_MAKE@
>  
>  #
> -#   Copyright (C) 2020-2022 Free Software Foundation, Inc.
> +#   Copyright (C) 2020-2023 Free Software Foundation, Inc.
>  #
>  # This file is free software; you can redistribute it and/or modify
>  # it under the terms of the GNU General Public License as published by
> diff --git a/gnulib/Makefile.in b/gnulib/Makefile.in
> index 6a2091627d28..8d5bf7f16729 100644
> --- a/gnulib/Makefile.in
> +++ b/gnulib/Makefile.in
> @@ -14,7 +14,7 @@
>  
>  @SET_MAKE@
>  
> -# Copyright (C) 2019-2022 Free Software Foundation, Inc.
> +# Copyright (C) 2019-2023 Free Software Foundation, Inc.
>  
>  # This file is part of GDB.
>  
> 
> base-commit: e346efcde0fd60c8b010cfc5b14dc0e725bc9e75

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v2] gdbsupport, gnulib: Regenerate with the maintainer mode
  2023-01-04  2:02 [PATCH 1/2] gdb, gnulib: Regenerate using the maintainer mode Tsukasa OI
  2023-01-04  2:02 ` [PATCH 2/2] sim: " Tsukasa OI
  2023-01-04  8:56 ` [PATCH 1/2] gdb, gnulib: " Tsukasa OI
@ 2023-01-05  3:32 ` Tsukasa OI
  2023-01-05 16:31   ` Simon Marchi
  2 siblings, 1 reply; 6+ messages in thread
From: Tsukasa OI @ 2023-01-05  3:32 UTC (permalink / raw)
  To: Pedro Alves; +Cc: Tsukasa OI, gdb-patches

From: Tsukasa OI <research_trasio@irq.a4lg.com>

Those files have changed by regenerating using the maintainer mode.
{gdbsupport,gnulib}/Makefile.in changed their copyright year.
---
 gdbsupport/Makefile.in | 2 +-
 gnulib/Makefile.in     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gdbsupport/Makefile.in b/gdbsupport/Makefile.in
index 6aadae410316..c4b43c99c3d7 100644
--- a/gdbsupport/Makefile.in
+++ b/gdbsupport/Makefile.in
@@ -15,7 +15,7 @@
 @SET_MAKE@
 
 #
-#   Copyright (C) 2020-2022 Free Software Foundation, Inc.
+#   Copyright (C) 2020-2023 Free Software Foundation, Inc.
 #
 # This file is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
diff --git a/gnulib/Makefile.in b/gnulib/Makefile.in
index 6a2091627d28..8d5bf7f16729 100644
--- a/gnulib/Makefile.in
+++ b/gnulib/Makefile.in
@@ -14,7 +14,7 @@
 
 @SET_MAKE@
 
-# Copyright (C) 2019-2022 Free Software Foundation, Inc.
+# Copyright (C) 2019-2023 Free Software Foundation, Inc.
 
 # This file is part of GDB.
 

base-commit: 7cbf35923d31f1f02e69131a9e0f6f065ad8053c
-- 
2.39.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] gdbsupport, gnulib: Regenerate with the maintainer mode
  2023-01-05  3:32 ` [PATCH v2] gdbsupport, gnulib: Regenerate with " Tsukasa OI
@ 2023-01-05 16:31   ` Simon Marchi
  0 siblings, 0 replies; 6+ messages in thread
From: Simon Marchi @ 2023-01-05 16:31 UTC (permalink / raw)
  To: Tsukasa OI, Pedro Alves; +Cc: gdb-patches

On 1/4/23 22:32, Tsukasa OI via Gdb-patches wrote:
> From: Tsukasa OI <research_trasio@irq.a4lg.com>
> 
> Those files have changed by regenerating using the maintainer mode.
> {gdbsupport,gnulib}/Makefile.in changed their copyright year.
> ---
>  gdbsupport/Makefile.in | 2 +-
>  gnulib/Makefile.in     | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/gdbsupport/Makefile.in b/gdbsupport/Makefile.in
> index 6aadae410316..c4b43c99c3d7 100644
> --- a/gdbsupport/Makefile.in
> +++ b/gdbsupport/Makefile.in
> @@ -15,7 +15,7 @@
>  @SET_MAKE@
>  
>  #
> -#   Copyright (C) 2020-2022 Free Software Foundation, Inc.
> +#   Copyright (C) 2020-2023 Free Software Foundation, Inc.
>  #
>  # This file is free software; you can redistribute it and/or modify
>  # it under the terms of the GNU General Public License as published by
> diff --git a/gnulib/Makefile.in b/gnulib/Makefile.in
> index 6a2091627d28..8d5bf7f16729 100644
> --- a/gnulib/Makefile.in
> +++ b/gnulib/Makefile.in
> @@ -14,7 +14,7 @@
>  
>  @SET_MAKE@
>  
> -# Copyright (C) 2019-2022 Free Software Foundation, Inc.
> +# Copyright (C) 2019-2023 Free Software Foundation, Inc.
>  
>  # This file is part of GDB.
>  
> 
> base-commit: 7cbf35923d31f1f02e69131a9e0f6f065ad8053c
> -- 
> 2.39.0
> 

I pointed out the gdbsupport one to Joel here:

https://inbox.sourceware.org/gdb-patches/ef0fb5c9-dadd-3c9e-b49b-b4ee4598c5a0@simark.ca/

I think we need to make sure the new year procedure is updated to avoid
forgetting it in the future.  And our procedure should probably include
gnulib too, since someone needs to do it (either us or the binutils
folks).

Simon

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-01-05 16:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-04  2:02 [PATCH 1/2] gdb, gnulib: Regenerate using the maintainer mode Tsukasa OI
2023-01-04  2:02 ` [PATCH 2/2] sim: " Tsukasa OI
2023-01-04  2:11   ` Mike Frysinger
2023-01-04  8:56 ` [PATCH 1/2] gdb, gnulib: " Tsukasa OI
2023-01-05  3:32 ` [PATCH v2] gdbsupport, gnulib: Regenerate with " Tsukasa OI
2023-01-05 16:31   ` Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).