]> ncurses.scripts.mit.edu Git - ncurses.git/commitdiff
ncurses 6.2 - patch 20200831
authorThomas E. Dickey <dickey@invisible-island.net>
Tue, 1 Sep 2020 00:23:25 +0000 (00:23 +0000)
committerThomas E. Dickey <dickey@invisible-island.net>
Tue, 1 Sep 2020 00:23:25 +0000 (00:23 +0000)
+ build-fix for awk-scripts modified for win32-driver (report by Werner
  Fink).

13 files changed:
NEWS
VERSION
dist.mk
mk-1st.awk
mk-2nd.awk
mk-hdr.awk
package/debian-mingw/changelog
package/debian-mingw64/changelog
package/debian/changelog
package/mingw-ncurses.nsi
package/mingw-ncurses.spec
package/ncurses.spec
package/ncursest.spec

diff --git a/NEWS b/NEWS
index 86343ee1f31b76ff3ce683cfbea0f4be460b3a65..18dec72b92833085ba5e7923fe8e066e32cacece 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -26,7 +26,7 @@
 -- sale, use or other dealings in this Software without prior written        --
 -- authorization.                                                            --
 -------------------------------------------------------------------------------
 -- sale, use or other dealings in this Software without prior written        --
 -- authorization.                                                            --
 -------------------------------------------------------------------------------
--- $Id: NEWS,v 1.3550 2020/08/30 00:55:34 tom Exp $
+-- $Id: NEWS,v 1.3552 2020/09/01 00:21:01 tom Exp $
 -------------------------------------------------------------------------------
 
 This is a log of changes that ncurses has gone through since Zeyd started
 -------------------------------------------------------------------------------
 
 This is a log of changes that ncurses has gone through since Zeyd started
@@ -46,6 +46,10 @@ See the AUTHORS file for the corresponding full names.
 Changes through 1.9.9e did not credit all contributions;
 it is not possible to add this information.
 
 Changes through 1.9.9e did not credit all contributions;
 it is not possible to add this information.
 
+20200831
+       + build-fix for awk-scripts modified for win32-driver (report by Werner
+         Fink).
+
 20200829
        + remove a redundant NCURSES_EXPORT as a build-fix for "Maarten
          Anonymous".
 20200829
        + remove a redundant NCURSES_EXPORT as a build-fix for "Maarten
          Anonymous".
@@ -54,7 +58,7 @@ it is not possible to add this information.
        + modify configure script, moving gcc -Werror options to EXTRA_CFLAGS
          to avoid breaking configure-checks (adapted from ongoing work on
          mawk and lynx).
        + modify configure script, moving gcc -Werror options to EXTRA_CFLAGS
          to avoid breaking configure-checks (adapted from ongoing work on
          mawk and lynx).
-       > errate for terminfo.src (report by Florian Weimer):
+       > errata for terminfo.src (report by Florian Weimer):
        + correct icl6404 csr
        + correct ti916 cup
        + improve ndr9500
        + correct icl6404 csr
        + correct ti916 cup
        + improve ndr9500
diff --git a/VERSION b/VERSION
index 10b0d98cf55854222926429b3b4276da53c828c9..563782acedff49f2df93c3b9b43c4fc33a27f20c 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-5:0:10 6.2     20200829
+5:0:10 6.2     20200831
diff --git a/dist.mk b/dist.mk
index babedaaf61400859a8b6518017f963d1c960614e..1a26f01d959dfd4bc5da0c1d0ddeb088a0a47113 100644 (file)
--- a/dist.mk
+++ b/dist.mk
@@ -26,7 +26,7 @@
 # use or other dealings in this Software without prior written               #
 # authorization.                                                             #
 ##############################################################################
 # use or other dealings in this Software without prior written               #
 # authorization.                                                             #
 ##############################################################################
-# $Id: dist.mk,v 1.1370 2020/08/29 10:53:55 tom Exp $
+# $Id: dist.mk,v 1.1371 2020/08/31 19:51:51 tom Exp $
 # Makefile for creating ncurses distributions.
 #
 # This only needs to be used directly as a makefile by developers, but
 # Makefile for creating ncurses distributions.
 #
 # This only needs to be used directly as a makefile by developers, but
@@ -38,7 +38,7 @@ SHELL = /bin/sh
 # These define the major/minor/patch versions of ncurses.
 NCURSES_MAJOR = 6
 NCURSES_MINOR = 2
 # These define the major/minor/patch versions of ncurses.
 NCURSES_MAJOR = 6
 NCURSES_MINOR = 2
-NCURSES_PATCH = 20200829
+NCURSES_PATCH = 20200831
 
 # We don't append the patch to the version, since this only applies to releases
 VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
 
 # We don't append the patch to the version, since this only applies to releases
 VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
index 7f261e727b9a335c30fee2fa98faaa8ab7ea614b..74bc2ebe8384ef4044e815600c7da363807da065 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: mk-1st.awk,v 1.108 2020/08/29 22:02:56 tom Exp $
+# $Id: mk-1st.awk,v 1.109 2020/08/31 23:49:24 tom Exp $
 ##############################################################################
 # Copyright 2018,2020 Thomas E. Dickey                                       #
 # Copyright 1998-2016,2017 Free Software Foundation, Inc.                    #
 ##############################################################################
 # Copyright 2018,2020 Thomas E. Dickey                                       #
 # Copyright 1998-2016,2017 Free Software Foundation, Inc.                    #
@@ -262,7 +262,6 @@ function install_dll(directory,filename) {
 function in_subset(value) {
                value = " " value " ";
                check = subset;
 function in_subset(value) {
                value = " " value " ";
                check = subset;
-               sub(" .*$", "", check);
                gsub("[+]", " ", check);
                check = " " check " ";
                return index(check,value);
                gsub("[+]", " ", check);
                check = " " check " ";
                return index(check,value);
index 147ea0d3f50e4bf04fa804d44cf05ba6612e80fe..3fe7ed3d22a0d55f9da8577e8b2f836bf03e981e 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: mk-2nd.awk,v 1.21 2020/08/29 22:05:45 tom Exp $
+# $Id: mk-2nd.awk,v 1.22 2020/08/31 23:49:17 tom Exp $
 ##############################################################################
 # Copyright 2020 Thomas E. Dickey                                            #
 # Copyright 1998-2004,2005 Free Software Foundation, Inc.                    #
 ##############################################################################
 # Copyright 2020 Thomas E. Dickey                                            #
 # Copyright 1998-2004,2005 Free Software Foundation, Inc.                    #
@@ -56,7 +56,6 @@
 function in_subset(value) {
                value = " " value " ";
                check = subset;
 function in_subset(value) {
                value = " " value " ";
                check = subset;
-               sub(" .*$", "", check);
                gsub("[+]", " ", check);
                check = " " check " ";
                return index(check,value);
                gsub("[+]", " ", check);
                check = " " check " ";
                return index(check,value);
index b4b9e72344f06b9d7e3e3a00230d8cfe7dea1983..2fa5941ea6ede452391501952d1b19f00abd24c9 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: mk-hdr.awk,v 1.6 2020/08/29 22:07:18 tom Exp $
+# $Id: mk-hdr.awk,v 1.7 2020/08/31 23:48:44 tom Exp $
 ##############################################################################
 # Copyright 2020 Thomas E. Dickey                                            #
 # Copyright 2007-2010,2013 Free Software Foundation, Inc.                    #
 ##############################################################################
 # Copyright 2020 Thomas E. Dickey                                            #
 # Copyright 2007-2010,2013 Free Software Foundation, Inc.                    #
@@ -42,7 +42,6 @@ function basename(path) {
 function in_subset(value) {
        value = " " value " ";
        check = subset;
 function in_subset(value) {
        value = " " value " ";
        check = subset;
-       sub(" .*$", "", check);
        gsub("[+]", " ", check);
        check = " " check " ";
        return index(check,value);
        gsub("[+]", " ", check);
        check = " " check " ";
        return index(check,value);
index 94dff8213a88829211fecb5f614ec4cd8140bbc2..fa26472a6dd7d63b270982eb63d8aceee7e1e8c5 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (6.2+20200829) unstable; urgency=low
+ncurses6 (6.2+20200831) unstable; urgency=low
 
   * latest weekly patch
 
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 29 Aug 2020 06:53:55 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Mon, 31 Aug 2020 15:51:51 -0400
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
index 94dff8213a88829211fecb5f614ec4cd8140bbc2..fa26472a6dd7d63b270982eb63d8aceee7e1e8c5 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (6.2+20200829) unstable; urgency=low
+ncurses6 (6.2+20200831) unstable; urgency=low
 
   * latest weekly patch
 
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 29 Aug 2020 06:53:55 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Mon, 31 Aug 2020 15:51:51 -0400
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
index 35ecd43040174f2f33502e589a1a9ef6bc8c6bb6..936003ede864a230ae7541f706a847ba6a738bdf 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (6.2+20200829) unstable; urgency=low
+ncurses6 (6.2+20200831) unstable; urgency=low
 
   * latest weekly patch
 
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 29 Aug 2020 06:53:55 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Mon, 31 Aug 2020 15:51:51 -0400
 
 ncurses6 (5.9-20120608) unstable; urgency=low
 
 
 ncurses6 (5.9-20120608) unstable; urgency=low
 
index 0b6a4ef023438c43d4e8e4fe97888b359b685a88..17561615942ebd01f3717ade5893612303c0d621 100644 (file)
@@ -1,4 +1,4 @@
-; $Id: mingw-ncurses.nsi,v 1.414 2020/08/29 10:53:55 tom Exp $\r
+; $Id: mingw-ncurses.nsi,v 1.415 2020/08/31 19:51:51 tom Exp $\r
 \r
 ; TODO add examples\r
 ; TODO bump ABI to 6\r
 \r
 ; TODO add examples\r
 ; TODO bump ABI to 6\r
@@ -10,7 +10,7 @@
 !define VERSION_MAJOR "6"\r
 !define VERSION_MINOR "2"\r
 !define VERSION_YYYY  "2020"\r
 !define VERSION_MAJOR "6"\r
 !define VERSION_MINOR "2"\r
 !define VERSION_YYYY  "2020"\r
-!define VERSION_MMDD  "0829"\r
+!define VERSION_MMDD  "0831"\r
 !define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}\r
 \r
 !define MY_ABI   "5"\r
 !define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}\r
 \r
 !define MY_ABI   "5"\r
index c407c339393ecc48acf5823f2f5e7aa1b1b9d9a6..a5c08994dbb5e5e0c21f0fd891b9fca2760631e6 100644 (file)
@@ -3,7 +3,7 @@
 Summary: shared libraries for terminal handling
 Name: mingw32-ncurses6
 Version: 6.2
 Summary: shared libraries for terminal handling
 Name: mingw32-ncurses6
 Version: 6.2
-Release: 20200829
+Release: 20200831
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz
index d32a4570f1cd74ebf16210450201c2c589e932ab..e99aefa27887e94f28b54857779095e4ae744de1 100644 (file)
@@ -1,7 +1,7 @@
 Summary: shared libraries for terminal handling
 Name: ncurses6
 Version: 6.2
 Summary: shared libraries for terminal handling
 Name: ncurses6
 Version: 6.2
-Release: 20200829
+Release: 20200831
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz
index 965900f3990308ade485ddb9f16cf388362712c3..49c365327fbbdc809dde490fbe1d360ac22416cf 100644 (file)
@@ -1,7 +1,7 @@
 Summary: Curses library with POSIX thread support.
 Name: ncursest6
 Version: 6.2
 Summary: Curses library with POSIX thread support.
 Name: ncursest6
 Version: 6.2
-Release: 20200829
+Release: 20200831
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz