]> ncurses.scripts.mit.edu Git - ncurses.git/commitdiff
ncurses 5.9 - patch 20140118
authorThomas E. Dickey <dickey@invisible-island.net>
Sun, 19 Jan 2014 00:49:51 +0000 (00:49 +0000)
committerThomas E. Dickey <dickey@invisible-island.net>
Sun, 19 Jan 2014 00:49:51 +0000 (00:49 +0000)
+ apply includesubdir variable which was introduced in 20130805 to
  gen-pkgconfig.in (Debian #735782).

14 files changed:
COPYING
Makefile.in
NEWS
dist.mk
misc/gen-pkgconfig.in
package/debian-mingw/changelog
package/debian-mingw/copyright
package/debian-mingw64/changelog
package/debian-mingw64/copyright
package/debian/changelog
package/debian/copyright
package/mingw-ncurses.nsi
package/mingw-ncurses.spec
package/ncurses.spec

diff --git a/COPYING b/COPYING
index 48e6cd430d487dc1dff9f41829ca4dc422bf1c18..6e3b39483181456cfc851ba5f1cf856232585b09 100644 (file)
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-Copyright (c) 1998-2012,2013 Free Software Foundation, Inc.
+Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.
 
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the
@@ -25,4 +25,4 @@ sale, use or other dealings in this Software without prior written
 authorization.
 
 -- vile:txtmode fc=72
--- $Id: COPYING,v 1.1 2013/10/12 17:01:03 tom Exp $
+-- $Id: COPYING,v 1.2 2014/01/18 23:59:29 tom Exp $
index 6c5b6f96b8377b70077acffed9563aa56dd49c2d..803746c2b6a7d6255e7a275b428b50717bbad797 100644 (file)
@@ -1,6 +1,6 @@
-# $Id: Makefile.in,v 1.37 2013/08/03 22:58:52 tom Exp $
+# $Id: Makefile.in,v 1.38 2014/01/18 20:19:45 tom Exp $
 ##############################################################################
-# Copyright (c) 1998-2012,2013 Free Software Foundation, Inc.                #
+# Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.                #
 #                                                                            #
 # Permission is hereby granted, free of charge, to any person obtaining a    #
 # copy of this software and associated documentation files (the "Software"), #
@@ -27,7 +27,7 @@
 # authorization.                                                             #
 ##############################################################################
 #
-# Author: Thomas E. Dickey <dickey@clark.net> 1996,1997
+# Author: Thomas E. Dickey             1996-on
 #
 # Master Makefile for ncurses library.
 
@@ -58,7 +58,7 @@ includesubdir = @includesubdir@
 libdir         = @libdir@
 mandir         = @mandir@
 
-INCLUDEDIR     = ${DESTDIR}${includedir}${includesubdir}
+include_dir    = ${includedir}${includesubdir}
 
 INSTALL                = @INSTALL@
 INSTALL_DATA   = @INSTALL_DATA@
@@ -79,17 +79,17 @@ preinstall :
        @ echo ''
        @ echo '      bin directory: '$(bindir)
        @ echo '      lib directory: '$(libdir)
-       @ echo '  include directory: '$(INCLUDEDIR)
+       @ echo '  include directory: '$(include_dir)
        @ echo '      man directory: '$(mandir)
 @MAKE_TERMINFO@        @ echo ' terminfo directory: '$(ticdir)
        @ echo ''
-       @ test "$(INCLUDEDIR)" = "$(prefix)/include" || \
+       @ test "$(include_dir)" = "$(prefix)/include" || \
                echo '** Include-directory is not in a standard location'
-       @ test ! -f $(INCLUDEDIR)/termcap.h || \
-               fgrep NCURSES_VERSION $(INCLUDEDIR)/termcap.h >/dev/null || \
+       @ test ! -f $(include_dir)/termcap.h || \
+               fgrep NCURSES_VERSION $(include_dir)/termcap.h >/dev/null || \
                echo '** Will overwrite non-ncurses termcap.h'
-       @ test ! -f $(INCLUDEDIR)/curses.h || \
-               fgrep NCURSES_VERSION $(INCLUDEDIR)/curses.h >/dev/null || \
+       @ test ! -f $(include_dir)/curses.h || \
+               fgrep NCURSES_VERSION $(include_dir)/curses.h >/dev/null || \
                echo '** Will overwrite non-ncurses curses.h'
 
 distclean \
diff --git a/NEWS b/NEWS
index aa48d31ed6cb7ab17f925bdc9f5d27f00155dd71..9f3ff1d1a982163cb3ff230fac598fd89fcf5c49 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
 -------------------------------------------------------------------------------
--- Copyright (c) 1998-2012,2013 Free Software Foundation, Inc.               --
+-- Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.               --
 --                                                                           --
 -- Permission is hereby granted, free of charge, to any person obtaining a   --
 -- copy of this software and associated documentation files (the             --
@@ -25,7 +25,7 @@
 -- sale, use or other dealings in this Software without prior written        --
 -- authorization.                                                            --
 -------------------------------------------------------------------------------
--- $Id: NEWS,v 1.2151 2013/12/21 22:25:52 tom Exp $
+-- $Id: NEWS,v 1.2155 2014/01/18 23:59:51 tom Exp $
 -------------------------------------------------------------------------------
 
 This is a log of changes that ncurses has gone through since Zeyd started
@@ -45,6 +45,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.
 
+20140118
+       + apply includesubdir variable which was introduced in 20130805 to
+         gen-pkgconfig.in (Debian #735782).
+
 20131221
        + further improved man2html, used this to fix broken links in html
          manpages.  See
diff --git a/dist.mk b/dist.mk
index 453cb06bd1a94bf668db1d9774e2292c5746f6aa..17b11010a82f987980003b6104de247476956651 100644 (file)
--- a/dist.mk
+++ b/dist.mk
@@ -1,5 +1,5 @@
 ##############################################################################
-# Copyright (c) 1998-2012,2013 Free Software Foundation, Inc.                #
+# Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.                #
 #                                                                            #
 # Permission is hereby granted, free of charge, to any person obtaining a    #
 # copy of this software and associated documentation files (the "Software"), #
@@ -25,7 +25,7 @@
 # use or other dealings in this Software without prior written               #
 # authorization.                                                             #
 ##############################################################################
-# $Id: dist.mk,v 1.964 2013/12/21 21:50:22 tom Exp $
+# $Id: dist.mk,v 1.967 2014/01/19 00:00:07 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 = 5
 NCURSES_MINOR = 9
-NCURSES_PATCH = 20131221
+NCURSES_PATCH = 20140118
 
 # We don't append the patch to the version, since this only applies to releases
 VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
index 9db12572aaee3ba385a24ae9e840be1f099232c5..92fcda68b758ae25a890159cd8cd06d5960466ed 100644 (file)
@@ -1,7 +1,7 @@
 #!@SHELL@
-# $Id: gen-pkgconfig.in,v 1.15 2013/03/16 23:33:34 tom Exp $
+# $Id: gen-pkgconfig.in,v 1.16 2014/01/18 20:21:45 tom Exp $
 ##############################################################################
-# Copyright (c) 2009-2012,2013 Free Software Foundation, Inc.                #
+# Copyright (c) 2009-2013,2014 Free Software Foundation, Inc.                #
 #                                                                            #
 # Permission is hereby granted, free of charge, to any person obtaining a    #
 # copy of this software and associated documentation files (the "Software"), #
@@ -49,12 +49,12 @@ CXX_LIB_SUFFIX=@CXX_LIB_SUFFIX@
 
 prefix="@prefix@"
 exec_prefix="@exec_prefix@"
-includedir="@includedir@"
+includedir="@includedir@@includesubdir@"
 libdir="@libdir@"
 
 show_prefix='@prefix@'
 show_exec_prefix='@exec_prefix@'
-show_includedir='@includedir@'
+show_includedir='@includedir@@includesubdir@'
 show_libdir='@libdir@'
 
 MAIN_LIBRARY="${LIB_NAME}@DFT_ARG_SUFFIX@"
@@ -103,8 +103,6 @@ do
 
        echo "** creating ${name}.pc"
        cat >${name}.pc <<EOF
-# vile:makemode
-
 prefix=$show_prefix
 exec_prefix=$show_exec_prefix
 libdir=$show_libdir
index 2d2b3bf68939fb4fe7e44d4a9d962236be28c6f5..63263831d640dad4b6ff5cc62e7009291396916c 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (5.9-20131221) unstable; urgency=low
+ncurses6 (5.9-20140118) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 21 Dec 2013 13:12:41 -0500
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 18 Jan 2014 10:54:25 -0500
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
index 37d57eb981038a8c5e39d7af27d3021d106f1eb7..2b279046d6ee07de25705decc4f4bcedcfff3388 100644 (file)
@@ -1,6 +1,6 @@
 This package is used for testing builds of ncurses.
 
-Copyright (c) 1998-2012,2013 Free Software Foundation, Inc.
+Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.
 Copyright © 2001 by Pradeep Padala
 
 Permission is hereby granted, free of charge, to any person obtaining a
@@ -81,7 +81,7 @@ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.
 
 
-Copyright 1996-2012,2013 by Thomas E. Dickey
+Copyright 1996-2013,2014 by Thomas E. Dickey
 
                         All Rights Reserved
 
index 2d2b3bf68939fb4fe7e44d4a9d962236be28c6f5..63263831d640dad4b6ff5cc62e7009291396916c 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (5.9-20131221) unstable; urgency=low
+ncurses6 (5.9-20140118) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 21 Dec 2013 13:12:41 -0500
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 18 Jan 2014 10:54:25 -0500
 
 ncurses6 (5.9-20131005) unstable; urgency=low
 
index 37d57eb981038a8c5e39d7af27d3021d106f1eb7..2b279046d6ee07de25705decc4f4bcedcfff3388 100644 (file)
@@ -1,6 +1,6 @@
 This package is used for testing builds of ncurses.
 
-Copyright (c) 1998-2012,2013 Free Software Foundation, Inc.
+Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.
 Copyright © 2001 by Pradeep Padala
 
 Permission is hereby granted, free of charge, to any person obtaining a
@@ -81,7 +81,7 @@ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.
 
 
-Copyright 1996-2012,2013 by Thomas E. Dickey
+Copyright 1996-2013,2014 by Thomas E. Dickey
 
                         All Rights Reserved
 
index f4c67784ef83234d93428d34f1a330fabf13fe93..5dfe40cf5cb25d70b6db25be56a622fe3183b56d 100644 (file)
@@ -1,8 +1,8 @@
-ncurses6 (5.9-20131221) unstable; urgency=low
+ncurses6 (5.9-20140118) unstable; urgency=low
 
   * latest weekly patch
 
- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 21 Dec 2013 13:12:41 -0500
+ -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 18 Jan 2014 10:54:25 -0500
 
 ncurses6 (5.9-20120608) unstable; urgency=low
 
index 37d57eb981038a8c5e39d7af27d3021d106f1eb7..2b279046d6ee07de25705decc4f4bcedcfff3388 100644 (file)
@@ -1,6 +1,6 @@
 This package is used for testing builds of ncurses.
 
-Copyright (c) 1998-2012,2013 Free Software Foundation, Inc.
+Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.
 Copyright © 2001 by Pradeep Padala
 
 Permission is hereby granted, free of charge, to any person obtaining a
@@ -81,7 +81,7 @@ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.
 
 
-Copyright 1996-2012,2013 by Thomas E. Dickey
+Copyright 1996-2013,2014 by Thomas E. Dickey
 
                         All Rights Reserved
 
index c6c90ede95b8218748a738fe75a1f48fbc83d7a4..d2e5b877757f5d7b41fd7cf98e5f7e01910bba70 100644 (file)
@@ -1,4 +1,4 @@
-; $Id: mingw-ncurses.nsi,v 1.19 2013/12/21 18:12:41 tom Exp $\r
+; $Id: mingw-ncurses.nsi,v 1.21 2014/01/18 15:54:25 tom Exp $\r
 \r
 ; TODO add examples\r
 ; TODO bump ABI to 6\r
@@ -9,8 +9,8 @@
 \r
 !define VERSION_MAJOR "5"\r
 !define VERSION_MINOR "9"\r
-!define VERSION_YYYY  "2013"\r
-!define VERSION_MMDD  "1221"\r
+!define VERSION_YYYY  "2014"\r
+!define VERSION_MMDD  "118"\r
 !define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}\r
 \r
 !define MY_ABI   "5"\r
index 8faf9726600e333dfa7bd23d1d756ec9393cea2d..8929748e5eed1d3c1f91971c1c834dd9bceffacf 100644 (file)
@@ -3,7 +3,7 @@
 Summary: shared libraries for terminal handling
 Name: mingw32-ncurses6
 Version: 5.9
-Release: 20131221
+Release: 20140118
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz
index b5d749852d81f1e79383706c7a4beda5376291d2..562b1abe3fabdf9aee3fdae6bd0bf46c26ef10bc 100644 (file)
@@ -1,7 +1,7 @@
 Summary: shared libraries for terminal handling
 Name: ncurses6
 Version: 5.9
-Release: 20131221
+Release: 20140118
 License: X11
 Group: Development/Libraries
 Source: ncurses-%{version}-%{release}.tgz