gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2743-gb42cad


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2743-gb42cad3
Date: Wed, 23 Aug 2017 01:35:50 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, master has been updated
       via  b42cad3ddb49b1a19c81785c9916a789b7d32efc (commit)
       via  7421f5fd61c94674645615b8eb593d6e7a6a2da2 (commit)
       via  90e72f956e2e0878ca2dfc9e2a394c2e25c799d8 (commit)
      from  79bdf495760451af2b7f7ef209d5f4c82e9929fa (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=b42cad3ddb49b1a19c81785c9916a789b7d32efc

commit b42cad3ddb49b1a19c81785c9916a789b7d32efc
Author: Arnold D. Robbins <address@hidden>
Date:   Wed Aug 23 08:35:32 2017 +0300

    Update README.git.

diff --git a/ChangeLog b/ChangeLog
index ee4f9f4..90e429f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2017-08-23         Arnold D. Robbins     <address@hidden>
+
+       * README.git: Minor edits to make build steps clearer.
+
 2017-08-21         Daniel Richard G.     <address@hidden>
 
        * awk.h (c_func): Renamed to c_function to avoid conflict.
diff --git a/README.git b/README.git
index c947cc2..b590780 100644
--- a/README.git
+++ b/README.git
@@ -1,12 +1,14 @@
-Thu Apr 17 16:54:26 IDT 2014
+Wed Aug 23 08:07:18 IDT 2017
 ============================
 
 If you are reading this, you have retrieved the gawk code base via
 Git from savannah.gnu.org.  This is good; gawk no longer uses CVS.
 
-On GNU and Unix systems, please execute ./bootstrap.sh before invoking
-the usual incantaton of `./configure && make && make check'.  This
-version of bootstrap.sh should work OK.
+On GNU and Unix systems, please execute use the following to build
+gawk after doing `git clone' or `git pull':
+
+       make distclean          # if not a new clone
+       ./bootstrap.sh && ./configure && make && make check
 
 On systems supported by configuration files in the pc/ subdirectory,
 chdir into pc/ and run the make-config.bat script there.  This will produce

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=7421f5fd61c94674645615b8eb593d6e7a6a2da2

commit 7421f5fd61c94674645615b8eb593d6e7a6a2da2
Author: Arnold D. Robbins <address@hidden>
Date:   Wed Aug 23 08:35:20 2017 +0300

    New README.alpine file.

diff --git a/README_d/ChangeLog b/README_d/ChangeLog
index c93879f..43da7cd 100644
--- a/README_d/ChangeLog
+++ b/README_d/ChangeLog
@@ -1,3 +1,7 @@
+2017-08-23         Arnold D. Robbins     <address@hidden>
+
+       * README.alpine: New file.
+
 2017-08-13         Arnold D. Robbins     <address@hidden>
 
        * README.freebsd: New file.
diff --git a/README_d/README.alpine b/README_d/README.alpine
new file mode 100644
index 0000000..4df5b45
--- /dev/null
+++ b/README_d/README.alpine
@@ -0,0 +1,15 @@
+Wed Aug 23 08:19:08 IDT 2017
+============================
+
+I have a report that Alpine Linux uses BusyBox for its utilities. In
+particular, the BusyBox ls does not have a -f option. This option is
+needed in at least one of the tests.
+
+Install coreutils on your Alpine Linux system:
+
+       apk add coreutils
+
+in order to get a fully POSIX-compliant ls.
+
+Arnold Robbins
address@hidden

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=90e72f956e2e0878ca2dfc9e2a394c2e25c799d8

commit 90e72f956e2e0878ca2dfc9e2a394c2e25c799d8
Author: Arnold D. Robbins <address@hidden>
Date:   Wed Aug 23 08:34:49 2017 +0300

    Fix removing testext.tmp file in test suite.

diff --git a/pc/ChangeLog b/pc/ChangeLog
index 2e3a268..455bd32 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,7 @@
+2017-08-23         Arnold D. Robbins     <address@hidden>
+
+       * Makefile.am (testext): Fix spelling of testexttmp.txt.
+
 2017-08-21  Eli Zaretskii  <address@hidden>
 
        * Makefile.tst (testext): Remove textexttmp.txt.
diff --git a/pc/Makefile.tst b/pc/Makefile.tst
index 8a74e31..0bb073d 100644
--- a/pc/Makefile.tst
+++ b/pc/Makefile.tst
@@ -1166,7 +1166,7 @@ testext::
 #      @$(AWK) '/^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > 
testext.awk
        @$(AWK) ' /^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > 
testext.awk
        @$(AWK) -f ./testext.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
-       @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@ testext.awk 
textexttmp.txt
+       @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@ testext.awk 
testexttmp.txt
 
 getfile:
        @echo $@
diff --git a/test/ChangeLog b/test/ChangeLog
index a015ebf..756386a 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,4 +1,8 @@
-2017-08-21  Eli Zaretskii  <address@hidden>
+2017-08-23         Arnold D. Robbins     <address@hidden>
+
+       * Makefile.am (testext): Fix spelling of testexttmp.txt.
+
+2017-08-21        Eli Zaretskii          <address@hidden>
 
        * Makefile.am (testext): Remove textexttmp.txt.
 
diff --git a/test/Makefile.am b/test/Makefile.am
index b257784..99b9fad 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -2209,7 +2209,7 @@ testext::
        @echo $@
        @$(AWK) '/^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > 
testext.awk
        @$(AWK) -f ./testext.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
-       @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@ testext.awk 
textexttmp.txt
+       @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@ testext.awk 
testexttmp.txt
 
 getfile:
        @echo $@
diff --git a/test/Makefile.in b/test/Makefile.in
index ec3bb96..7493f43 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -2648,7 +2648,7 @@ testext::
        @echo $@
        @$(AWK) '/^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > 
testext.awk
        @$(AWK) -f ./testext.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
-       @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@ testext.awk 
textexttmp.txt
+       @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@ testext.awk 
testexttmp.txt
 
 getfile:
        @echo $@

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog              |  4 ++++
 README.git             | 10 ++++++----
 README_d/ChangeLog     |  4 ++++
 README_d/README.alpine | 15 +++++++++++++++
 pc/ChangeLog           |  4 ++++
 pc/Makefile.tst        |  2 +-
 test/ChangeLog         |  6 +++++-
 test/Makefile.am       |  2 +-
 test/Makefile.in       |  2 +-
 9 files changed, 41 insertions(+), 8 deletions(-)
 create mode 100644 README_d/README.alpine


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]