From: Thomas E. Dickey Date: Mon, 10 Aug 2015 09:27:53 +0000 (+0000) Subject: ncurses 6.0 - patch 20150810 X-Git-Tag: v6.1~122 X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=commitdiff_plain;h=1f5d7223f670165669ab049909fc665b6acd2a04;ds=sidebyside ncurses 6.0 - patch 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 --- diff --git a/NEWS b/NEWS index f24d2c80..eb9a3ed2 100644 --- 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 519fa3d1..5ae913f3 100644 --- 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 3c61e0af..9f9c99fc 100644 --- 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) diff --git a/ncurses/base/MKlib_gen.sh b/ncurses/base/MKlib_gen.sh index 4f7f19de..e7f1f5d9 100755 --- a/ncurses/base/MKlib_gen.sh +++ b/ncurses/base/MKlib_gen.sh @@ -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/\..*$//'` diff --git a/package/debian-mingw/changelog b/package/debian-mingw/changelog index 2875a59c..26f0ee6d 100644 --- a/package/debian-mingw/changelog +++ b/package/debian-mingw/changelog @@ -1,8 +1,8 @@ -ncurses6 (6.0+20150808) unstable; urgency=low +ncurses6 (6.0+20150810) unstable; urgency=low * latest weekly patch - -- Thomas E. Dickey Thu, 06 Aug 2015 19:13:39 -0400 + -- Thomas E. Dickey Mon, 10 Aug 2015 05:10:30 -0400 ncurses6 (5.9-20131005) unstable; urgency=low diff --git a/package/debian-mingw64/changelog b/package/debian-mingw64/changelog index 2875a59c..26f0ee6d 100644 --- a/package/debian-mingw64/changelog +++ b/package/debian-mingw64/changelog @@ -1,8 +1,8 @@ -ncurses6 (6.0+20150808) unstable; urgency=low +ncurses6 (6.0+20150810) unstable; urgency=low * latest weekly patch - -- Thomas E. Dickey Thu, 06 Aug 2015 19:13:39 -0400 + -- Thomas E. Dickey Mon, 10 Aug 2015 05:10:30 -0400 ncurses6 (5.9-20131005) unstable; urgency=low diff --git a/package/debian/changelog b/package/debian/changelog index 36464e0c..3fafc32e 100644 --- a/package/debian/changelog +++ b/package/debian/changelog @@ -1,8 +1,8 @@ -ncurses6 (6.0+20150808) unstable; urgency=low +ncurses6 (6.0+20150810) unstable; urgency=low * latest weekly patch - -- Thomas E. Dickey Thu, 06 Aug 2015 19:13:39 -0400 + -- Thomas E. Dickey Mon, 10 Aug 2015 05:10:29 -0400 ncurses6 (5.9-20120608) unstable; urgency=low diff --git a/package/mingw-ncurses.nsi b/package/mingw-ncurses.nsi index c53544b1..b187ad9f 100644 --- a/package/mingw-ncurses.nsi +++ b/package/mingw-ncurses.nsi @@ -1,4 +1,4 @@ -; $Id: mingw-ncurses.nsi,v 1.117 2015/08/06 23:13:39 tom Exp $ +; $Id: mingw-ncurses.nsi,v 1.118 2015/08/10 09:10:30 tom Exp $ ; TODO add examples ; TODO bump ABI to 6 @@ -10,7 +10,7 @@ !define VERSION_MAJOR "6" !define VERSION_MINOR "0" !define VERSION_YYYY "2015" -!define VERSION_MMDD "0808" +!define VERSION_MMDD "0810" !define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD} !define MY_ABI "5" diff --git a/package/mingw-ncurses.spec b/package/mingw-ncurses.spec index 703d6859..387842a1 100644 --- a/package/mingw-ncurses.spec +++ b/package/mingw-ncurses.spec @@ -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 diff --git a/package/ncurses.spec b/package/ncurses.spec index 305c70ac..2ac9453a 100644 --- a/package/ncurses.spec +++ b/package/ncurses.spec @@ -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