]> ncurses.scripts.mit.edu Git - ncurses.git/commitdiff
ncurses 6.0 - patch 20150810
authorThomas E. Dickey <dickey@invisible-island.net>
Mon, 10 Aug 2015 09:27:53 +0000 (09:27 +0000)
committerThomas E. Dickey <dickey@invisible-island.net>
Mon, 10 Aug 2015 09:27:53 +0000 (09:27 +0000)
+ workaround for Debian #65617, which was fixed in mawk's upstream
  releases in 2009 (report by Sven Joachim).  See
   http://invisible-island.net/mawk/CHANGES.html#t20090727

NEWS
VERSION
dist.mk
ncurses/base/MKlib_gen.sh
package/debian-mingw/changelog
package/debian-mingw64/changelog
package/debian/changelog
package/mingw-ncurses.nsi
package/mingw-ncurses.spec
package/ncurses.spec

diff --git a/NEWS b/NEWS
index f24d2c80538b56c8d8698d096292b4d9181c9501..eb9a3ed2621135ed31338504e65ca49bff0405b5 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -25,7 +25,7 @@
 -- sale, use or other dealings in this Software without prior written        --
 -- authorization.                                                            --
 -------------------------------------------------------------------------------
--- $Id: NEWS,v 1.2476 2015/08/08 23:29:51 tom Exp $
+-- $Id: NEWS,v 1.2478 2015/08/10 09:27:32 tom Exp $
 -------------------------------------------------------------------------------
 
 This is a log of changes that ncurses has gone through since Zeyd started
@@ -45,6 +45,11 @@ 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.
 
+20150810
+       + workaround for Debian #65617, which was fixed in mawk's upstream
+         releases in 2009 (report by Sven Joachim).  See
+               http://invisible-island.net/mawk/CHANGES.html#t20090727
+
 20150808 6.0 release for upload to ftp.gnu.org
 
 20150808
diff --git a/VERSION b/VERSION
index 519fa3d1d71e3249b2220eeec1115e467eed51ab..5ae913f3fb2f9d192a853aff701c15b4f04043a5 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-5:0:9  6.0     20150808
+5:0:9  6.0     20150810
diff --git a/dist.mk b/dist.mk
index 3c61e0afff598abda2437288d24e49b865dc06df..9f9c99fcc0e8fcaf0649f3e3a72f3a2085f2ab92 100644 (file)
--- a/dist.mk
+++ b/dist.mk
@@ -25,7 +25,7 @@
 # use or other dealings in this Software without prior written               #
 # authorization.                                                             #
 ##############################################################################
-# $Id: dist.mk,v 1.1064 2015/08/06 23:13:39 tom Exp $
+# $Id: dist.mk,v 1.1065 2015/08/10 09:10:29 tom Exp $
 # Makefile for creating ncurses distributions.
 #
 # This only needs to be used directly as a makefile by developers, but
@@ -37,7 +37,7 @@ SHELL = /bin/sh
 # These define the major/minor/patch versions of ncurses.
 NCURSES_MAJOR = 6
 NCURSES_MINOR = 0
-NCURSES_PATCH = 20150808
+NCURSES_PATCH = 20150810
 
 # We don't append the patch to the version, since this only applies to releases
 VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
index 4f7f19de362edccc43dada6cb304bff8fc02a397..e7f1f5d99c872f9f9ea66b805653d7a51d5fe3f1 100755 (executable)
@@ -2,7 +2,7 @@
 #
 # MKlib_gen.sh -- generate sources from curses.h macro definitions
 #
-# ($Id: MKlib_gen.sh,v 1.50 2015/08/07 00:48:24 tom Exp $)
+# ($Id: MKlib_gen.sh,v 1.51 2015/08/10 08:56:39 tom Exp $)
 #
 ##############################################################################
 # Copyright (c) 1998-2014,2015 Free Software Foundation, Inc.                #
@@ -72,7 +72,7 @@ USE="$3"
 # appears in gcc 5.0 and (with modification) in 5.1, making it necessary to
 # determine if we are using gcc, and if so, what version because the proposed
 # solution uses a nonstandard option.
-PRG=`echo "$1" | $AWK '{ sub(/^[[:space:]]*/,""); sub(/[[:space:]].*$/, ""); print; }' || exit 0`
+PRG=`echo "$1" | $AWK '{ sub(/^[       ]*/,""); sub(/[         ].*$/, ""); print; }' || exit 0`
 FSF=`"$PRG" --version 2>/dev/null || exit 0 | fgrep "Free Software Foundation" | head -n 1`
 ALL=`"$PRG" -dumpversion 2>/dev/null || exit 0`
 ONE=`echo "$ALL" | sed -e 's/\..*$//'`
index 2875a59c7ea8d7d0df1389000e54183438802ae0..26f0ee6d1ea79de6ea7fd54aa6d51a617f4c3957 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (6.0+20150808) unstable; urgency=low
+ncurses6 (6.0+20150810) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Thu, 06 Aug 2015 19:13:39 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Mon, 10 Aug 2015 05:10:30 -0400
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
index 2875a59c7ea8d7d0df1389000e54183438802ae0..26f0ee6d1ea79de6ea7fd54aa6d51a617f4c3957 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (6.0+20150808) unstable; urgency=low
+ncurses6 (6.0+20150810) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Thu, 06 Aug 2015 19:13:39 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Mon, 10 Aug 2015 05:10:30 -0400
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
index 36464e0cbde4f11ea4662497adc821bb9b6b0adc..3fafc32ef8be7a58f78c5f28bd85a6c7f89a6ac5 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (6.0+20150808) unstable; urgency=low
+ncurses6 (6.0+20150810) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Thu, 06 Aug 2015 19:13:39 -0400
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Mon, 10 Aug 2015 05:10:29 -0400
 
 ncurses6 (5.9-20120608) unstable; urgency=low
 
index c53544b173122a4fe47befcc2d295e4249fdadbc..b187ad9f6098671c695b9a95f5aaf7ab0e8d1b4c 100644 (file)
@@ -1,4 +1,4 @@
-; $Id: mingw-ncurses.nsi,v 1.117 2015/08/06 23:13:39 tom Exp $\r
+; $Id: mingw-ncurses.nsi,v 1.118 2015/08/10 09:10:30 tom Exp $\r
 \r
 ; TODO add examples\r
 ; TODO bump ABI to 6\r
@@ -10,7 +10,7 @@
 !define VERSION_MAJOR "6"\r
 !define VERSION_MINOR "0"\r
 !define VERSION_YYYY  "2015"\r
-!define VERSION_MMDD  "0808"\r
+!define VERSION_MMDD  "0810"\r
 !define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}\r
 \r
 !define MY_ABI   "5"\r
index 703d68597f80ee5059b45727141fe24f542ca0a0..387842a1a2f0b34dd96c7f5830cf1f5e1585506d 100644 (file)
@@ -3,7 +3,7 @@
 Summary: shared libraries for terminal handling
 Name: mingw32-ncurses6
 Version: 6.0
-Release: 20150808
+Release: 20150810
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz
index 305c70ac969c2d492a02d2c79dc71981c4d8e458..2ac9453a913d325f91a330914028ad5de13d72e4 100644 (file)
@@ -1,7 +1,7 @@
 Summary: shared libraries for terminal handling
 Name: ncurses6
 Version: 6.0
-Release: 20150808
+Release: 20150810
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz