public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf/files/
@ 2018-02-19 17:15 Fabian Groffen
  0 siblings, 0 replies; 3+ messages in thread
From: Fabian Groffen @ 2018-02-19 17:15 UTC (permalink / raw
  To: gentoo-commits

commit:     8c10f9b4fdfbe56f007b41941c291a4bd6bf091c
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 19 17:14:41 2018 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Feb 19 17:15:12 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c10f9b4

sys-devel/autoconf: adjust patch so it applies using epatch

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-devel/autoconf/files/autoconf-2.61-darwin.patch | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-devel/autoconf/files/autoconf-2.61-darwin.patch b/sys-devel/autoconf/files/autoconf-2.61-darwin.patch
index 2ac2be361db..83f450e6f5a 100644
--- a/sys-devel/autoconf/files/autoconf-2.61-darwin.patch
+++ b/sys-devel/autoconf/files/autoconf-2.61-darwin.patch
@@ -1,5 +1,5 @@
---- bin/autoreconf.in
-+++ bin/autoreconf.in
+--- a/bin/autoreconf.in
++++ b/bin/autoreconf.in
 @@ -110,7 +110,7 @@
  my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@';
  my $automake   = $ENV{'AUTOMAKE'}   || 'automake';


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf/files/
@ 2022-09-19 16:26 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2022-09-19 16:26 UTC (permalink / raw
  To: gentoo-commits

commit:     328f45c63cf1a7cfdba7060b2b757badb953bfa5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 16:18:35 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 16:26:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=328f45c6

sys-devel/autoconf: drop texinfo hunks in patch for K&R decl fixes

We don't really want to re-generate the manuals just for this,
but drop it from the patches in a separate commit for
historical completeness.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../files/autoconf-2.69-K-R-decls-clang.patch      | 22 ----------------------
 .../files/autoconf-2.71-K-R-decls-clang.patch      | 22 ----------------------
 2 files changed, 44 deletions(-)

diff --git a/sys-devel/autoconf/files/autoconf-2.69-K-R-decls-clang.patch b/sys-devel/autoconf/files/autoconf-2.69-K-R-decls-clang.patch
index c0ae05540146..9f16bc93adba 100644
--- a/sys-devel/autoconf/files/autoconf-2.69-K-R-decls-clang.patch
+++ b/sys-devel/autoconf/files/autoconf-2.69-K-R-decls-clang.patch
@@ -11,28 +11,6 @@ From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= <arsen@aarsen.me>
 Date: Mon, 19 Sep 2022 12:11:24 +0200
 Subject: [PATCH] backport K&R decl fixes
 
---- a/doc/autoconf.texi
-+++ b/doc/autoconf.texi
-@@ -5201,9 +5201,7 @@ the @samp{#undef malloc}):
- #include <config.h>
- #undef malloc
- 
--#include <sys/types.h>
--
--void *malloc ();
-+#include <stdlib.h>
- 
- /* Allocate an N-byte block of memory from the heap.
-    If N is zero, allocate a 1-byte block.  */
-@@ -8057,7 +8055,7 @@ needed:
- #  ifdef __cplusplus
-      extern "C"
- #  endif
--   int F77_DUMMY_MAIN () @{ return 1; @}
-+   int F77_DUMMY_MAIN (void) @{ return 1; @}
- #endif
- @end example
- 
 --- a/lib/autoconf/c.m4
 +++ b/lib/autoconf/c.m4
 @@ -97,7 +97,7 @@ m4_define([AC_LANG_PROGRAM(C)],

diff --git a/sys-devel/autoconf/files/autoconf-2.71-K-R-decls-clang.patch b/sys-devel/autoconf/files/autoconf-2.71-K-R-decls-clang.patch
index 098d3b9c6033..33cb728695bb 100644
--- a/sys-devel/autoconf/files/autoconf-2.71-K-R-decls-clang.patch
+++ b/sys-devel/autoconf/files/autoconf-2.71-K-R-decls-clang.patch
@@ -21,28 +21,6 @@ provokes fatal errors in some compilers nowadays.
 * tests/fortran.at (AC_F77_DUMMY_MAIN usage):
 * tests/semantics.at (AC_CHECK_DECLS):
 Don’t use () in a function decl.
---- a/doc/autoconf.texi
-+++ b/doc/autoconf.texi
-@@ -5460,9 +5460,7 @@ the @samp{#undef malloc}):
- #include <config.h>
- #undef malloc
- 
--#include <sys/types.h>
--
--void *malloc ();
-+#include <stdlib.h>
- 
- /* Allocate an N-byte block of memory from the heap.
-    If N is zero, allocate a 1-byte block.  */
-@@ -8297,7 +8295,7 @@ needed:
- #  ifdef __cplusplus
-      extern "C"
- #  endif
--   int F77_DUMMY_MAIN () @{ return 1; @}
-+   int F77_DUMMY_MAIN (void) @{ return 1; @}
- #endif
- @end example
- 
 --- a/lib/autoconf/c.m4
 +++ b/lib/autoconf/c.m4
 @@ -133,7 +133,7 @@ m4_if([$2], [main], ,


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf/files/
@ 2017-02-04 21:22 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2017-02-04 21:22 UTC (permalink / raw
  To: gentoo-commits

commit:     05c86bf2d3929ecbd35ec109ecc75425e1365a76
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Feb  3 15:21:32 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb  4 21:20:38 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05c86bf2

sys-devel/autoconf: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/3791

 sys-devel/autoconf/files/autoconf-2.60-tests.patch | 22 ----------------------
 1 file changed, 22 deletions(-)

diff --git a/sys-devel/autoconf/files/autoconf-2.60-tests.patch b/sys-devel/autoconf/files/autoconf-2.60-tests.patch
deleted file mode 100644
index 09e4536..00000000
--- a/sys-devel/autoconf/files/autoconf-2.60-tests.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-2006-07-17  Paul Eggert  <eggert@cs.ucla.edu>
-
-	* tests/tools.at (autom4te cache): Update wording of diagnostic
-	to match M4 1.4.5.
-
-Index: tests/tools.at
-===================================================================
-RCS file: /cvsroot/autoconf/autoconf/tests/tools.at,v
-retrieving revision 1.89
-retrieving revision 1.90
-diff -u -p -r1.89 -r1.90
---- tests/tools.at	20 Jun 2006 05:37:43 -0000	1.89
-+++ tests/tools.at	17 Jul 2006 17:30:44 -0000	1.90
-@@ -101,7 +101,7 @@ AT_CHECK_M4SUGAR
- mkdir sub
- mv foo sub
- AT_CHECK_M4SUGAR([], [1], [],
--[m4: script.4s: 1: Cannot open foo: No such file or directory
-+[m4: script.4s: 1: cannot open `foo': No such file or directory
- autom4te: m4 failed with exit status: 1
- ])
- 


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

end of thread, other threads:[~2022-09-19 16:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-19 17:15 [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf/files/ Fabian Groffen
  -- strict thread matches above, loose matches on Subject: below --
2022-09-19 16:26 Sam James
2017-02-04 21:22 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox