summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2019-12-07 20:23:07 +0300
committerIgor Pashev <pashev.igor@gmail.com>2019-12-07 20:23:07 +0300
commit737da0cb69fbda2560500d3004cb762856fdfa71 (patch)
tree13c96b8c67d7f1919ccf6c3bee423ec60b751aec
downloadncurses-737da0cb69fbda2560500d3004cb762856fdfa71.tar.gz
ncurses (6.1+20191019-1)debian/6.1+20191019-1debian
-rw-r--r--debian/FAQ52
-rw-r--r--debian/README.etc3
-rw-r--r--debian/TODO4
-rw-r--r--debian/changelog2369
-rw-r--r--debian/changelog.old41
-rw-r--r--debian/control389
-rw-r--r--debian/copyright127
-rw-r--r--debian/gitlab-ci.yml3
-rw-r--r--debian/hurd.ti162
-rw-r--r--debian/lib32ncurses-dev.install23
-rw-r--r--debian/lib32ncurses-dev.links4
-rw-r--r--debian/lib32ncurses6.install4
l---------debian/lib32ncurses6.symbols1
-rw-r--r--debian/lib32ncursesw6.install4
l---------debian/lib32ncursesw6.symbols1
-rw-r--r--debian/lib32tinfo6.install2
l---------debian/lib32tinfo6.symbols1
-rw-r--r--debian/lib64ncurses-dev.install23
-rw-r--r--debian/lib64ncurses-dev.links4
-rw-r--r--debian/lib64ncurses6.install4
l---------debian/lib64ncurses6.symbols1
-rw-r--r--debian/lib64ncursesw6.install4
l---------debian/lib64ncursesw6.symbols1
-rw-r--r--debian/lib64tinfo6.install2
l---------debian/lib64tinfo6.symbols1
-rw-r--r--debian/libncurses-dev.install.in9
-rw-r--r--debian/libncurses-dev.links.in7
-rw-r--r--debian/libncurses-dev.manpages1
-rw-r--r--debian/libncurses5.install.in4
-rw-r--r--debian/libncurses5.symbols567
-rw-r--r--debian/libncurses6.install.in4
-rw-r--r--debian/libncurses6.symbols630
-rw-r--r--debian/libncursesw5.install.in4
-rw-r--r--debian/libncursesw5.symbols664
-rw-r--r--debian/libncursesw6.install.in4
-rw-r--r--debian/libncursesw6.symbols750
-rw-r--r--debian/libtermcap.so.in3
-rw-r--r--debian/libtinfo5.install.in2
-rw-r--r--debian/libtinfo5.symbols244
-rw-r--r--debian/libtinfo6-udeb.install1
-rw-r--r--debian/libtinfo6.install.in2
-rw-r--r--debian/libtinfo6.symbols304
-rw-r--r--debian/ncurses-base.dirs1
-rw-r--r--debian/ncurses-base.install3
-rw-r--r--debian/ncurses-base.lintian-overrides4
-rw-r--r--debian/ncurses-bin.install4
-rw-r--r--debian/ncurses-doc.doc-base20
-rw-r--r--debian/ncurses-doc.docs1
-rw-r--r--debian/ncurses-doc.install1
-rw-r--r--debian/ncurses-doc.links1
-rw-r--r--debian/ncurses-examples.install1
-rw-r--r--debian/ncurses-examples.links1
-rw-r--r--debian/ncurses-examples.lintian-overrides2
-rw-r--r--debian/ncurses-term.install1
-rw-r--r--debian/ncurses-term.links6
-rw-r--r--debian/patches/01-debian-no-ada-doc.diff27
-rw-r--r--debian/patches/02-debian-backspace.diff32
-rw-r--r--debian/patches/02-debian-drop-rin-from-screen-256color.diff23
-rw-r--r--debian/patches/03-debian-ncursesconfig-omit-L.diff47
-rw-r--r--debian/patches/series4
-rwxr-xr-xdebian/rules563
-rw-r--r--debian/rxvt-unicode.ti192
-rw-r--r--debian/rxvt.ti170
-rw-r--r--debian/source/format1
-rw-r--r--debian/source/lintian-overrides4
-rw-r--r--debian/upstream/signing-key.asc24
-rw-r--r--debian/watch7
-rw-r--r--debian/watch.patchlevel7
-rw-r--r--debian/xterm.ti2449
69 files changed, 10026 insertions, 0 deletions
diff --git a/debian/FAQ b/debian/FAQ
new file mode 100644
index 0000000..765dd01
--- /dev/null
+++ b/debian/FAQ
@@ -0,0 +1,52 @@
+This file is a list of frequently reported problems with ncurses which are
+considered bugs elsewhere or configuration problems. If you're going to report a
+bug in ncurses, you should probably look over this list first.
+
+********
+
+If you use escape codes to configure a terminal, ncurses applications will just
+overwrite your settings when they exit.
+
+The proper way to do this is to also provide a custom terminfo type which sets
+the terminal correctly. For instance, for controlling the cursor
+shape/color/etc., change the 'cnorm' capability.
+
+********
+
+If you hit the "Print Screen" key while in a Linux console, your current
+application will likely dump core.
+
+The kernel maps that key to ^\, which generates a SIGQUIT by default. There's no
+bug here (although why that key was chosen is unclear).
+
+********
+
+Home/End keys don't work in some non-full-screen applications.
+
+The situation with this is somewhat complicated. For a background summary, see:
+
+ http://invisible-island.net/xterm/xterm.faq.html#xterm_pc_style
+ http://invisible-island.net/xterm/xterm.faq.html#xterm_arrows
+
+Essentially, the key sequences in terminfo entries (particularly khome and kend)
+are for full-screen applications only. This means that they are only valid after
+an 'smkx' sequence, to put the terminal into application mode. If you want to
+use these sequences in non-application mode, you need to recognize similar
+sequences - the versions which start with CSI (\E [) rather than SS3 (\E O). One
+example of how is in /etc/zshrc in recent Debian ZSH packages.
+
+********
+
+The Debian terminfo entry for xterm doesn't work with some other xterms
+
+There's no way to win this. For a while, Debian made its xterm default to a
+terminal type of 'xterm-debian', which seemed to fix the problem. In that case,
+however, connecting to remote non-Debian machines requires you to change your
+terminal type (since there will be no entry for xterm-debian there). Having
+changed back to a default terminal type of 'xterm', when you sit at a non-Debian
+system using some other version of xterm, applications on the Debian system may
+use features not available in your current xterm.
+
+The only workaround for this problem is to set your terminal type from xterm to
+one of the feature-limited versions when you log in to a Debian system remotely.
+"xterm-r6" and the associated terminal types are appropriate for this.
diff --git a/debian/README.etc b/debian/README.etc
new file mode 100644
index 0000000..bea98cc
--- /dev/null
+++ b/debian/README.etc
@@ -0,0 +1,3 @@
+This directory is for system-local terminfo descriptions. By default,
+ncurses will search ${HOME}/.terminfo first, then /etc/terminfo (this
+directory), then /lib/terminfo, and last not least /usr/share/terminfo.
diff --git a/debian/TODO b/debian/TODO
new file mode 100644
index 0000000..ddee7a9
--- /dev/null
+++ b/debian/TODO
@@ -0,0 +1,4 @@
+A possibility that could be explored is to only ship development packages
+for the wide libraries. Doing so would give automatic UTF-8 support at the
+cost of increased memory usage, see for instance
+https://bugzilla.redhat.com/show_bug.cgi?id=1270534#c26.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7ed9432
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,2369 @@
+ncurses (6.1+20191019-1) unstable; urgency=medium
+
+ * New upstream patchlevel.
+ - Fix several errata in tic (Closes: #942401).
+ + Check for invalid hashcode in _nc_find_type_entry
+ and nc_find_name_entry (CVE-2019-17594).
+ + Check for invalid hashcode in _nc_find_entry.
+ + Check for missing character after backslash in fmt_entry
+ (CVE-2019-17595).
+ * Refresh patch 03-debian-ncursesconfig-omit-L.diff.
+ * Support additional build profiles:
+ - Skip building ABI 5 libraries in a pkg.ncurses.nolegacy build profile.
+ - Skip building the examples in a pkg.ncurses.noexamples build profile.
+ - Do not build libtinfo6-udeb in the noudeb build profile.
+ * Add a "Replaces: alacritty (<< 0.3.4~)" to ncurses-term
+ (Closes: #933386).
+ * Add a Salsa CI pipeline in debian/gitlab-ci.yml.
+ * Export BUILD_{C,CPP,LD}FLAGS in debian/rules, making blhc happy.
+ * Upgrade Standards-Version to 4.4.1, no changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 24 Oct 2019 18:18:57 +0200
+
+ncurses (6.1+20190803-1) unstable; urgency=medium
+
+ * New upstream patchlevel.
+ - Amend the change to screen, because tmux relies upon that entry
+ and does not support that feature (Closes: #933572).
+ * New patch 02-debian-drop-rin-from-screen-256color.diff: remove "rin"
+ also from screen-256color, used by some tmux users as their $TERM.
+ * Drop patch fix-tabs-manpage-installation.diff, applied upstream.
+ * Refresh patch 02-debian-backspace.diff after upstream changes to
+ the screen terminfo description.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 08 Aug 2019 17:39:10 +0200
+
+ncurses (6.1+20190713-2) unstable; urgency=medium
+
+ * Drop "rep" from xterm-new and derived terminfo descriptions
+ (Closes: #933053).
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 01 Aug 2019 18:12:18 +0200
+
+ncurses (6.1+20190713-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ * Refresh patch 02-debian-backspace.diff after upstream changes to
+ the screen terminfo description.
+ * New patch fix-tabs-manpage-installation.diff, reverts a broken
+ upstream change which inadvertently installed the tabs.1 manpage
+ as a dangling symlink.
+ * Update symbols files for new symbol _nc_find_user_entry.
+ * Move the tmux and tmux-256color terminfo entries to ncurses-base
+ (Closes: #927973).
+ * Bump debhelper compatibility level to 12.
+ - Build-depend on debhelper-compat (= 12) and drop debian/compat.
+ * Drop the -dbg packages (Closes: #849003).
+ * Reduce the size of the -dbgsym packages with dh_dwz.
+ * Update years in debian/copyright.
+ * Upgrade Standards-Version to 4.4.0, no changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Fri, 19 Jul 2019 17:14:25 +0200
+
+ncurses (6.1+20181013-2) unstable; urgency=medium
+
+ * Add Breaks against libmono-corlib4.5-cil (<< 4.6.2.7+dfsg-2)
+ to ncurses-base and ncurses-term (Closes: #899394).
+ * Add Build-Depends-Package annotations to the symbols files.
+ * Add a lintian override to ncurses-examples for
+ package-contains-documentation-outside-usr-share-doc.
+ * Upgrade Standards-Version to 4.3.0, no changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Mon, 11 Feb 2019 18:17:20 +0100
+
+ncurses (6.1+20181013-1) unstable; urgency=medium
+
+ * New upstream patchlevel.
+ - Modify configure scripts to reduce relinking/ranlib during library
+ install. Together with the next change, this Closes: #903790.
+ * Configure with --disable-relink.
+ * Fix wrong-path-for-interpreter lintian error in ncurses-examples.
+ * Add Breaks against libunibilium4 (<< 2.0.0-3) to ncurses-base and
+ ncurses-term (Closes: #904337).
+ * Upgrade Standards-Version to 4.2.1, no further changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 18 Oct 2018 19:45:43 +0200
+
+ncurses (6.1+20180714-1) unstable; urgency=medium
+
+ * New upstream patchlevel.
+ - Fix a case where tiparm could return null if the format-string was
+ empty (Closes: #902630).
+ - Reduce use of _GNU_SOURCE for current glibc where _DEFAULT_SOURCE
+ combines with _XOPEN_SOURCE (Closes: #900987).
+ - Modify generated ncurses*config and ncurses.pc, ncursesw.pc, etc.,
+ to list helper libraries such as gpm for static linking (see #900839).
+ * Refresh Debian patches.
+ * Stop building special debug libraries, and mark the -dbg packages as
+ Multi-Arch: same (Addresses: #849003).
+ * Build the static libraries without gpm support (Closes: #900839).
+ * Upgrade Standards-Version to 4.1.5, no changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Tue, 17 Jul 2018 18:17:02 +0200
+
+ncurses (6.1+20180210-4) unstable; urgency=medium
+
+ * Take over the dvtm and dvtm-256color terminfo entries from the dvtm
+ package in ncurses-term (see #897953).
+ * Cherry-pick a fix from the 20180519 patchlevel: add check in
+ pair_content() to handle the case where caller asks for an
+ uninitialized pair (Closes: #898658).
+ * Move screen.xterm-256color and rxvt-unicode-256color terminfo entries
+ from ncurses-term to ncurses-base (Closes: #898666, #898948).
+ * Speed up binary-indep builds by building only the configurations
+ necessary to install and run tic.
+ - Move the g++-multilib build dependency to Build-Depends-Arch.
+
+ -- Sven Joachim <svenjoac@gmx.de> Mon, 21 May 2018 10:54:08 +0200
+
+ncurses (6.1+20180210-3) unstable; urgency=medium
+
+ * Add back "Suggests: ncurses-doc" to libncurses-dev which inadvertently
+ got lost in 6.1+20180210-1 (Closes: #897035).
+ * Cherry-pick a fix from the 20180414 patchlevel: add a null-pointer
+ check in _nc_parse_entry to handle an error when a use-name is invalid
+ syntax (report by Chung-Yi Lin, CVE-2018-10754).
+ * Add Breaks against versions of bash-static and zsh-static which were
+ built with libtinfo before 6.1 to ncurses-{base,term}.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 10 May 2018 16:17:05 +0200
+
+ncurses (6.1+20180210-2) unstable; urgency=medium
+
+ * Run dh_autoreconf at build time to regenerate configure scripts.
+ - Add a build-dependency on autoconf-dickey (>= 2.52+20170501).
+ - Drop debian/README.source.
+ * Drop Replaces/Breaks relationships on pre-wheezy packages.
+ * Add more Breaks to ncurses-base and ncurses-term against libraries
+ incompatible with the new terminfo format: libtinfo5 (<< 6.1) and
+ libunibilium0 (Closes: #891380).
+ * Update the watch files to version 4, and look for tarballs on
+ https://invisible-mirror.net.
+ * Bump debhelper compatibility level to 11.
+ * Use "dh_missing --fail-missing" instead of "dh_install --fail-missing".
+ * Temporarily add ncurses{w,}5-config compatibility symlinks.
+ * Upgrade Standards-Version to 4.1.4, no changes needed.
+ * Upload to unstable.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 26 Apr 2018 18:07:30 +0200
+
+ncurses (6.1+20180210-1) experimental; urgency=low
+
+ * New upstream patchlevel.
+ * Switch to the ncurses 6 ABI (Closes: #230990), but continue to ship
+ ABI 5 shared library packages for now.
+ * Change the section of the ABI 5 library packages to oldlibs and update
+ their descriptions accordingly.
+ * Merge lib{tinfo,ncurses5,ncursesw5}-dev into a new libncurses-dev
+ package and turn them into transitional packages (Closes: #840429).
+ Add a lintian override for the resulting duplicate-short-description
+ notices.
+ * Install the tinfo/tic libraries and the programs from the wide build,
+ enabling the extended terminfo format introduced in ncurses 6.1.
+ - Add Breaks against libslang2 (<< 2.3.1a-3) to ncurses-{base,term},
+ since it chokes on the new terminfo format (see #890769).
+ * Build a lib64ncursesw6 package on i386 and powerpc.
+ * Merge the multilib -dev packages into single lib{32,64}ncurses-dev
+ packages which have Conflicts/Replaces/Provides on the old ones.
+ * Install only one set of headers of headers, built from the wide
+ configuration. Provide compatibility symlinks in usr/include/ncursesw.
+ - Configure with --disable-wattr-macros to avoid potential crashes, see
+ https://bugzilla.redhat.com/show_bug.cgi?id=1270534 for details.
+ * Update debian/TODO.
+ * Upgrade Standards-Version to 4.1.3, no further changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 22 Feb 2018 20:23:16 +0100
+
+ncurses (6.1-1) unstable; urgency=low
+
+ * New upstream release.
+ * Refresh Debian patches.
+ * Update symbols files and bump shlibs.
+ - Bump the minimal version of symbols introduced after the 6.0
+ release to 6.1.
+ - Reset the minimal version of _nc_read_entry to back to 6.
+ * Pass --disable-stripping to the configure scripts.
+ * Update xterm.ti from xterm 331.
+ * Use https in the Homepage field.
+ * Update Vcs-{Browser,Git} URLs to point at salsa.debian.org.
+ * Change priority of all library packages to optional.
+ * Update years in debian/copyright.
+
+ -- Sven Joachim <svenjoac@gmx.de> Sun, 11 Feb 2018 21:06:50 +0100
+
+ncurses (6.0+20171125-1) unstable; urgency=medium
+
+ * New upstream patchlevel.
+ - Modify _nc_write_entry() to truncate too-long filename (report by
+ Hosein Askari (CVE-2017-16879), Closes: #882620).
+ * Change priority of the -dbg packages and the udeb to optional.
+ * Delete trailing whitespace in debian/changelog.
+ * Bump debhelper compatibility level to 10.
+ * Switch from dh_autotools-dev_updateconfig to dh_update_autotools_config
+ and drop the explicit autotools-dev build dependency.
+ * Drop dpkg-dev build dependency, already fulfilled in oldstable.
+ * Do not require (fake)root for building the packages.
+ * Configure the test programs with --with-x11-rgb=/etc/X11/rgb.txt.
+
+ -- Sven Joachim <svenjoac@gmx.de> Mon, 27 Nov 2017 17:56:51 +0100
+
+ncurses (6.0+20170902-1) unstable; urgency=medium
+
+ * New upstream patchlevel.
+ - Modify check in fmt_entry() to handle a cancelled reset string
+ (CVE-2017-13733, Closes: #873746).
+
+ -- Sven Joachim <svenjoac@gmx.de> Sun, 03 Sep 2017 19:25:01 +0200
+
+ncurses (6.0+20170827-1) unstable; urgency=medium
+
+ * New upstream patchlevel.
+ - Add/improve checks in tic's parser to address invalid input
+ (Closes: #873723).
+ + Add a check in comp_scan.c to handle the special case where a
+ nontext file ending with a NUL rather than newline is given to
+ tic as input (CVE-2017-13728).
+ + Allow for cancelled capabilities in _nc_save_str (CVE-2017-13729).
+ + Add validity checks for "use=" target in _nc_parse_entry
+ (CVE-2017-13730).
+ + Check for invalid strings in postprocess_termcap (CVE-2017-13731).
+ + Reset secondary pointers on EOF in next_char() (CVE-2017-13732).
+ + Guard _nc_safe_strcpy() and _nc_safe_strcat() against calls using
+ cancelled strings (CVE-2017-13734).
+ - Add usage message to clear command (Closes: #371855).
+ * Configure the test programs with --datadir=/usr/share/ncurses-examples.
+ * Look for tarballs on ftp.invisible-island.net in the watch files.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 31 Aug 2017 21:01:20 +0200
+
+ncurses (6.0+20170715-2) unstable; urgency=medium
+
+ * Bump the minimal version of _nc_read_entry to 6.0+20170715 for partial
+ upgrades from testing.
+
+ -- Sven Joachim <svenjoac@gmx.de> Sun, 16 Jul 2017 18:23:24 +0200
+
+ncurses (6.0+20170715-1) unstable; urgency=medium
+
+ * New upstream patchlevel.
+ - Bring back the _nc_read_entry symbol in libtinfo5 (Closes: #868328),
+ drop the _nc_read_entry2 symbol which should not have been added.
+ - Repair termcap-format from tic/infocmp broken in 20170701 fixes
+ (Closes: #868266).
+
+ -- Sven Joachim <svenjoac@gmx.de> Sun, 16 Jul 2017 18:07:56 +0200
+
+ncurses (6.0+20170708-1) unstable; urgency=high
+
+ * New upstream patchlevel.
+ - Correct a limit-check in fixes from CVE-2017-10684
+ (report by Sven Joachim).
+ * Amend the previous Debian changelog entry with CVE references.
+
+ -- Sven Joachim <svenjoac@gmx.de> Sun, 09 Jul 2017 11:50:10 +0200
+
+ncurses (6.0+20170701-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Add/improve checks in tic's parser to address invalid input
+ (Redhat #1464684, #1464685, #1464686, #1464691).
+ + alloc_entry.c, add a check for a null-pointer (CVE-2017-11113).
+ + parse_entry.c, add several checks for valid pointers (CVE-2017-11112),
+ as well as one check to ensure that a single character on a line is
+ not treated as the 2-character termcap short-name.
+ - Fix a problem with buffer overflow in dump_entry.c, which is
+ addressed by reducing the use of a fixed-size buffer
+ (CVE-2017-16084, CVE-2017-10685).
+ * Refresh Debian patches.
+ * Update symbols files.
+ - Add new symbol _nc_read_entry2.
+ - Drop wo unused symbols obsoleted in 2004: _nc_check_termtype and
+ _nc_resolve_uses.
+ * Blacklist dvtm and dvtm-256color terminfo entries which are shipped
+ in the dvtm package (Closes: #863969).
+ * Mark ncurses-doc as Multi-Arch: foreign.
+
+ -- Sven Joachim <svenjoac@gmx.de> Fri, 07 Jul 2017 22:00:14 +0200
+
+ncurses (6.0+20170408-1) experimental; urgency=low
+
+ * New upstream patchlevel.
+ - Fix a memory leak in the window-list when creating multiple
+ screens (reports by Andres Martinelli, Closes: #783486).
+ * Provide a curses(3) symlink to ncurses (Closes: #859293).
+ * Set LD_LIBRARY_PATH when building the test programs, fixes an
+ impending FTBFS when we switch to libncursesw6 from libncursesw5.
+ * Update years in debian/copyright.
+ * Change priority of libncurses5 to optional (see #852002).
+
+ -- Sven Joachim <svenjoac@gmx.de> Fri, 14 Apr 2017 12:21:10 +0200
+
+ncurses (6.0+20161126-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Omit selection of ISO-8859-1 for G0 in enacs capability from
+ linux2.6 entry, to avoid conflict with the user-defined mapping
+ (Closes: #830694).
+ * Update symbols files for new symbol unfocus_current_field.
+
+ -- Sven Joachim <svenjoac@gmx.de> Tue, 29 Nov 2016 21:19:08 +0100
+
+ncurses (6.0+20160917-1) unstable; urgency=medium
+
+ * New upstream patchlevel.
+ - Fix typo in 20160910 changes (Closes: #837892, patch by Sven Joachim).
+
+ -- Sven Joachim <svenjoac@gmx.de> Wed, 21 Sep 2016 18:37:15 +0200
+
+ncurses (6.0+20160910-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Trim trailing blanks from include/Caps*, to work around a problem
+ in sed (Closes: #818067).
+ * Invoke configure via relative paths to prevent the build path from
+ showing up in binaries.
+ * Enable parallel builds.
+
+ -- Sven Joachim <svenjoac@gmx.de> Wed, 14 Sep 2016 20:09:34 +0200
+
+ncurses (6.0+20160625-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Make linux3.0 entry the default linux entry (Closes: #823658, #515609).
+ - Improve manual pages for wgetch and wget_wch to point out that they
+ might return values without names in curses.h (Closes: #822426).
+ - Amend change to _nc_do_color to restore the early return for the
+ special case used in _nc_screen_wrap (report by Dick Streefland,
+ Closes: #816887).
+ * Update xterm.ti from xterm 325.
+ * Enable the bindnow hardening flag.
+ * Really install the Debian FAQ into the libtinfo5 package.
+ * Update links in the Debian FAQ.
+
+ -- Sven Joachim <svenjoac@gmx.de> Wed, 06 Jul 2016 18:00:26 +0200
+
+ncurses (6.0+20160319-2) unstable; urgency=low
+
+ * Team upload
+
+ [ Roger Shimizu ]
+ * Add udeb support to libtinfo5 (Closes: #819397).
+
+ [ Sven Joachim ]
+ * Do not include the tic library in the libtinfo5-udeb package.
+
+ [ Axel Beckert ]
+ * Declare compliance with Debian Policy 3.9.8. (No changes needed.)
+ * Uploading the package for Sven. Upload sponsoring is needed since
+ there is a new binary (udeb) package included.
+
+ -- Axel Beckert <abe@debian.org> Sun, 19 Jun 2016 23:26:15 +0200
+
+ncurses (6.0+20160319-1) unstable; urgency=medium
+
+ * New upstream patchlevel.
+ - Amend workaround for Solaris line-drawing to restore a special case
+ that maps Unicode line-drawing characters into the acsc string for
+ non-Unicode locales (Closes: #816888).
+ * Upgrade Standards-Version to 3.9.7, no changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Fri, 25 Mar 2016 09:48:16 +0100
+
+ncurses (6.0+20160213-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ * Only include debug symbols for the libraries in the -dbg packages,
+ use automatic -dbgsym packages for ncurses-{bin,examples} and the
+ multilib packages.
+ * Bump debhelper compatibility level to 9.
+ * Update years in debian/copyright.
+ * Use https in Vcs-Git URL.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 18 Feb 2016 18:29:28 +0100
+
+ncurses (6.0+20151024-2) unstable; urgency=medium
+
+ * Drop the static debug libraries (Closes: #803482).
+ * Remove the dependency of the -dbg packages on their -dev counterparts,
+ let them depend on the libraries instead.
+ * Add a dependency on ncurses-bin (>= 6.0+20151017) to libtinfo-dev,
+ making piuparts happy (Closes: #803563).
+ * Add an empty /usr/share/terminfo to ncurses-base to work around
+ FTBFS in jed and slrn (see #804083, #804084).
+ * Update Vcs-Browser field to use cgit and https.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 05 Nov 2015 20:53:12 +0100
+
+ncurses (6.0+20151024-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Improve configure check for setting WILDCARD_SYMS variable; on ppc64
+ the variable is in the Data section rather than Text (patch by Michel
+ Normand, Closes: #802810).
+
+ -- Sven Joachim <svenjoac@gmx.de> Sun, 25 Oct 2015 15:25:20 +0100
+
+ncurses (6.0+20151017-1) unstable; urgency=low
+
+ [ Sven Joachim ]
+ * New upstream patchlevel.
+ - Improve check for working poll() by using posix_openpt() as a
+ fallback in case there is no valid terminal on the standard input
+ (Closes: #676461).
+ - Modify ncurses/Makefile.in to sort keys.list in POSIX locale
+ (Closes: #801864).
+ * Update symbols files for new symbol _nc_write_object.
+ * Bump build dependencies on debhelper (>= 9.20141010) and
+ dpkg-dev (>= 1.17.14) for build profiles support.
+ * Update rxvt-unicode terminfo description from upstream CVS Rev 1.35
+ (Closes: #801709).
+ * Move the ncurses{w,}5-config scripts to their respective -dev
+ packages again (Closes: #745479).
+
+ [ Johannes Schauer ]
+ * Support the nobiarch build profile for avoiding multilib. (Closes: #737946)
+
+ -- Sven Joachim <svenjoac@gmx.de> Fri, 23 Oct 2015 17:01:49 +0200
+
+ncurses (6.0+20150810-1) unstable; urgency=medium
+
+ * New upstream release.
+ - Fix comparison against "/usr/include" in misc/gen-pkgconfig.in
+ (Closes: #790548).
+ * Configure with "--with-abi-version=5", upstream defaults to abi 6 now.
+ * Configure with "--with-versioned-syms" (Closes: #788610).
+ - Bump minimal versions of all symbols as well as shlibs to 6.
+ * After building the wide library, install it into a temporary
+ scratchdir so that test/configure can find the necessary auxiliary
+ files (see #786436).
+ * Drop the libncursesw5-dev build-dependency.
+
+ -- Sven Joachim <svenjoac@gmx.de> Mon, 17 Aug 2015 18:01:53 +0200
+
+ncurses (5.9+20150516-2) unstable; urgency=low
+
+ * Move the ncurses{w,}5-config scripts back to ncurses-bin
+ (Closes: #786436, reopens: #745479).
+ - Readd the dependency of the -dev packages on ncurses-bin.
+ - Temporarily add a build-dependency on libncursesw5-dev to
+ avoid the FTBFS problem in #786436.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 21 May 2015 23:20:46 +0200
+
+ncurses (5.9+20150516-1) unstable; urgency=low
+
+ [ Sven Joachim ]
+ * New upstream patchlevel.
+ - Fix FTBFS with GCC 5 (Closes: #777461).
+ - Add xon, ich1, il1 to ibm3161 (patch by Stephen Powell,
+ Closes: #783806).
+ * Refresh patch 02-debian-backspace.diff after upstream changes to
+ the screen terminfo description.
+ * Move the ncurses{w,}5-config scripts to their respective -dev
+ packages (Closes: #745479).
+ - Enhance patch 03-debian-ncursesconfig-omit-L.diff to suppress
+ output in the --libdir option, so that the scripts are identical
+ across architectures.
+ - Drop the dependency of the -dev packages on ncurses-bin.
+ * Remove support for upgrades from versions prior to 5.9-10.
+ - Drop the maintainer scripts.
+ - Drop Pre-Dependency of libncurses5 on libtinfo5.
+ * Drop Conflicts of ncurses-base with ncurses and ncurses-runtime.
+ * Configure with "--with-manpage-format=normal" to avoid having to
+ set GZIP in debian/rules.
+ * Use the armored signature for the watch files.
+ * Update years in debian/copyright.
+ * Upgrade Standards-Version to 3.9.6, no changes needed.
+
+ [ Helmut Grohne ]
+ * Use correct compiler for multilib cross builds. (Closes: #774404)
+
+ -- Sven Joachim <svenjoac@gmx.de> Wed, 20 May 2015 18:01:10 +0200
+
+ncurses (5.9+20140913-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ * Compress the manpages in ncurses-doc with "gzip -9n".
+ * Remove the ada documentation from ncurses-doc, since it is also
+ shipped in the libncursesada-doc package. Thanks to Nicolas
+ Boulenguez for the patch (Closes: #757991).
+
+ -- Sven Joachim <svenjoac@gmx.de> Wed, 17 Sep 2014 19:00:57 +0200
+
+ncurses (5.9+20140712-2) unstable; urgency=low
+
+ * Explicitly disable sysmouse support on kfreebsd (Closes: #755250).
+
+ -- Sven Joachim <svenjoac@gmx.de> Sat, 19 Jul 2014 10:20:21 +0200
+
+ncurses (5.9+20140712-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Update libncurses5 and libncursesw5 symbols files, bump shlibs.
+ * Build-depend on autotools-dev to update config.{guess,sub}.
+ * Ship st and st-256color terminfo entries in ncurses-term, now that
+ suckless-tools no longer includes them.
+ * Update xterm.ti from xterm 308.
+
+ -- Sven Joachim <svenjoac@gmx.de> Sat, 19 Jul 2014 07:01:11 +0200
+
+ncurses (5.9+20140118-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Apply includesubdir variable which was introduced in 20130805 to
+ gen-pkgconfig.in (Closes: #735782).
+ * Update years in debian/copyright.
+ * Refresh Debian patches.
+
+ -- Sven Joachim <svenjoac@gmx.de> Mon, 20 Jan 2014 18:31:56 +0100
+
+ncurses (5.9+20131221-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Update libtinfo5 and libncursesw5 symbols files, bump shlibs.
+ * Sync hurd terminfo description from the Savannah git repository.
+ - Add xenl (Closes: #727119).
+ * Depend on libc6-dev | libc-dev rather than just libc-dev in
+ libncurses{w,}5-dev.
+ * Check GPG signature of upstream tarballs in the watch files.
+ * Upgrade Standards-Version to 3.9.5, no changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Fri, 10 Jan 2014 18:10:11 +0100
+
+ncurses (5.9+20130608-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Add pow() to configure-check for math library, needed for
+ test/hanoi (Closes: #708056).
+ - Fix regression in error-reporting in lib_setup.c (Closes: #711134).
+ * Add Breaks against dialog (<< 1.2-20130523) to libtinfo5, since
+ older dialog versions misbehave (Closes: #709325).
+ * Move detached debugging symbols for libtinfo5 to libtinfo5-dbg.
+ * Switch Vcs-* fields to anonscm.debian.org.
+ * Upgrade Standards-Version to 3.9.4, no changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Mon, 10 Jun 2013 20:18:59 +0200
+
+ncurses (5.9+20130504-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - modify MKkey_defs.sh to filter out build-path which was
+ unnecessarily shown in curses.h.
+ * The headers should now be identical across architectures where
+ libc-dev is coinstallable, so mark libncurses{w,}5-dev as
+ "Multi-Arch: same" again (Closes: #689131).
+
+ -- Sven Joachim <svenjoac@gmx.de> Sat, 11 May 2013 13:00:56 +0200
+
+ncurses (5.9+20130119-1) experimental; urgency=low
+
+ * New upstream patchlevel.
+ - Modify init_pair() to accept -1's for color value after
+ assume_default_colors() has been called (Closes: #337095).
+ - Modify name-comparison for tgetstr, etc., to accommodate legacy
+ applications as well as to improve compatibility with BSD 4.2
+ termcap implementations (Closes: #698299).
+ - Add advice in infocmp manpage for termcap users (Closes: #698469).
+ - Update symbols files for new symbols, bump shlibs.
+ - Remove internal symbol _nc_memmove from libncurses{w,5} symbols files.
+ * Drop patches applied upstream: 00-terminfo-update.diff,
+ 04-fix-tabset-directory.diff and 05-fix-poll-test.diff.
+ * Adapt patch 03-debian-ncursesconfig-omit-L.diff to upstream changes.
+ * Improve cross-building support:
+ - Don't fail if the system version of tic has a different (upstream)
+ version than the one that is being built (Closes: #681798).
+ - Assume working poll() (see #676461).
+ * Drop /usr/share/terminfo from ncurses-bin (Closes: #678441).
+ * Fix typo in package descriptions (architecure → architecture)
+ (Closes: #697533).
+ * Drop Conflicts on old libc6-i386 versions in the lib32* packages.
+ * Don't unnecessarily depend on g++-multilib on kfreebsd-amd64.
+ * Update years in debian/copyright.
+
+ -- Sven Joachim <svenjoac@gmx.de> Wed, 23 Jan 2013 18:50:58 +0100
+
+ncurses (5.9-10) unstable; urgency=low
+
+ * Drop the dependency of the biarch packages on libtinfo5
+ (Closes: #678440).
+ - Convert /usr/share/doc/lib{32,64}tinfo5 back to directories.
+
+ -- Sven Joachim <svenjoac@gmx.de> Wed, 27 Jun 2012 17:20:15 +0200
+
+ncurses (5.9-9) unstable; urgency=low
+
+ * New patch 05-fix-poll-test.diff adapted from the 20120608 upstream
+ patchlevel, correcting the CF_FUNC_POLL test which inadvertently
+ failed if standard input was redirected, as is the case on the Debian
+ buildds (Closes: #676461).
+ * Assume working poll() for the biarch packages where we cannot run the
+ configure check.
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 14 Jun 2012 17:02:56 +0200
+
+ncurses (5.9-8) unstable; urgency=low
+
+ * Update terminfo descriptions to the 20120602 upstream patchlevel.
+ - Correct 'op' for bterm (Closes: #671227).
+ * Change section of ncurses-{base,term} to misc (see #671616).
+ * Move the Breaks against old binutils-gold versions to libtinfo-dev.
+ * Conflict with libc6-i386 (<= 2.9-18) in lib32tinfo{5,-dev}.
+
+ -- Sven Joachim <svenjoac@gmx.de> Sun, 03 Jun 2012 10:17:35 +0200
+
+ncurses (5.9-7) unstable; urgency=low
+
+ * Take over bterm terminfo entry from bogl-bterm in ncurses-term
+ (Closes: #562134).
+ * Make libtinfo5 rather than libncurses5 the main package where the
+ Debian FAQ and TODO files are installed.
+ * Let all library, -dev and -dbg packages directly depend on libtinfo5
+ and replace their /usr/share/doc directories with symlinks to save
+ some space.
+ * Mark ncurses-base and ncurses-term as Multi-Arch: foreign.
+ * Explicitly blacklist fbterm and stterm terminfo entries to prevent
+ accidents like #665877.
+
+ -- Sven Joachim <svenjoac@gmx.de> Tue, 01 May 2012 10:07:23 +0200
+
+ncurses (5.9-6) unstable; urgency=low
+
+ [ Craig Small ]
+ * Permit DMs to upload
+
+ [ Sven Joachim ]
+ * Blacklist st and st-256color terminfo entries until suckless-tools
+ stops shipping them (Closes: #665877).
+ * Update terminfo descriptions to the 20120407 upstream patchlevel.
+ - Revert to linux2.2 rather than linux3.0 as the base for the linux
+ terminfo entry, since the latter breaks display of line drawing
+ characters in non-UTF-8 locales (closes: #665959).
+
+ -- Sven Joachim <svenjoac@gmx.de> Mon, 09 Apr 2012 10:35:00 +0200
+
+ncurses (5.9-5) unstable; urgency=low
+
+ * Configure with /etc/terminfo as default terminfo dir
+ (Closes: #653435, #654672).
+ - New patch 04-fix-tabset-directory.diff to prevent incorrect tabset
+ directory in compiled terminfo descriptions (see #509919).
+ * Mention in debian/README.source that a non-standard autoconf version is
+ required to regenerate 'configure' (Closes: #580190).
+ * New patch 00-terminfo-update.diff, updating terminfo descriptions to
+ the 20120211 upstream patchlevel.
+ - Includes entries for gnu-mach and gnu-mach-color, installed into
+ the ncurses-base package (Closes: #614316).
+ * Update xterm.ti from xterm 276. All xterm-* terminfo entries should
+ have kbs=\177 now. Update patch 02-debian-backspace.diff accordingly.
+ * Drop patch 05-emdebian-wchar.diff, no longer needed.
+ * Protect shell loops in debian/rules with "set -e" to ensure that
+ any errors in them are caught (see Policy §4.6).
+ * Upgrade Standards-Version to 3.9.3, no changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Tue, 28 Feb 2012 20:36:51 +0100
+
+ncurses (5.9-4) unstable; urgency=low
+
+ * Create debian/libtermcap.so at build time rather than trying to ship
+ it, since dpkg-source does not like to do the latter (Closes: #647253).
+
+ -- Sven Joachim <svenjoac@gmx.de> Tue, 01 Nov 2011 20:27:49 +0100
+
+ncurses (5.9-3) unstable; urgency=low
+
+ * Move the libtermcap symlinks to lib{32,}tinfo-dev (Closes: #644426).
+ - Symlink libtinfo.a to libtermcap.a.
+ - Use a linker script for libtermcap.so to work around ldconfig
+ bug #249122.
+ * Move the libtic libraries from lib*ncurses5 to lib*tinfo5
+ (Closes: #644933) and their development files from lib*ncurses5-dev
+ to lib*tinfo-dev.
+ * Drop libticw from libncursesw5 and configure with "--with-ticlib=tic"
+ to share the same tic library between libncurses5 and libncursesw5.
+ * Don't mark libncurses5-dev and libncursesw5-dev as "Multi-Arch: same"
+ for now (Closes: #646761).
+ * Link the example programs against ncursesw rather than ncurses.
+ * Add Breaks against binutils-gold (<< 2.21.53.20110910) to
+ libncurses5-dev and libncursesw5-dev (see #644708).
+ * Mention in /etc/terminfo/README that ${HOME}/.terminfo is the first
+ directory where ncurses looks for terminfo files (LP: #384285).
+ * Obtain CPPFLAGS from dpkg-buildflags.
+ * Drop the lintian overrides introduced in 5.9-2.
+
+ -- Sven Joachim <svenjoac@gmx.de> Mon, 31 Oct 2011 17:18:46 +0100
+
+ncurses (5.9-2) unstable; urgency=low
+
+ * Build libncurses and libncursesw with "--with-termlib" and split out
+ libtinfo* packages to allow building a libreadline that does not link
+ against libncurses. Thanks to Matthias Klose for the initial patch.
+ (Closes: #631592)
+ - Add Pre-dependency on libtinfo5 to libncurses5 to prevent possible
+ symbol lookup errors if libncurses5 is unpacked before libtinfo5.
+ - Replace the libncurses{w,}.so symlinks with linker scripts. Since
+ lintian does not like those in multiarch paths, temporarily add
+ overrides (see #639735).
+ - Remove spurious leftover libncurses5.so.5 symlinks (Closes: #224450,
+ LP: #836246).
+ * Ship the ncurses.supp file in libtinfo-dev (Closes: #627474).
+ * Configure all library builds except libncurses5 with "--without-progs"
+ to reduce build time a bit.
+ * Add build-arch and build-indep targets to debian/rules.
+ * Use dh_install's "--fail-missing" option.
+ * Build for multiarch (Closes: #638281).
+ - Mark libncurses5, libncursesw5, libtinfo5 and their -dev counterparts
+ as Multi-Arch: same.
+ - Mark ncurses-bin as Multi-Arch: foreign.
+ * New patch 03-debian-ncursesconfig-omit-L.diff to omit the "-L" part
+ from "ncurses5-config --libs" (see #638281).
+ * Add rxvt-256color and rxvt-88color entries to debian/rxvt.ti
+ (Closes: #638189).
+ * Bump debhelper compatibility level to 8.
+ * Upgrade Standards-Version to 3.9.2, no changes needed.
+
+ -- Sven Joachim <svenjoac@gmx.de> Tue, 13 Sep 2011 20:01:05 +0200
+
+ncurses (5.9-1) unstable; urgency=low
+
+ * New upstream release.
+ * Correct dh_strip usage in debian/rules (Closes: #619939).
+
+ -- Sven Joachim <svenjoac@gmx.de> Tue, 05 Apr 2011 20:37:53 +0200
+
+ncurses (5.8+20110307-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Fixes bad bound checks in newwin() (Closes: #616711, #617210).
+ * Update years in debian/copyright.
+ * Add a debian/watch.patchlevel file for checking/downloading weekly
+ snapshots with uscan.
+
+ -- Sven Joachim <svenjoac@gmx.de> Tue, 08 Mar 2011 20:32:23 +0100
+
+ncurses (5.8-1) unstable; urgency=low
+
+ * New upstream release.
+ * Drop patch 01-debian-kfreebsd-terminfo.patch, applied upstream.
+ * Ship .pc files for pkg-config in libncurses5-dev and libncursesw5-dev,
+ adding a build-dependency on pkg-config (Closes: #609614).
+ * Update rxvt-unicode terminfo description from upstream CVS Rev 1.29.
+ - Introduce an rxvt-unicode-256color terminfo entry in ncurses-term
+ (Closes: #613171).
+ - Fix typo in kIC terminfo capability (Closes: #446444).
+ * Adjust the Replaces/Breaks combination on mlterm-common, now that
+ mlterm 3.0.2-1 has dropped the mlterm terminfo entry.
+ * Fix the libncursesw5-dbg preinst which had been removing the wrong
+ symlink since it was introduced.
+ * Drop the other preinst scripts, they were only necessary for upgrades
+ from pre-Lenny versions.
+ * Use linux-any wildcard for libgpm-dev Build-Depends and
+ libgpm2 Recommends instead of using a list of negated architectures.
+ * Do not run uupdate from debian/watch.
+
+ -- Sven Joachim <svenjoac@gmx.de> Mon, 28 Feb 2011 19:05:25 +0100
+
+ncurses (5.7+20101128-1) experimental; urgency=low
+
+ [ Sven Joachim ]
+ * New upstream patchlevel.
+ - Clarify that infotocap, captoinfo and tic read text files and do
+ not work with compiled terminfo files (Closes: #593920).
+ * Remove dangling /usr/share/terminfo/k/kon2 symlink (Closes: #522435).
+ * Add an ncurses-examples package containing the compiled test programs
+ (Closes: #34182). Stop shipping the sources in libncurses5-dev.
+ * Move documentation and section 3 manpages to a new ncurses-doc package
+ (Closes: #233400). Suggest ncurses-doc in all -dev packages.
+ * Register the documentation in doc-base (Closes: #451667).
+ * Remove the rather useless README.Debian (Closes: #606034).
+ * Move libtic libraries to /usr.
+ * Tighten the dependencies of the lib{32,64}ncurses*-dev packages to their
+ regular counterparts.
+ * Provide symbols files in all library packages.
+ - Use them to compute the dependencies of the other packages instead of
+ messing around with local shlibs files.
+ * Ship mlterm terminfo in ncurses-term (see #485448).
+ * Ship curses and termcap symlinks in lib{32,64}ncurses5-dev (LP: #485118).
+ * Add lintian override for the empty /usr/share/terminfo directory that
+ was introduced in 5.7+20100313-2.
+ * Stop building the test programs in every library build.
+ * Fix non-idempotency of the install (and thus the binary) target in
+ debian/rules introduced in 5.7+20100313-1.
+ * Do not unnecessarily add /lib32 and /usr/lib32 to dh_shlibdeps' search
+ path when calculating the dependencies of the 32-bit libraries.
+ * Do not allow dh_shlibdeps to fail for the 64-bit libraries.
+ * Drop most patches as obsolete or unused:
+ - 09-fix-delscreen-segfault.diff, applied upstream.
+ - 06-kfreebsd.diff, apparently no longer needed.
+ - 03-linux-use-fsuid.diff, patched code that is not compiled if ncurses
+ is configured with "--disable-termcap", as we do.
+ - 01-use-d-reentrant.diff, no longer needed since all architectures moved
+ away from LinuxThreads and Policy 3.9.1 has explicitly removed the need
+ to #define _REENTRANT.
+ * Refresh all remaining Debian patches and add DEP-3 headers to them.
+ * Remove the fix for bug #127622 from 02-debian-backspace.diff,
+ no longer needed.
+ * Update patch 02-debian-backspace.diff to get kbs=\177 in all screen-*
+ terminfo entries (Closes: #602300).
+ * Drop the rather outdated screen terminfo from the debian directory and use
+ the one provided by upstream's terminfo.src instead.
+ * Get CFLAGS, CXXFLAGS and LDFLAGS from dpkg-buildflags, adding a build
+ dependency on dpkg-dev (>= 1.15.7).
+ * Switch to format 3.0 (quilt).
+ - Remove quilt build dependency and patch/unpatch logic from debian/rules.
+ - Drop debian/README.source.
+ * Add a debian/watch file.
+ * Extend the package descriptions.
+ * Remove duplicate "Priority:" fields from debian/control.
+ * Update debian/copyright:
+ - Update FSF Copyright years.
+ - Mention other copyright holders and licenses.
+ - Give a pointer to the current location of the ncurses sources.
+ - Stop mentioning Debian changes.
+ * Upgrade Standards-Version to 3.9.1, no changes needed.
+
+ [ Loïc Minier ]
+ * Update patch 05-emdebian-wchar to apply cleanly.
+ * Drop 08-pkg-config-libdir patch as dpkg >= 1.15.6 don't set
+ PKG_CONFIG_LIBDIR anymore.
+
+ [ Steve Langasek ]
+ * Export LDFLAGS in debian/rules (Closes: #586144).
+
+ -- Sven Joachim <svenjoac@gmx.de> Mon, 29 Nov 2010 16:41:55 +0100
+
+ncurses (5.7+20100313-5) unstable; urgency=low
+
+ * New patch 01-debian-kfreebsd-terminfo.patch, adding a cons25-debian
+ terminfo entry to ncurses-base for the Debian GNU/kfreebsd console
+ (Closes: #607662).
+
+ -- Sven Joachim <svenjoac@gmx.de> Wed, 29 Dec 2010 19:55:00 +0100
+
+ncurses (5.7+20100313-4) unstable; urgency=low
+
+ * New patch 09-fix-delscreen-segfault.diff taken from upstream
+ patchlevel 20100501, fixes a segfault or infinite loop in applications
+ using multiple screens (Closes: #597175).
+
+ -- Sven Joachim <svenjoac@gmx.de> Tue, 28 Sep 2010 07:08:17 +0200
+
+ncurses (5.7+20100313-3) unstable; urgency=low
+
+ * Fix dangling symlinks in ncurses-term that were introduced by the
+ removal of the ncurses-base compatibility symlinks in version
+ 5.7+20100313-1 (Closes: #576127). Add versioned Breaks against older
+ ncurses-term versions in ncurses-base.
+ * Correct rxvt-unicode sgr0 terminfo entry (Closes: #595484).
+
+ -- Sven Joachim <svenjoac@gmx.de> Sat, 11 Sep 2010 21:13:00 +0200
+
+ncurses (5.7+20100313-2) unstable; urgency=medium
+
+ [ Sven Joachim ]
+ * Disable rmm and smm features in xterm terminfo entry (see #574396).
+ * Include an empty /usr/share/terminfo directory in ncurses-bin to
+ ensure that configure scripts detect terminfo support (Closes: #575284).
+ * Let libncurses5-dev and libncursesw5-dev depend on the same version of
+ ncurses-bin to mitigate the impact of #480437.
+ * Explicitly specify source format 1.0 (lintian warning).
+
+ -- Sven Joachim <svenjoac@gmx.de> Thu, 25 Mar 2010 14:13:38 +0100
+
+ncurses (5.7+20100313-1) unstable; urgency=low
+
+ [ Sven Joachim ]
+ * New upstream patchlevel.
+ - Workaround for bug in g++ 4.1-4.4 warnings for wattrset() macro
+ on amd64 (Closes: #542031).
+ - Fix typo in curs_mouse.3x (Closes: #429198).
+ - Modify CF_MAN_PAGES configure macro to replace all occurrences of
+ TPUT in tput.1's manpage (Closes: #573597).
+ - Bump shlibs version, as there are several new symbols.
+ * Remove patch introduced in 5.5-2, applied upstream. Remove patch
+ introduced in version 5.7+20090627-1, no longer necessary.
+ * Switch patch system to quilt.
+ - Add a short debian/README.source as recommended by policy.
+ * Configure with /usr/share/terminfo as default terminfo dir, so that
+ we get the correct tabset directory (Closes: #509919, LP: #200773).
+ * Update xterm terminfo entry from xterm 246 (Closes: #444250).
+ * Derive xterm{16,256,88}-color from xterm-debian rather than
+ xterm-new for correct backspace key behavior.
+ * Move the debugging libraries back to /usr/lib/debug (Closes: #553239),
+ ship detached debugging symbols (Closes: #532022).
+ * Fix typo in debian/rules that lead to a dangling symlink in
+ lib64ncurses-dev (Closes: #563272).
+ * Install the binaries built without trace support in ncurses-bin
+ to avoid symbol lookup errors (Closes: #365120).
+ * Build static libraries with "--without-dlsym" (Closes: #556378).
+ * Remove compatibility symlinks in /usr/share/terminfo that were only
+ necessary for upgrades from versions prior to 5.4-9.
+ * debian/control cleanups:
+ - Adjust priority of the source package to required.
+ - Remove duplicate Section field for library packages.
+ - Fix dependencies of lib32ncursesw5-dev.
+ - Fix long descriptions of 32-bit packages on 64-bit systems.
+ - Do not recommend libgpm2 in non-native library packages, nor on
+ non-Linux architectures.
+ - Remove very old Replaces/Conflicts/Provides on ncurses-developer,
+ ncurses and tput.
+ - Version the "Replaces: ia32-libs" for lib32ncurses-dev.
+ - Remove no longer needed "Replaces: ncurses-term" and
+ "Depends: libncurses5" from ncurses-base.
+ - Set Homepage field to http://invisible-island.net/ncurses/.
+ - Add Vcs-Browser and Vcs-Git fields.
+ - Add ${misc:Depends} in all Depends fields.
+ - Add myself to Uploaders.
+ * Add lintian override for alleged spelling error in ncurses-base'
+ extended description; "linux" refers to a terminal type there.
+ * Use dh_install instead of dh_movefiles to install files and clean
+ up debian/rules a bit.
+ * Update Standards-Version to 3.8.4, no changes needed.
+
+ [ Craig Small ]
+ * New maintainer Closes: 543852
+ * Cross compile patch applied Closes: #550716
+
+ -- Sven Joachim <svenjoac@gmx.de> Sun, 21 Feb 2010 09:45:58 +0100
+
+ncurses (5.7+20090803-2) unstable; urgency=low
+
+ * Updating package to standards version 3.8.3.
+ * Removing vcs fields.
+ * Orphaning package.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 27 Aug 2009 08:42:21 +0200
+
+ncurses (5.7+20090803-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090803:
+ - fixes regression with UTF-8 characters (Closes: #539735, #539745).
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 04 Aug 2009 11:19:05 +0200
+
+ncurses (5.7+20090801-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090801.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 04 Aug 2009 11:15:22 +0200
+
+ncurses (5.7+20090728-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090728.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 03 Aug 2009 15:12:44 +0200
+
+ncurses (5.7+20090725-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090725.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 03 Aug 2009 14:57:29 +0200
+
+ncurses (5.7+20090718-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090718.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 03 Aug 2009 14:23:38 +0200
+
+ncurses (5.7+20090711-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090711.
+ * Using patch-stamp rather than patch in rules (Closes: #538639).
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 29 Jul 2009 09:17:59 +0200
+
+ncurses (5.7+20090704-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090704.
+ * Adding conflicts to old libc in order to allow upgrade for ia32
+ transition (Closes: #538834).
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 29 Jul 2009 08:43:27 +0200
+
+ncurses (5.7+20090627-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090627.
+ * Adding patch to remove depends to curses.priv.h for expanded.c,
+ otherwise FTBFS.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 16 Jul 2009 23:20:13 +0200
+
+ncurses (5.7+20090613-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090613.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 14 Jul 2009 12:42:47 +0200
+
+ncurses (5.7+20090607-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090607:
+ - fix a regression in lib_tputs.c (Closes: #536177).
+ * Correcting location of debug symbols in the debug packages (Closes:
+ #532022).
+ * Updating package to standards version 3.8.2.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 08 Jul 2009 02:24:00 +0200
+
+ncurses (5.7+20090606-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090606.
+ * Removing leftovers from ia32 transition (Closes: #535385).
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 07 Jul 2009 17:19:49 +0200
+
+ncurses (5.7+20090530-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090530.
+ * Using /{,usr/}lib32 instead of /emul/ia32-linux/ in amd64
+ architecture (Closes: #533012).
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 29 Jun 2009 09:21:07 -0300
+
+ncurses (5.7+20090523-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090523.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 24 May 2009 15:13:01 +0200
+
+ncurses (5.7+20090516-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090516:
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 18 May 2009 12:29:59 +0200
+
+ncurses (5.7+20090510-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090510.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 11 May 2009 15:25:16 +0200
+
+ncurses (5.7+20090502-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090502.
+ * Using correct rfc-2822 date formats in changelog.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 05 May 2009 00:19:41 +0200
+
+ncurses (5.7+20090425-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090425.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 04 May 2009 10:25:00 +0200
+
+ncurses (5.7+20090419-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090419.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 03 May 2009 13:07:00 +0200
+
+ncurses (5.7+20090418-1) UNRELEASED; urgency=low
+
+ * Merging upstream version 5.7+20090418.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 03 May 2009 13:01:00 +0200
+
+ncurses (5.7+20090411-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090411.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 12 Apr 2009 21:01:00 +0200
+
+ncurses (5.7+20090404-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090404.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 06 Apr 2009 11:22:00 +0200
+
+ncurses (5.7+20090328-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090328.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 05 Apr 2009 11:12:00 +0200
+
+ncurses (5.7+20090321-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090321.
+ * Updating section of debug packages.
+ * Updating to standards version 3.8.1.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 30 Mar 2009 11:11:00 +0200
+
+ncurses (5.7+20090314-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090314.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 14 Mar 2009 07:14:00 +0100
+
+ncurses (5.7+20090228-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090228.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 01 Mar 2009 23:06:00 +0100
+
+ncurses (5.7+20090221-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090221.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 26 Feb 2009 11:26:00 +0100
+
+ncurses (5.7+20090214-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090214.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 18 Feb 2009 14:44:00 +0100
+
+ncurses (5.7+20090207-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090207.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 10 Feb 2009 16:07:00 +0100
+
+ncurses (5.7+20090124-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090124.
+ * Removing bash.dpatch, went upstream.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 26 Jan 2009 01:50:00 +0100
+
+ncurses (5.7+20090117-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090117.
+ * Applying patch from David Riebenbauer <davrieb@liegesta.at> to avoid
+ bashism in ncurses-config (Closes: #512161).
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 18 Jan 2009 09:18:00 -0500
+
+ncurses (5.7+20090110-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090110.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 14 Jan 2009 10:49:00 -0500
+
+ncurses (5.7+20090105-1) unstable; urgency=low
+
+ * AMerging upstream version 5.7+20090105.
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 10 Jan 2009 13:14:11 -0500
+
+ncurses (5.7+20090104-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20090104.
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 10 Jan 2009 12:39:00 -0500
+
+ncurses (5.7+20090103-1) UNRELEASED; urgency=low
+
+ * Merging upstream version 5.7+20090103.
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 10 Jan 2009 11:12:00 -0500
+
+ncurses (5.7+20081227-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20081227.
+
+ -- Daniel Baumann <daniel@debian.org> Fri, 09 Jan 2009 15:46:41 -0500
+
+ncurses (5.7+20081220-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20081220.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 25 Dec 2008 11:51:00 +0100
+
+ncurses (5.7+20081213-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20081213.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 14 Dec 2008 21:06:00 +0100
+
+ncurses (5.7+20081206-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20081206.
+ * Removing gpm.dpatch, went upstream.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 14 Dec 2008 20:01:00 +0100
+
+ncurses (5.7+20081129-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20081129.
+ * Correcting previous changelog and patch description to point out
+ that the actual applied patch is the one from Thomas Dickey, the
+ upstream maintainer.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 30 Nov 2008 18:41:00 +0100
+
+ncurses (5.7+20081122-2) unstable; urgency=low
+
+ * Adding patch from upstream based on Samuel Thibault
+ <samuel.thibault@ens-lyon.org> analysis to ensure that aalib checks the
+ value returned by Gpm_GetEvent() and only proceeds if value == 1
+ (Closes: #506717).
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 30 Nov 2008 03:43:00 +0100
+
+ncurses (5.7+20081122-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20081122.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 25 Nov 2008 20:28:00 +0100
+
+ncurses (5.7+2008115-1) unstable; urgency=low
+
+ * Merging upstream version 5.7+20081115:
+ - Includes tabs utility from GNU termutils (Closes: #502260).
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 18 Nov 2008 12:13:00 +0100
+
+ncurses (5.7-2) unstable; urgency=low
+
+ * Replacing obsolete dh_clean -k with dh_prep.
+ * Adding patch from Petr Salinger <Petr.Salinger@seznam.cz> to fix FTBFS on
+ GNU/kFreeBSD (Closes: #504820).
+ * Temporarily downgrading sodepver again; this was actually ment to go to
+ lenny, but I'm to tired to push it... (Closes: #504745).
+
+ -- Daniel Baumann <daniel@debian.org> Fri, 07 Nov 2008 21:06:00 +0100
+
+ncurses (5.7-1) unstable; urgency=low
+
+ * Merging upstream version 5.7.
+ * Updating soname and sodepver to 5.7 in rules.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 05 Nov 2008 21:34:00 +0100
+
+ncurses (5.6+20081025-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20081025.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 26 Oct 2008 15:30:00 +0100
+
+ncurses (5.6+20081018-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20081018.
+ * Adding dh_md5sums calls (Closes: #502840).
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 23 Oct 2008 14:28:00 +0200
+
+ncurses (5.6+20081012-2) unstable; urgency=low
+
+ * Removing symlinks in /usr/share/doc for ncurses-base and ncurses-
+ term as well (Closes: #502686).
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 19 Oct 2008 09:08:00 +0200
+
+ncurses (5.6+20081012-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20081012.
+ * Rediffing debian-backspace.dpatch.
+ * Removing --disable-tic-depends again; was missunderstanding of mine.
+ * Don't symlink doc directories (Closes: #502620).
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 18 Oct 2008 16:12:00 +0200
+
+ncurses (5.6+20081011-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20081011.
+ * Building with --disable-tic-depends.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 16 Oct 2008 20:55:00 +0200
+
+ncurses (5.6+20081004-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20081004.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 09 Oct 2008 14:20:00 +0200
+
+ncurses (5.6+20080927-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080927.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 08 Oct 2008 21:18:00 +0200
+
+ncurses (5.6+20080925-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080925:
+ - fix bug in mouse code for GPM from 20080920 changes
+ (Closes: #500103, #500369).
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 27 Sep 2008 19:57:00 +0200
+
+ncurses (5.6+20080920-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080920.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 23 Sep 2008 12:51:00 +0200
+
+ncurses (5.6+20080913-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080913.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 16 Sep 2008 09:46:00 +0200
+
+ncurses (5.6+20080907-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080907.
+ * Installing changelog and docs also for ncurse-base and ncurse-term.
+ This allows replace the strict versioned depends against libncurses5
+ with an unversioned depends.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 10 Sep 2008 09:19:00 +0200
+
+ncurses (5.6+20080906-1) unstable; urgency=low
+
+ * Updating vcs fields in control file.
+ * Merging upstream version 5.6+20080906.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 07 Sep 2008 21:43:00 +0200
+
+ncurses (5.6+20080830-1) unstable; urgency=medium
+
+ * Merging upstream version 5.6+20080830.
+ * Switching kdch1 from \177 to \E[3~ in debians, for legacy reasons, own
+ embedded xterm defintions (Closes: #319554).
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 01 Sep 2008 13:23:00 +0200
+
+ncurses (5.6+20080823-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080823:
+ - Adds Eterm-256color terminal (Closes: #495815).
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 25 Aug 2008 01:42:00 +0200
+
+ncurses (5.6+20080821-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080821.
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 23 Aug 2008 11:54:00 +0200
+
+ncurses (5.6+20080804-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080804.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 05 Aug 2008 13:53:00 +0200
+
+ncurses (5.6+20080726-2) unstable; urgency=medium
+
+ * Adding patch from Neil Williams <codehelp@debian.org> to ensure wchar.h is
+ available for make_keys when cross-building.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 04 Aug 2008 23:31:00 +0200
+
+ncurses (5.6+20080726-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080726.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 03 Aug 2008 23:00:00 +0200
+
+ncurses (5.6+20080713-1) unstable; urgency=low
+
+ * Moving xterm-256color from ncurses-term to ncurses-base, thanks to Iustin
+ Pop <iusty@k1024.org> (Closes: #405602).
+ * Merging upstream version 5.6+20080713.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 16 Jul 2008 09:09:00 +0200
+
+ncurses (5.6+20080712-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080712.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 16 Jul 2008 01:11:00 +0200
+
+ncurses (5.6+20080705-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080705.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 15 Jul 2008 17:37:00 +0200
+
+ncurses (5.6+20080628-1) unstable; urgency=low
+
+ * Merging upstream version 5.6+20080628.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 15 Jul 2008 17:05:00 +0200
+
+ncurses (5.6+20080621-2) unstable; urgency=low
+
+ * Adjusting libgpm relations to their correct name.
+
+ -- Daniel Baumann <daniel@debian.org> Fri, 27 Jun 2008 10:06:00 +0200
+
+ncurses (5.6+20080621-1) unstable; urgency=low
+
+ * Rebuilding against libgpm2 (Closes: #487925).
+ * Improving package short descriptions as suggested by Justin B. Rye
+ <jbr@edlug.org.uk> (Closes: #484172).
+ * Sorting build-depends.
+ * Adding vcs fields to control file.
+ * Upgrading package to standards 3.8.0.
+ * Upgrading package to debhelper 7.
+ * Merging upstream version 5.6+20080621.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 25 Jun 2008 11:14:00 +0200
+
+ncurses (5.6+20080614-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 16 Jun 2008 22:32:00 +0200
+
+ncurses (5.6+20080531-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 01 Jun 2008 12:35:00 +0200
+
+ncurses (5.6+20080503-1) unstable; urgency=low
+
+ * New upstream patch level:
+ - Modifies screen.* terminfo entries using new screen+fkeys to fix
+ overridden keys in screen.rxvt (Closes: #478094).
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 06 May 2008 13:27:00 +0200
+
+ncurses (5.6+20080419-2) unstable; urgency=low
+
+ * Using tightened versioned depends in ncurses-base on libncurses5
+ (Closes: #477725).
+
+ -- Daniel Baumann <daniel@debian.org> Fri, 29 Apr 2008 07:53:00 +0200
+
+ncurses (5.6+20080419-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 21 Apr 2008 13:06:00 +0200
+
+ncurses (5.6+20080405-2) experimental; urgency=low
+
+ * Adding 32bit libncursesw5 packages (Closes: #457363).
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 09 Apr 2008 07:31:00 +0200
+
+ncurses (5.6+20080405-1) unstable; urgency=medium
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 07 Apr 2008 21:37:00 +0200
+
+ncurses (5.6+20080308-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 22 Mar 2008 23:24:00 +0100
+
+ncurses (5.6+20080203-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 09 Feb 2008 17:41:00 +0100
+
+ncurses (5.6+20080119-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Fri, 25 Jan 2008 12:45:00 +0100
+
+ncurses (5.6+20080105-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 13 Jan 2008 02:01:00 +0100
+
+ncurses (5.6+20071215-1) unstable; urgency=low
+
+ * New upstream patch level.
+ * Updated to new policy.
+
+ -- Daniel Baumann <daniel@debian.org> Fri, 21 Dec 2007 06:37:00 +0100
+
+ncurses (5.6+20071124-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 29 Nov 2007 11:28:00 +0100
+
+ncurses (5.6+20071103-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 04 Nov 2007 15:10:00 +0100
+
+ncurses (5.6+20071013-1) unstable; urgency=low
+
+ * New upstream patch level.
+ * Rising shlibs to '>= 5.6+20071006-3' (Closes: #446929).
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 16 Oct 2007 20:43:00 +0200
+
+ncurses (5.6+20071006-3) unstable; urgency=low
+
+ * Actually including ticlib (Closes: #446243).
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 11 Oct 2007 14:35:00 +0200
+
+ncurses (5.6+20071006-2) unstable; urgency=low
+
+ * Rebuild with --with-ticlib.
+ * Improved long-description of ncurses-term, thanks to Filipus Klutiero
+ <cheal@hotpop.com> (Closes: #423942).
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 10 Oct 2007 22:23:00 +0200
+
+ncurses (5.6+20071006-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 09 Oct 2007 10:57:00 +0200
+
+ncurses (5.6+20070908-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 10 Sep 2007 14:40:00 +0200
+
+ncurses (5.6+20070825-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 28 Aug 2007 08:39:00 +0200
+
+ncurses (5.6+20070812-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 14 Aug 2007 21:28:00 +0200
+
+ncurses (5.6+20070716-1) unstable; urgency=low
+
+ * New upstream patch level:
+ - Fixes problem with tput and -D_REENTRANT (Closes: #433357).
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 17 Jul 2007 05:26:00 +0200
+
+ncurses (5.6+20070714-1) unstable; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 15 Jul 2007 20:06:00 +0200
+
+ncurses (5.6+20070602-1) experimental; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 03 Jun 2007 18:28:00 +0200
+
+ncurses (5.6+20070526-1) experimental; urgency=low
+
+ * New upstream patch level.
+
+ -- Daniel Baumann <daniel@debian.org> Fri, 01 Jun 2007 21:36:00 +0200
+
+ncurses (5.6-3) unstable; urgency=low
+
+ * Really reverting ia32 library directory rename (Closes: #425596).
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 23 May 2007 08:59:00 +0200
+
+ncurses (5.6-2) unstable; urgency=low
+
+ * Reverting ia32 library directory rename (Closes: #425538).
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 22 May 2007 15:38:00 +0200
+
+ncurses (5.6+20070512-1) experimental; urgency=low
+
+ * New upstream patch level.
+ * Using dpatch for upstream modifications.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 22 May 2007 11:38:00 +0200
+
+ncurses (5.6-1) unstable; urgency=low
+
+ * New upstream release (Closes: #417635, #422844).
+ * Changed ia32 library directory from /emul/ia32-linux/usr/lib to /usr/lib32.
+ * Fixed broken .so symlink in lib32ncurses5-dev (Closes: #424755).
+ * Updated build-depends:
+ - g++-multilib instead of lib{32,64}c*-dev-* (Closes: #424000).
+ * Updated patches:
+ - rediffed debian-backspace.patch.
+ - removed ncurses-upstream.patch (part of upstream).
+ - removed signed-chars.patch (part of upstream).
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 22 May 2007 10:54:00 +0200
+
+ncurses (5.5-5) unstable; urgency=medium
+
+ * Fixed /usr/share/doc symlinks (Closes: #390169).
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 19 Oct 2006 12:01:00 +0200
+
+ncurses (5.5-4) unstable; urgency=low
+
+ * Building lib32ncurses5 and lib32ncurses5-dev on ppc64 too,
+ as suggested by Andreas Jochens <aj@andaco.de> (Closes: #389897).
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 28 Sep 2006 18:34:00 +0200
+
+ncurses (5.5-3) unstable; urgency=low
+
+ * New maintainer (Closes: #385928).
+ * Bumped policy version (no changes needed).
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 04 Sep 2006 15:57:00 +0200
+
+ncurses (5.5-2) unstable; urgency=low
+
+ * Update to upstream patch level 20060422.
+ - Correct missing and bogus copyright notices (Closes: #364339).
+ - Correct a typo in the infocmp(1) man page (Closes: 354281).
+ - Correct wins_nwstr for single-column non-8bit codes (Closes: #341661).
+ - Remove a redundant test in lib_color.c (Closes: #335655).
+ - Ignore EINTR in tcgetattr/tcsetattr calls (Closes: #339518).
+ - Correct smacs in cygwin terminfo (Closes: #338234).
+ - Two additional fixes for wide character display (Closes: #316663)
+ (again).
+ * Acknowledge NMU (Closes: #355129).
+ * Update control file for the removal of Section: base.
+ * Use DEB_HOST_ARCH to determine whether to build biarch packages,
+ based on patch from Aurelien Jarno (Closes: #334099).
+ * Make lib64ncurses5-dev depend on lib64c-dev (Closes: #344022).
+ * Add 32-bit library support on amd64, based loosely on Ubuntu
+ patch (Closes: #344442).
+ * Package debugging versions of libncurses++.a.
+ * Update to debhelper compatibility level 5.
+ * Update policy version to 3.7.0.0.
+ * Use shorter symlinks within terminfo directories when possible
+ (e.g. xx -> xy instead of xx -> ../x/xy).
+
+ -- Daniel Jacobowitz <dan@debian.org> Sun, 30 Apr 2006 16:35:05 -0400
+
+ncurses (5.5-1.1) unstable; urgency=low
+
+ * NMU to fix missing Makefile escaping in debian/rules (Closes: #355129)
+ Thanks to Pjotr Kourzanov <peter.kourzanov@xs4all.nl>.
+
+ -- Margarita Manterola <marga@debian.org> Sat, 15 Apr 2006 01:11:55 -0300
+
+ncurses (5.5-1) unstable; urgency=low
+
+ * New upstream release.
+ - inwstr-manpage-section.patch and tack-manpage.patch merged.
+ - Remove reference to non-existant BUGS section (Closes: #325481).
+ - Wide character repainting fix (Closes: #316663).
+ - Hurd sgr0 trimming fix (Closes: #318621).
+ * Set the expected libgpm SONAME in debian/rules to avoid cross compilation
+ checks.
+ * Build 64-bit libraries on i386 and powerpc (Closes: #333749).
+ * Correct the type of NCURSES_BOOL in 64-bit biarch builds.
+
+ -- Daniel Jacobowitz <dan@debian.org> Fri, 14 Oct 2005 21:13:00 +0000
+
+ncurses (5.4-9) unstable; urgency=low
+
+ * Rebuild with gcc-4.0.
+ * Move ncurses-base terminfo descriptions to /lib/terminfo, but continue
+ to search /etc/terminfo (Closes: #316093).
+ * Clean up dependencies in debian/rules for partial builds.
+ * Install a README in /etc/terminfo.
+ * Clean out cruft from various preinsts and postinsts.
+ * Automatically remove old terminfo entries from /etc/terminfo if unmodified.
+ * Add compatibility links in /usr/share/terminfo to /lib/terminfo.
+
+ -- Daniel Jacobowitz <dan@debian.org> Sat, 16 Jul 2005 15:02:55 -0400
+
+ncurses (5.4-8) unstable; urgency=low
+
+ * Disable GPM for 64-bit builds since there is no 64-bit libgpm package
+ (Closes: #315463).
+ * Correct file conflict between ncurses-base and ncurses-term
+ (Closes: #315405).
+
+ -- Daniel Jacobowitz <dan@debian.org> Sun, 26 Jun 2005 15:40:56 -0400
+
+ncurses (5.4-7) unstable; urgency=low
+
+ * Update to upstream patch level 20050619.
+ - Removes a minor optimization which broke aptitude in an Eterm
+ (Closes: #313609).
+ - Incorporated edit-man-out-of-sourcedir.patch.
+ - Obsoleted tack-manpage-section.patch.
+ - Implement, and fix up, --with-chtype.
+ * Update the priority of libncursesw5.
+ * Update for changed dpkg-architecture behavior without breaking backwards
+ compatibility (Closes: #314448).
+ * Conditionalize GPM dependency for Linux only (Closes: #313478).
+ * Add a terminfo entry for rxvt-unicode (Closes: #270287).
+ * Use new --with-chtype and --with-mmask-t options for now.
+ * Tweak the tack manpage again.
+
+ -- Daniel Jacobowitz <dan@debian.org> Sun, 19 Jun 2005 21:48:37 -0400
+
+ncurses (5.4-6) unstable; urgency=medium
+
+ * Add a versioned dependency from ncurses-base to libncurses5, because
+ the old libncurses5 can not handle multi-character rmacs sequences
+ when it processes sgr0 (see bug #313352).
+ * Add a build dependency on quilt (Closes: #313399).
+ * Do not ship terminal types shipped by other packages in Debian to
+ avoid future file conflicts (Closes: #313278).
+
+ -- Daniel Jacobowitz <dan@debian.org> Mon, 13 Jun 2005 10:28:04 -0400
+
+ncurses (5.4-5) unstable; urgency=low
+
+ * Use quilt to manage patches.
+ * Update to upstream patch level 20050604.
+ - Hurd build fix merged upstream.
+ - Part of explicitly signed character patch merged upstream.
+ - Corrected man page for mouseinterval (Closes: #280687).
+ - Improved support for the zn_CH.GBK locale (Closes: #301376).
+ - Improved terminfo entry for putty (Closes: #305704).
+ - Explain the reference to ded(1) on the default_colors(3ncurses)
+ man page (Closes: #295083).
+ - Reset xterm mouse mode in various terminfo entries (Closes: #55637).
+ - Check the size of the terminal after newterm() (Closes: #265631).
+ * Updated xterm terminfo entry from xterm 200. Combined with the
+ upstream patch level, this (Closes: #254316).
+ * Install the examples in libncurses5-dev again (Closes: #257872).
+ * Remove use of test -a in ncurses-base and ncurses-term preinsts
+ (Closes: #259253).
+ * Enable gpm support (Closes: #110586).
+ * Load libgpm.so.1 instead of libgpm.so.
+ * Merge the Debian rxvt terminfo entry with upstream changes.
+ - Upstream added cnorm to rxvt's reset string, so that the block cursor
+ is restored if civis was used (Closes: #265784).
+ * Fix the default bindings for F1-F4 in rxvt.
+ * Use smkx instead of rmkx in rxvt's reset string, so that reset does
+ not leave the keypad in the wrong state.
+ * Move libncursesw.so.5 to /lib (Closes: #273463).
+ * Added a patch from NIIBE Yutaka to support cross-compilation between
+ two Debian systems (Closes: #283059).
+ * Correct the section for the inwstr(3ncurses) man page.
+ * Add myself to Uploaders.
+ * Correct sections on the tack(1) man page.
+ * Use symlinks instead of hardlinks for the terminfo database.
+ * Remove a four-year-old workaround for an ia64 gcc bug.
+ * Update shlibs file to (>= 5.4-5).
+ * Configure using --disable-lp64 for compatibility on 64-bit architectures.
+
+ -- Daniel Jacobowitz <dan@debian.org> Sun, 12 Jun 2005 11:17:54 -0400
+
+ncurses (5.4-4) unstable; urgency=low
+
+ * Update README.Debian to describe current packaging (Closes: #242794).
+ * Make hurd-i386 build again (Closes: #249214).
+ * Install the Hurd terminfo entry in ncurses-base (Closes: #249215).
+
+ -- Daniel Jacobowitz <dan@debian.org> Thu, 27 May 2004 10:09:15 -0400
+
+ncurses (5.4-3) unstable; urgency=low
+
+ * Apply 20040313 and 20040320 patches from upstream
+ (Closes: #237831, #227879).
+ * Fix some remaining casts to "char" which need to be "signed char"
+ (Closes: #237629, #237870, #238718).
+ * Update Eterm terminfo entry to agree with the Debian practice of
+ kbs=\177 (Closes: #237997).
+
+ -- Daniel Jacobowitz <dan@debian.org> Mon, 22 Mar 2004 16:12:36 -0500
+
+ncurses (5.4-2) unstable; urgency=low
+
+ * Oops, rebuild as non-native package.
+
+ -- Daniel Jacobowitz <dan@debian.org> Wed, 10 Mar 2004 15:00:31 -0500
+
+ncurses (5.4-1) unstable; urgency=low
+
+ * New upstream release (Closes: #230335, #236957).
+ * Update to policy 3.6.1.0 (no changes required).
+
+ -- Daniel Jacobowitz <dan@debian.org> Wed, 10 Mar 2004 13:52:53 -0500
+
+ncurses (5.3.20030719-5) unstable; urgency=low
+
+ * Fix false dependency of ncurses-bin on lib64ncurses5 on sparc
+ (Closes: #221174).
+ * Update config.sub and config.guess (Closes: #221651).
+ * Include wsvt25 and wsvt25m for knetbsd (Closes: #224172).
+ * Include Eterm terminfo descriptions in ncurses-base (Closes: #227402).
+ * Fix tack for standout != bold. Half of this fix is already
+ included upstream (Closes: #224443).
+ * Print program name in tput error messages (Closes: #227586).
+ * Update libncursesw5 to standard.
+
+ -- Daniel Jacobowitz <dan@debian.org> Fri, 16 Jan 2004 14:32:08 -0500
+
+ncurses (5.3.20030719-4) unstable; urgency=low
+
+ * Add missing build dependency for s390x (Closes: #210307).
+
+ -- Daniel Jacobowitz <dan@debian.org> Fri, 07 Nov 2003 14:05:42 -0500
+
+ncurses (5.3.20030719-3) unstable; urgency=low
+
+ * Apply patch from Thomas Dickey for a problem with the dl1 capability
+ (Closes: #215805).
+ * Cross-compile when building 64-bit libraries, since the S/390 build
+ systems can not run s390x executables.
+ * Correct a comment typo (Closes: #215806).
+
+ -- Daniel Jacobowitz <dan@debian.org> Mon, 20 Oct 2003 23:01:41 -0400
+
+ncurses (5.3.20030719-2) unstable; urgency=low
+
+ * Add 64-bit libraries for sparc64 (non-wide only) (Closes: #204418).
+ * Clarified description for libncursesw5-dev (Closes: #204670).
+ * Import upstream fix for Big5 display (Closes: #204889).
+
+ -- Daniel Jacobowitz <dan@debian.org> Wed, 27 Aug 2003 21:15:11 -0400
+
+ncurses (5.3.20030719-1) unstable; urgency=low
+
+ * New upstream snapshot.
+ - Includes GNU/FreeBSD support (Closes: #200397).
+ - Warning fix for character array subscripts (Closes: #195732).
+ - Update use of __attribute__ for C++ (Closes: #195230).
+ * Move the Cygwin terminfo to ncurses-base.
+
+ -- Daniel Jacobowitz <dan@debian.org> Sun, 20 Jul 2003 15:22:51 -0400
+
+ncurses (5.3.20030510-2) unstable; urgency=low
+
+ * Bump shlibs version to 5.3.20030510-1 (Closes: #194633).
+ * Move libncurses5-dbg and libncursesw5-dbg to libdevel also.
+ * Install cons25 terminfo in ncurses-base for GNU/FreeBSD
+ (Closes: #196232).
+
+ -- Daniel Jacobowitz <dan@debian.org> Sat, 14 Jun 2003 11:52:47 -0400
+
+ncurses (5.3.20030510-1) unstable; urgency=low
+
+ * New upstream snapshot.
+ - Includes fix for a duplicate initialization bug (Closes: #192267).
+ * Make the argument to define_key a "const char" (Closes: #192860).
+ * Change the sections of libncurses5-dev and libncursesw5-dev.
+ * Add a terminfo file for the Hurd terminal.
+ * Provide a static libncurses_g.a. I can't provide a shared one
+ without introducing an rpath, since it has the same soname as a
+ non-debugging version.
+
+ -- Daniel Jacobowitz <dan@debian.org> Wed, 14 May 2003 13:15:10 -0400
+
+ncurses (5.3.20021109-2) unstable; urgency=low
+
+ * Update screen terminfo entry (Closes: #165222).
+ * Fix a typo in tset (Closes: #171583).
+
+ -- Daniel Jacobowitz <dan@debian.org> Wed, 04 Dec 2002 09:45:43 -0500
+
+ncurses (5.3.20021109-1) unstable; urgency=low
+
+ * New upstream version (Closes: #163512).
+ - Thanks to Andreas for doing a lot of the grunt work.
+ - Works around lameness in dpkg's build process (Closes: #165897).
+
+ -- Daniel Jacobowitz <dan@debian.org> Mon, 11 Nov 2002 14:58:33 -0500
+
+ncurses (5.2.20020112a-8) unstable; urgency=low
+
+ * Depend on libc-dev instead of libc6-dev (Closes: #145569).
+ * Re-enable trace support in libncurses5-dbg (Closes: #146033).
+
+ -- Daniel Jacobowitz <dan@debian.org> Thu, 09 May 2002 17:46:11 -0400
+
+ncurses (5.2.20020112a-7) unstable; urgency=low
+
+ * Update screen terminfo from the screen package (Closes: #112826).
+
+ -- Daniel Jacobowitz <dan@debian.org> Fri, 29 Mar 2002 14:29:49 -0500
+
+ncurses (5.2.20020112a-6) unstable; urgency=low
+
+ * Add screen-bce terminfo (Closes: #138220).
+ * Configure with --without-ada (Closes: #135024).
+
+ -- Daniel Jacobowitz <dan@debian.org> Mon, 18 Mar 2002 14:01:35 -0500
+
+ncurses (5.2.20020112a-5) unstable; urgency=low
+
+ * Fix documentation symlinks on upgrades (Closes: #134744).
+
+ -- Daniel Jacobowitz <dan@debian.org> Tue, 19 Feb 2002 17:26:49 -0500
+
+ncurses (5.2.20020112a-4) unstable; urgency=low
+
+ * Give all packages a common doc directory via symlinks.
+ * Add a FAQ.
+ - Document Print Screen on the console sending SIGQUIT
+ (Closes: #53776).
+ - Document ncurses applications resetting custom cursors
+ (Closes: #55091).
+ - Document the situation with Home and End
+ (Closes: #131501, #89034, #98029, #107453, #107897, #116943,
+ #119491, #130029, #99493).
+ - Document the use of different xterms and xterm terminal types
+ (Closes: #71637).
+ * Include patch from Sven Verdoolaege to fix some wide-character
+ bugs (Closes: #134205).
+ * Include patch to fix keypad() bug (Closes: #131263).
+ * Fix typo in keybound.3x manpage (Closes: #132037).
+
+ -- Daniel Jacobowitz <dan@debian.org> Sun, 17 Feb 2002 18:57:56 -0500
+
+ncurses (5.2.20020112a-3) unstable; urgency=low
+
+ * Update to current config.sub/config.guess to fix MIPS (Closes: #130581).
+ * Clarify descriptions of the ncursesw packages in debian/control
+ (Closes: #130012).
+ * Update terminfo for gnome-terminal to match Debian gnome-terminal
+ package (backspace/delete) (Closes: #127622).
+
+ -- Daniel Jacobowitz <dan@debian.org> Fri, 25 Jan 2002 13:27:21 -0500
+
+ncurses (5.2.20020112a-2) unstable; urgency=low
+
+ * Break hard link in /etc (Closes: #129807, #129904).
+
+ -- Daniel Jacobowitz <dan@debian.org> Sat, 19 Jan 2002 14:55:40 -0500
+
+ncurses (5.2.20020112a-1) unstable; urgency=low
+
+ * New upstream patchlevel.
+ - Correct curs_set manual page (Closes: #121548).
+ - Correct kbs for Mach terminal types (Closes: #109765).
+ * Include a patch to improve clearing colored lines (Closes: #112561).
+ * Build even shared library with debugging info; we strip it out anyway,
+ but this makes the build directory more useful.
+ * Build in separate object directories.
+ * Build wide character support in new packages.
+ * Change the -dbg packages to include debugging shared libraries in
+ /usr/lib/debug; lose the profiling and static debugging libraries;
+ ship unstripped libraries in -dev.
+ * Don't generate debian/control or debian/shlibs.dummy.
+ * Use debhelper in v3 mode.
+
+ -- Daniel Jacobowitz <dan@debian.org> Wed, 16 Jan 2002 22:20:00 -0500
+
+ncurses (5.2.20010318-3) unstable; urgency=low
+
+ * Use a Pre-Depends in ncurses-bin, because it is marked Essential: yes
+ (Closes: #102398).
+ * Build C++ demos without optimization, for poor broken ia64
+ (Closes: #104771, #105139).
+ * Fix harmless lintian warnings in the source package - dh_testversion
+ removal and missing #DEBHELPER#'s.
+
+ -- Daniel Jacobowitz <dan@debian.org> Wed, 18 Jul 2001 20:03:55 -0700
+
+ncurses (5.2.20010318-2) unstable; urgency=low
+
+ * Fix S/390 varargs handling by removing an illegal cast (Closes: 97945).
+ * Append to LD_LIBRARY_PATH so we don't break fakeroot.
+
+ -- Daniel Jacobowitz <dan@debian.org> Sat, 02 Jun 2001 12:27:38 -0700
+
+ncurses (5.2.20010318-1) unstable; urgency=low
+
+ * New upstream patch to fix manual editing (Closes: #89939).
+
+ -- Daniel Jacobowitz <dan@debian.org> Sun, 18 Mar 2001 20:40:54 -0500
+
+ncurses (5.2.20010310-2) unstable; urgency=low
+
+ * Update rxvt terminfo entries, based on ncurses and the rxvt source
+ (Closes: #54874).
+ * Provide rxvt-basic as an alias to rxvt-m instead of from a different
+ source.
+ * Provide ncurses-dev, since the kernel packages still suggest it
+ (Closes: #55781).
+
+ -- Daniel Jacobowitz <dan@debian.org> Fri, 16 Mar 2001 17:14:56 -0500
+
+ncurses (5.2.20010310-1) unstable; urgency=low
+
+ * New upstream snapshot.
+ - Fixes compatibility with newer GCC snapshots and with
+ libstdc++ v3 (Closes: #75783, #83336).
+ * Update priorities to match overrides:
+ - dbg: optional -> extra
+ - dev: standard -> optional
+ * Fix dangling /usr/lib/libcurses.so symlink (Closes: #88966).
+ * Tighten version requirement in shlibs file (Closes: #89643).
+ * Remove superflous %| from xterm-xfree86 terminfo
+ in debian/xterm.ti (Closes: #89222).
+
+ -- Daniel Jacobowitz <dan@debian.org> Wed, 14 Mar 2001 17:22:37 -0500
+
+ncurses (5.2-1) unstable; urgency=low
+
+ * New upstream version (Closes: #74749, #75740, #85729).
+ * debian/control.in: Remove dependencies on essential ncurses-base
+ (lintian). Also, don't make libncurses5 depend on itself.
+ * Actually update the Maintainer this time.
+ * Add --enable-const (Closes: #88472, #80410, #62190).
+ * Freshen config.guess/config.sub (Closes: #81879).
+ * Mach terminfo entries available upstream (Closes: #68831).
+ * Add new xterm terminfo entry from XFree86 4.0.2
+ (Closes: #79295, #58850, #72236, #30567, #55146).
+
+ -- Daniel Jacobowitz <dan@debian.org> Tue, 06 Mar 2001 01:07:40 -0500
+
+ncurses (5.0-8) unstable; urgency=high
+
+ * Security upload, fixing several exploitable buffer overflows.
+ * New member of ncurses-maint, unfortunately...
+
+ -- Daniel Jacobowitz <dan@debian.org> Tue, 21 Nov 2000 21:52:34 -0500
+
+ncurses (5.0-7) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * debian/mach-color.ti: Add pairs and op capabilities.
+
+ -- Marcus Brinkmann <brinkmd@debian.org> Tue, 08 Aug 2000 23:08:25 +0200
+
+ncurses (5.0-6) frozen unstable; urgency=low
+
+ * Add signedness patch from Dan Jacobowitz <dan@debian.org>
+ (closes:Bug#56646).
+ * Backout keyboard policy change to xterm-color on recommendation
+ of Branden Robinson <branden@debian.org>.
+
+ -- Joel Klecker <ncurses-maint@debian.org> Tue, 01 Feb 2000 22:57:22 -0800
+
+ncurses (5.0-5) frozen unstable; urgency=low
+
+ * Update xterm.ti from Branden Robinson <branden@debian.org> (closes:Bug#55840).
+ * ncurses-base: Include /usr/share/terminfo/x/xterm-color ->
+ /etc/terminfo/x/xterm-color symlink (closes:Bug#56101,#55619).
+ * debian/rxvt.ti: Remove kf0 due to clash with kf10 (closes:Bug#56086).
+ * Closes:#54523 since ncurses-base is back.
+ * Make xterm-color conform to Debian keyboard policy too (closes:Bug#53871).
+ * Closes:#54140: User is a moron.
+ * Change Maintainer to "Joel Klecker <ncurses-maint@debian.org>".
+
+ -- Joel Klecker <ncurses-maint@debian.org> Wed, 26 Jan 2000 15:18:46 -0800
+
+ncurses (5.0-4) frozen unstable; urgency=low
+
+ * Revive ncurses-base.
+ - Add xterm-* used in fallbacks.
+ - Use --with-terminfo-dirs.
+ * Fix smcup/rmcup entries for xterm (closes:Bug#55146).
+
+ -- Joel Klecker <espy@debian.org> Sun, 16 Jan 2000 19:57:08 -0800
+
+ncurses (5.0-3) unstable; urgency=low
+
+ * Add patch for powerpc from Dan Jacobowitz (dan@debian.org).
+ * debian/rules: Zap --with-gpm.
+
+ -- Joel Klecker <espy@debian.org> Thu, 06 Jan 2000 17:26:59 -0800
+
+ncurses (5.0-2) unstable; urgency=low
+
+ * New maintainer: Debian ncurses Team <ncurses-maint@debian.org>.
+ * Transition plan as requested by Richard Braakman (release manager):
+ - Packages in base that use ncurses MUST be recompiled.
+ - Other packages SHOULD be recompiled.
+ * Hack configure to compile with -fPIC instead of -fpic
+ (aclocal.m4 modified too, but configure can't be regenerated without a
+ specially patched autoconf)
+ * Rename source package back to 'ncurses' (ncurses 4.2 becomes 'ncurses4.2').
+ * Revamp debian/rules.
+ * Use ncurses fallback mechanism, thereby eliminating ncurses-base.
+ - Add new xterm* terminfo from Branden Robinson <branden@debian.org>.
+ * libncurses5-dev:
+ - Include libncurses++ and headers now that upstream installs them.
+ (closes:Bug#42357)
+ - Now depends on libncurses5 (= ${Source-Version) (closes:Bug#35422)
+ - Add devel symlinks for libtermcap for user convenience.
+ - Don't make /usr/include/ncurses symlink anymore.
+ * ncurses-bin:
+ - Move man5 and man7 man pages here (closes:Bug#20291).
+ - Bug #27607 apparently fixed upstream:
+ + modify _nc_set_writedir() to set a flag in _nc_tic_dir() to prevent
+ it from changing the terminfo directory after chdir'ing to it.
+ Otherwise, a relative path in $TERMINFO would confuse tic (from a
+ Debian bug report). (closes:Bug#27067)
+ * ncurses-term: Replaces ncurses-base.
+ - Close silly bug (closes:Bug#49483).
+
+ -- Joel Klecker <espy@debian.org> Tue, 28 Dec 1999 17:10:48 -0800
+
+ncurses5 (5.0-1) unstable; urgency=low
+
+ * Ported the changes made to 4.2 to 5.0
+ * Changed ncurses to ncurses5
+
+ -- Vaidhyanathan G Mayilrangam <vaidhy@debian.org> Mon, 06 Dec 1999 01:16:52 -0500
+
+ncurses (4.2-3.4) unstable; urgency=low
+
+ * Non-maintainer release.
+ * Correct monochrome terminal support (whoops!)
+
+ -- Brent A. Fulgham <bfulgham@debian.org> Wed, 06 Oct 1999 19:45:10 -0700
+
+ncurses (4.2-3.3) unstable; urgency=low
+
+ * Non-maintainer release.
+ * Add Mach terminal support.
+
+ -- Brent A. Fulgham <bfulgham@debian.org> Wed, 22 Sep 1999 20:30:15 -0700
+
+ncurses (4.2-3.2) unstable; urgency=low
+
+ * Non-maintainer release.
+ * Add (>= 4.2-3.1) to shlibs for safer upgrades.
+
+ -- Joel Klecker <espy@debian.org> Thu, 18 Mar 1999 12:07:55 -0800
+
+ncurses (4.2-3.1) unstable; urgency=low
+
+ * Non-maintainer release.
+ * Rebuild for glibc 2.1.
+
+ -- Joel Klecker <espy@debian.org> Tue, 02 Mar 1999 23:25:27 -0800
+
+ncurses (4.2-3) frozen unstable; urgency=low
+
+ * Restored ncurses-intro manuals to libncurses-dev documentation (#?)
+ * Removed empty /usr/bin from libncurses (#29022)
+ * /usr/lib/libncurses.so is no longer a relative symlink (#29679)
+ * Added support for linux-arm into config.guess (#29927)
+
+ -- Galen Hazelwood <galenh@debian.org> Tue, 24 Nov 1998 08:37:09 -0700
+
+ncurses (4.2-2) unstable; urgency=low
+
+ * Add screen entries to ncurses-base conffiles list
+ * Restore examples directory to libncurses4-dev
+ * If TERMINFO_DIRS ends with a colon, search default paths (#27605, #25248)
+ (it was always supposed to do that, but now it actually works)
+ * Debian rxvt now clears screen on rmcup (#22289)
+ * ncurses-term: Added xterm-color symlink to color_xterm (#16804 et al)
+
+ -- Galen Hazelwood <galenh@debian.org> Fri, 09 Oct 1998 16:04:22 -0600
+
+ncurses (4.2-1) unstable; urgency=low
+
+ * First release of new ncurses into main distribution
+ * Integrated jdassen's remake of debian/rules, now uses debhelper
+ * Updated security patches
+
+ -- Galen Hazelwood <galenh@debian.org> Mon, 05 Oct 1998 08:15:53 -0600
+
+ncurses (4.2-0) experimental; urgency=low
+
+ * Experimental (lightly tested, known problems) build of new ncurses
+ * -pic package dropped (no longer needed)
+
+ -- Galen Hazelwood <galenh@debian.org> Mon, 21 Sep 1998 14:44:09 -0600
+
+ncurses (1.9.9g-8.10) stable unstable; urgency=high
+
+ * Rebuilt so that dialog and sc do not coredump.
+
+ -- Santiago Vila <sanvila@ctv.es> Wed, 09 Sep 1998 13:28:02 +0200
+
+ncurses (1.9.9g-8.9.1) stable; urgency=high (security fix)
+
+ * Previous upload got rejected. Set distribution to "stable" instead of
+ "hamm-updates".
+
+ -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Wed, 29 Jul 1998 14:22:50 +0200
+
+ncurses (1.9.9g-8.9) hamm-updates; urgency=high (security fix)
+
+ * [ncurses/{read_termcap,read_entry}.c] Security fix for setuid operation:
+ switch to user's priviledges on file operations.
+ (based on ncurses-1.9.9e-setuid.patch courtesy of Red Hat).
+
+ -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sun, 26 Jul 1998 16:53:38 +0200
+
+ncurses (1.9.9g-8.8) frozen unstable; urgency=low
+
+ * Non-maintainer upload.
+ * The debugging version in ncurses3.4-dbg was not actually compiled with -g.
+ This makes it rather unuseful. It's due to an error in the configure.in,
+ which refers to variables ac_cv_prog_gcc_g and ac_cv_prog_gxx_g to check
+ if "-O2 -g" is supported. This should be ac_cv_prog_cc_g and
+ ac_cv_prog_cxx_g instead. Fixed.
+ * debian/xterm.ti had a "blink@" entry for the xterm terminal, which
+ cancels the blink capability ("mb"). Since it has no "use" line,
+ the use resolver is never called for it, which leaves the "CANCEL"
+ value in the compiled info for xterm.
+ tgetstr() does not check for cancelled values, so it returns the
+ CANCELLED_STRING value which is not a valid pointer.
+ Fixed by having tgetstr() return NULL for cancelled values.
+ This fixes the bug that causes screen to crash in an xterm (bug#23998).
+
+ -- Richard Braakman <dark@xs4all.nl> Fri, 17 Jul 1998 12:37:49 +0200
+
+ncurses (1.9.9g-8.7) frozen unstable; urgency=low
+
+ * For reasons that I don't understand, using ncurses3.4 >= 1.9.9g-8.1 with
+ ncurses3.4-dev 1.9.9g-8.6 causes lxdialog (kernel's make menuconfig)
+ to segfault. Changed the dependency to >= Source-Version. (Fixes
+ release-critical #24392).
+ * More manpages fixes (Fixes #24400):
+ * [aclocal.m4] Rewrote the manpages fixing code somewhat so that
+ references like "\fBcurses\fR(3X), " get handled correctly
+ * [man/curs_termcap.3x] Minor changes, so that references get translated
+ properly.
+ * [man/man_db.renames] Added terminfo.\*n and curs_terminfo.\*n .
+
+ -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sat, 11 Jul 1998 16:28:21 +0200
+
+ncurses (1.9.9g-8.6) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * debian/rules (binary-arch): install new xterm and xterm-debian
+ terminfos provided by Branden Robinson <branden@purdue.edu>.
+
+ -- James Troup <jjtroup@comp.brad.ac.uk> Tue, 23 Jun 1998 21:32:02 +0200
+
+ncurses (1.9.9g-8.5) frozen unstable; urgency=high
+
+ * *sigh* -8.4 had several problematic leftovers from debugging in it:
+ * - built with assertions and without _REENTRANT .
+ - wrong fix in the library code. (this broke "screen").
+ * Despite the bad karma with -8.4, I still feel strongly that this should
+ go into frozen, due to the amount and severity of the bugs it fixes.
+
+ -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Mon, 25 May 1998 15:56:36 +0200
+
+ncurses (1.9.9g-8.4) frozen unstable; urgency=high (fixes coredumps and makes documentation usable)
+
+ * [progs/tput.c] Corrected the handling of error returns from setupterm()
+ (to the way ncurses 4.2 does it).
+ Fixes the "tput dumps core on unknown TERM" bug. (Fixes #5600).
+ * [progs/toe.c] Set pointers to NULL after free-ing (like ncurses 4.2
+ does) This fixes the "toe segfaults on megatek" bug. (Fixes #22280).
+ * Fixed manpages and their cross-references:
+ (Fixes #2806, #5363, #6822, #7889, #9977, #15120, #15637, #15088,
+ #10064, #18669).
+ * [aclocal.m4] Fixed the generation of the manpage transformation sed
+ script so that it also transforms references like
+ \fBcurs_refresh\fR(3X) . Warning: attempts to understand this code may
+ cause psychological trauma due to exposure to quoting hell.
+ * [man/{curs_bkgd,resizeterm,wresize}.3x] Removed otherwise empty "."
+ lines between .TH and .SH lines which caused whatis parse to fail.
+ * [debian/rules, debian/routines.pl] Added links for the ncurses and form
+ routines to the appropriate manpages.
+ * Include tutorial (misc/ncurses-intro.{doc,html) in the development package.
+ * [misc/ncurses-intro.doc] Corrected umlaut in Juergen's first name.
+
+ -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sun, 24 May 1998 17:21:22 +0200
+
+ncurses (1.9.9g-8.3) frozen unstable; urgency=low
+
+ * Non-maintainer upload.
+ * The fix wrt "bool" introduced in -8.1 causes problems when a >= -8.1
+ -dev package is used with a < -8.1 runtime package.
+ Added (>= 1.9.9g-8.1) to Depends: ncurses3.4 to prevent this situation
+ from reoccuring (Fixes #22475).
+
+ -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sat, 16 May 1998 13:08:04 +0200
+
+ncurses (1.9.9g-8.2) frozen unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Fixes the overlap between hamm/ncurses3.4-dbg 1.9.9g-8 and
+ bo/ncurses3.0-dev 1.9.9e-1 (usr/lib/lib{form,menu,ncurses,panel}_g.a)
+ which Richard Braakman reported on debian-devel; used "Replaces:"
+ rather than "Conflicts:" (there is an implicit conflict already).
+
+ -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Wed, 13 May 1998 18:40:28 +0200
+
+ncurses (1.9.9g-8.1) frozen unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Added a new xterm terminfo entry: kbs changed from ^H to \177
+ and kdch1 from \177 to \E[3~ (per policy) (addresses part of #21914).
+ * Make /usr/lib/libn?curses.so absolute rather than symbolic links
+ (as per policy) (fixes #21913).
+ * aclocal.m4: Invoke gzip with '-9'.
+ * Generated "configure" with up to date autoconf; the old configure needed
+ libg++-dev (the test for handling of type bool used <builtin.h>). Thus,
+ "bool" is properly detected (fixes #20534, #17763).
+ * Updated shlibs to >= this version, just in case the bool issue affects
+ compatibility.
+ * Fixed some file/directory permissions.
+
+ -- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Fri, 08 May 1998 08:46:23 +0200
+
+ncurses (1.9.9g-8) unstable; urgency=low
+
+ * Hacked LD_LIBRARY_PATH in rules (#16203)
+ * New rxvt entry (#16363, #16430, #17457, #17676)
+ * New screen entry (#17675)
+
+ -- Galen Hazelwood <galenh@micron.net> Sun, 01 Feb 1998 14:42:07 -0700
+
+ncurses (1.9.9g-7) unstable; urgency=low
+
+ * Updated rxvt entry yet again, should fix everything (#10206)
+ * Made all symlinks into /etc/terminfo absolute (#15313)
+ * Fixed problem invoking tic on ncursesless systems (#15781)
+ * No longer install shared libraries executable (#15479)
+
+ -- Galen Hazelwood <galenh@micron.net> Sat, 13 Dec 1997 10:41:42 -0700
+
+ncurses (1.9.9g-6) unstable; urgency=low
+
+ * Munged rxvt entry a bit more (#13996)
+ * kterm entry inherits from older xterm now (#14726)
+ * Removed ich(1) from linux, screen, vt320 (#15127)
+
+ -- Galen Hazelwood <galenh@micron.net> Wed, 26 Nov 1997 12:23:49 -0700
+
+ncurses (1.9.9g-5) unstable; urgency=low
+
+ * Changed khome and kend on xterm (#13362, #6100)
+ * Made all critical terminfo entries conffiles (#13439)
+ * Added config.h to examples directory (#13454)
+ * Patched lib_termcap to handle long id strings (#10588)
+
+ -- Galen Hazelwood <galenh@micron.net> Sun, 12 Oct 1997 11:46:20 -0600
+
+ncurses (1.9.9g-4) unstable; urgency=low
+
+ * Removed bogus examples Makefile (#12543)
+ * Replaced broken rxvt entry (#13171, #13321)
+ * Removed broken xterm-color symlink, and no longer mention it in
+ ncurses-base description
+ * Updated to standard 2.3.0.0
+
+ -- Galen Hazelwood <galenh@micron.net> Wed, 24 Sep 1997 20:55:03 -0600
+
+ncurses (1.9.9g-3) unstable; urgency=low
+
+ * Moved changelog to changelog.Debian (#10757)
+ * Hacked ncurses manpage to warn about inadequate terminals (#1314)
+ * Put ncurses.h back in -dev package
+ * Updated terminfo database from 9.13.22 to 9.13.25
+ * Removed reference to nonexistant utility from tic manpage (#3829)
+ * Hacked aclocal.m4 to support library dependencies
+ * Updated to standard 2.2.0.0
+
+ -- Galen Hazelwood <galenh@micron.net> Thu, 17 Jul 1997 16:52:58 -0600
+
+ncurses (1.9.9g-2) unstable; urgency=low
+
+ * Fixed /etc/terminfo directory support (#10572, #10577)
+ * Fixed symlink loss problem (#10552)
+
+ -- Galen Hazelwood <galenh@micron.net> Sun, 15 Jun 1997 10:38:49 -0600
+
+ncurses (1.9.9g-1) unstable; urgency=low
+
+ * New maintainer
+ * New upstream version (fixes #9219)
+ * Built with libc6
+ * Libraries compiled with -D_REENTRANT
+ * Quick fix for termcap emulation (fixes #1045)
+ * Linked reset manpage to tset manpage (fixes #3192, #8187, #9921)
+ * Library package no longer "Essential" (fixes #3801)
+
+ -- Galen Hazelwood <galen@micron.net> Thu, 12 Jun 1997 12:18:34 -0600
diff --git a/debian/changelog.old b/debian/changelog.old
new file mode 100644
index 0000000..aa0640c
--- /dev/null
+++ b/debian/changelog.old
@@ -0,0 +1,41 @@
+ncurses (4.1-1) unstable; urgency=low
+
+ * New upstream version. Removed deb-files.
+
+ -- Michael Alan Dorman <mdorman@lot49.med.miami.edu> Wed, 7 May 1997 16:39:28 -0400
+
+ncurses (4.0-1) unstable; urgency=high
+
+ * Upgrade to 4.0, which syncronizes the ABI and version numbers (and
+ goes to a major-only ABI number, which is more like other packages).
+ * Ditched use of dpkg-shlibdeps for the moment---I feel more confident
+ of my ability to maintain the dependencies by hand.
+
+ -- Michael Alan Dorman <mdorman@calder.med.miami.edu> Fri, 27 Dec 1996 09:24:47 -0500
+
+ncurses (1.9.9g-3) unstable; urgency=low
+
+ * Upgrade to 1.9.9g final release
+ * Remove xterm-color from -base, since default xterm is now color
+
+ -- Michael Alan Dorman <mdorman@calder.med.miami.edu> Mon, 16 Dec 1996 14:06:49 -0500
+
+ncurses (1.9.9g-2) unstable; urgency=low
+
+ * Upgraded to latest (11/20) snapshot
+ * New soname, so new lib names
+
+ -- Michael Alan Dorman <mdorman@calder.med.miami.edu> Mon, 16 Dec 1996 13:28:51 -0500
+
+ncurses (1.9.9g-1) unstable; urgency=low
+
+ * Upgraded to latest upstream snapshot
+ * New soname, so new lib names.
+
+ -- Michael Alan Dorman <mdorman@calder.med.miami.edu> Sun, 22 Sep 1996 14:32:56 -0400
+
+ncurses (1.9.9e-3) unstable; urgency=low
+
+ * Moved to new source packaging format.
+
+ -- Michael Alan Dorman <mdorman@calder.med.miami.edu> Thu, 12 Sep 1996 15:19:35 -0400
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..3846cd8
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,389 @@
+Source: ncurses
+Section: libs
+Priority: required
+Maintainer: Craig Small <csmall@debian.org>
+Uploaders: Sven Joachim <svenjoac@gmx.de>
+Build-Depends: debhelper-compat (= 12),
+ libgpm-dev [linux-any],
+ pkg-config,
+ autoconf-dickey (>= 2.52+20170501),
+Build-Depends-Arch: g++-multilib [amd64 i386 powerpc ppc64 s390 sparc] <!nobiarch>
+Standards-Version: 4.4.1
+Rules-Requires-Root: no
+Vcs-Browser: https://salsa.debian.org/debian/ncurses
+Vcs-Git: https://salsa.debian.org/debian/ncurses.git
+Homepage: https://invisible-island.net/ncurses/
+
+Package: libtinfo6
+Architecture: any
+Priority: optional
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: shared low-level terminfo library for terminal handling
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the shared low-level terminfo library.
+
+Package: libtinfo6-udeb
+Package-Type: udeb
+Section: debian-installer
+Architecture: any
+Priority: optional
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Build-Profiles: <!noudeb>
+Description: shared low-level terminfo library for terminal handling - udeb
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the stripped-down udeb version of shared low-level
+ terminfo library.
+
+Package: libncurses6
+Architecture: any
+Priority: optional
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Depends: libtinfo6 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Recommends: libgpm2 [linux-any]
+Description: shared libraries for terminal handling
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the shared libraries necessary to run programs
+ compiled with ncurses.
+
+Package: libncurses-dev
+Architecture: any
+Section: libdevel
+Priority: optional
+Multi-Arch: same
+Depends: libtinfo6 (= ${binary:Version}), libncurses6 (= ${binary:Version}),
+ libncursesw6 (= ${binary:Version}), libc6-dev | libc-dev, ${misc:Depends},
+ ncurses-bin (>= 6.0+20151017)
+Conflicts: ncurses-dev
+Replaces: ncurses-dev, libncurses5-dev (<< 6.1+20180210),
+ libncursesw5-dev (<< 6.1+20180210), libtinfo-dev (<< 6.1+20180210),
+ ncurses-bin (<< 6.0+20151017)
+Provides: libncurses5-dev, libncursesw5-dev, libtinfo-dev, ncurses-dev
+Breaks: libncurses5-dev (<< 6.1+20180210), libncursesw5-dev (<< 6.1+20180210),
+ libtinfo-dev (<< 6.1+20180210)
+Suggests: ncurses-doc
+Description: developer's libraries for ncurses
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the header files, static libraries
+ and symbolic links that developers using ncurses will need.
+
+Package: libtinfo-dev
+Architecture: any
+Section: oldlibs
+Priority: optional
+Multi-Arch: same
+Depends: libtinfo6 (= ${binary:Version}), libncurses-dev (= ${binary:Version}),
+ ${misc:Depends}
+Description: transitional package for libncurses-dev
+ This is a transitional package that can safely be removed.
+
+Package: libncurses5-dev
+Architecture: any
+Section: oldlibs
+Priority: optional
+Multi-Arch: same
+Depends: libtinfo6 (= ${binary:Version}), libncurses-dev (= ${binary:Version}),
+ ${misc:Depends}
+Description: transitional package for libncurses-dev
+ This is a transitional package that can safely be removed.
+
+Package: libncursesw6
+Architecture: any
+Priority: optional
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Depends: libtinfo6 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Recommends: libgpm2 [linux-any]
+Description: shared libraries for terminal handling (wide character support)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the shared libraries necessary to run programs
+ compiled with ncursesw, which includes support for wide characters.
+
+Package: libncursesw5-dev
+Architecture: any
+Section: oldlibs
+Priority: optional
+Multi-Arch: same
+Depends: libtinfo6 (= ${binary:Version}), libncurses-dev (= ${binary:Version}),
+ ${misc:Depends}
+Description: transitional package for libncurses-dev
+ This is a transitional package that can safely be removed.
+
+Package: lib64tinfo6
+Architecture: i386 powerpc sparc s390
+Priority: optional
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Build-Profiles: <!nobiarch>
+Description: shared low-level terminfo library for terminal handling (64-bit)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the shared low-level terminfo library.
+ .
+ This package supports the 64-bit ABI variant of your system's architecture.
+
+Package: lib64ncurses6
+Architecture: i386 powerpc sparc s390
+Priority: optional
+Depends: lib64tinfo6 (= ${binary:Version}),
+ ${shlibs:Depends}, ${misc:Depends}
+Build-Profiles: <!nobiarch>
+Description: shared libraries for terminal handling (64-bit)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the shared libraries necessary to run programs
+ compiled with ncurses.
+ .
+ This package supports the 64-bit ABI variant of your system's
+ architecture.
+
+Package: lib64ncursesw6
+Architecture: i386 powerpc sparc s390
+Priority: optional
+Depends: lib64tinfo6 (= ${binary:Version}),
+ ${shlibs:Depends}, ${misc:Depends}
+Build-Profiles: <!nobiarch>
+Description: shared libraries for terminal handling (wide character support) (64-bit)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the shared libraries necessary to run programs
+ compiled with ncursesw, which includes support for wide characters.
+ .
+ This package supports the 64-bit ABI variant of your system's
+ architecture.
+
+Package: lib64ncurses-dev
+Architecture: i386 powerpc sparc s390
+Section: libdevel
+Priority: optional
+Depends: lib64ncurses6 (= ${binary:Version}),
+ lib64ncursesw6 (= ${binary:Version}),
+ lib64tinfo6 (= ${binary:Version}),
+ libncurses-dev (= ${binary:Version}), lib64c-dev, ${misc:Depends}
+Suggests: ncurses-doc
+Replaces: amd64-libs-dev (<= 1.2), lib64ncurses5-dev
+Conflicts: lib64ncurses5-dev
+Provides: lib64ncurses5-dev
+Build-Profiles: <!nobiarch>
+Description: developer's libraries for ncurses (64-bit)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the header files, static libraries
+ and symbolic links that developers using ncurses will need.
+ .
+ This package supports the 64-bit ABI variant of your system's
+ architecture.
+
+Package: lib32tinfo6
+Architecture: amd64 ppc64
+Priority: optional
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Build-Profiles: <!nobiarch>
+Description: shared low-level terminfo library for terminal handling (32-bit)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the shared low-level terminfo library.
+ .
+ This package supports the 32-bit ABI variant of your system's architecture.
+
+Package: lib32ncurses6
+Architecture: amd64 ppc64
+Priority: optional
+Depends: lib32tinfo6 (= ${binary:Version}),
+ ${shlibs:Depends}, ${misc:Depends}
+Build-Profiles: <!nobiarch>
+Description: shared libraries for terminal handling (32-bit)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the shared libraries necessary to run programs
+ compiled with ncurses.
+ .
+ This package supports the 32-bit ABI variant of your system's
+ architecture.
+
+Package: lib32ncursesw6
+Architecture: amd64 ppc64
+Priority: optional
+Depends: lib32tinfo6 (= ${binary:Version}),
+ ${shlibs:Depends}, ${misc:Depends}
+Build-Profiles: <!nobiarch>
+Description: shared libraries for terminal handling (wide character support) (32-bit)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the shared libraries necessary to run programs
+ compiled with ncursesw, which includes support for wide characters.
+ .
+ This package supports the 32-bit ABI variant of your system's
+ architecture.
+
+Package: lib32ncurses-dev
+Architecture: amd64 ppc64
+Section: libdevel
+Priority: optional
+Depends: lib32ncurses6 (= ${binary:Version}),
+ lib32ncursesw6 (= ${binary:Version}),
+ lib32tinfo6 (= ${binary:Version}),
+ libncurses-dev (= ${binary:Version}), lib32c-dev, ${misc:Depends}
+Suggests: ncurses-doc
+Replaces: lib32ncurses5-dev, lib32ncursesw5-dev, lib32tinfo-dev
+Conflicts: lib32ncurses5-dev, lib32ncursesw5-dev, lib32tinfo-dev
+Provides: lib32ncurses5-dev, lib32ncursesw5-dev, lib32tinfo-dev
+Build-Profiles: <!nobiarch>
+Description: developer's libraries for ncurses (32-bit)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the header files, static libraries
+ and symbolic links that developers using ncurses will need.
+ .
+ This package supports the 32-bit ABI variant of your system's
+ architecture.
+
+Package: ncurses-bin
+Architecture: any
+Section: utils
+Essential: yes
+Pre-Depends: ${shlibs:Depends}, ${misc:Depends}
+Multi-Arch: foreign
+Description: terminal-related programs and man pages
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the programs used for manipulating the terminfo
+ database and individual terminfo entries, as well as some programs for
+ resetting terminals and such.
+
+Package: ncurses-base
+Architecture: all
+Section: misc
+Essential: yes
+Multi-Arch: foreign
+Depends: ${misc:Depends}
+Provides: ncurses-runtime
+Breaks: libtinfo5 (<< 6.1), libslang2 (<< 2.3.1a-3), libunibilium0 (<< 2),
+ libunibilium4 (<< 2.0.0-3), bash-static (<< 4.4.18-1.1),
+ zsh-static (<< 5.4.2-4), libmono-corlib4.5-cil (<< 4.6.2.7+dfsg-2)
+Description: basic terminal type definitions
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains terminfo data files to support the most common types of
+ terminal, including ansi, dumb, linux, rxvt, screen, sun, vt100, vt102, vt220,
+ vt52, and xterm.
+
+Package: ncurses-term
+Architecture: all
+Section: misc
+Priority: standard
+Multi-Arch: foreign
+Depends: ncurses-base (>= 6.1+20190713), ${misc:Depends}
+Replaces: suckless-tools (<< 39), dvtm (<< 0.15-3), alacritty (<< 0.3.4~)
+Breaks: libtinfo5 (<< 6.1), libslang2 (<< 2.3.1a-3), libunibilium0 (<< 2),
+ libunibilium4 (<< 2.0.0-3), bash-static (<< 4.4.18-1.1),
+ zsh-static (<< 5.4.2-4), libmono-corlib4.5-cil (<< 4.6.2.7+dfsg-2),
+ suckless-tools (<< 39), dvtm (<< 0.15-3)
+Description: additional terminal type definitions
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains all of the numerous terminal definitions not found in
+ the ncurses-base package.
+
+Package: ncurses-examples
+Architecture: any
+Section: misc
+Priority: optional
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Build-Profiles: <!pkg.ncurses.noexamples>
+Description: test programs and examples for ncurses
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains programs demonstrating the possibilities of
+ ncurses and testing the library. The examples include an
+ analog/digital clock and several classic programs such as solitaire,
+ battleships, a knight's tour on a chess board, the towers of Hanoi
+ and several others.
+
+Package: ncurses-doc
+Architecture: all
+Section: doc
+Priority: optional
+Multi-Arch: foreign
+Depends: ${misc:Depends}
+Description: developer's guide and documentation for ncurses
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains an introduction to writing programs with
+ ncurses a guide to the internals of the ncurses library. It also
+ includes the libraries' man pages.
+ .
+ Non-developers likely have little use for this package.
+
+Package: libtinfo5
+Architecture: any
+Section: oldlibs
+Priority: optional
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Breaks: dialog (<< 1.2-20130523)
+Build-Profiles: <!pkg.ncurses.nolegacy>
+Description: shared low-level terminfo library (legacy version)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the legacy version of the shared low-level
+ terminfo library.
+
+Package: libncurses5
+Architecture: any
+Section: oldlibs
+Priority: optional
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Depends: libtinfo5 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Recommends: libgpm2 [linux-any]
+Build-Profiles: <!pkg.ncurses.nolegacy>
+Description: shared libraries for terminal handling (legacy version)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the legacy shared libraries necessary to run
+ programs compiled with ncurses.
+
+Package: libncursesw5
+Architecture: any
+Section: oldlibs
+Priority: optional
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Depends: libtinfo5 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Recommends: libgpm2 [linux-any]
+Build-Profiles: <!pkg.ncurses.nolegacy>
+Description: shared libraries for terminal handling (wide character legacy version)
+ The ncurses library routines are a terminal-independent method of
+ updating character screens with reasonable optimization.
+ .
+ This package contains the legacy shared libraries necessary to run
+ programs compiled with ncursesw, which includes support for wide
+ characters.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..a256dc8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,127 @@
+This is the Debian prepackaged version of the ncurses
+library and terminfo utilities. ncurses/terminfo was originally written
+by Pavel Curtis and Zeyd M. Ben-Halim <zmbenhal@netcom.com>, and is
+currently held by the Free Software Foundation.
+
+This package was put together by Vaidhyanathan G Mayilrangam
+<vaidhy@debian.org> and Joel Klecker <espy@debian.org>, using sources
+obtained from ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.0.tar.gz.
+Current versions of the ncurses sources are found at
+ftp://invisible-island.net/ncurses/.
+
+It is based somewhat on work done by Bruce Perens <Bruce@Pixar.com>,
+David Engel <david@elo.ods.com>. Michael Alan Dorman
+<mdorman@debian.org>, Richard Braakman <dark@xs4all.nl>, James Troup
+<jjtroup@comp.brad.ac.uk>, J.H.M. Dassen (Ray)
+<jdassen@wi.LeidenUniv.nl>, and Galen Hazelwood <galenh@micron.net>
+over various years.
+
+
+Copyright (c) 1998-2019 Free Software Foundation, Inc.
+Copyright © 2001 by Pradeep Padala
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, distribute with modifications, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
+THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name(s) of the above copyright
+holders shall not be used in advertising or otherwise to promote the
+sale, use or other dealings in this Software without prior written
+authorization.
+
+
+Copyright (C) 1994 X Consortium
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
+TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of the X Consortium shall not
+be used in advertising or otherwise to promote the sale, use or other deal-
+ings in this Software without prior written authorization from the X Consor-
+tium.
+
+
+Copyright (c) 1980, 1991, 1992, 1993
+ The Regents of the University of California. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+3. Neither the name of the University nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGE.
+
+
+Copyright 1996-2019 by Thomas E. Dickey
+
+ All Rights Reserved
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name(s) of the above copyright
+holders shall not be used in advertising or otherwise to promote the
+sale, use or other dealings in this Software without prior written
+authorization.
diff --git a/debian/gitlab-ci.yml b/debian/gitlab-ci.yml
new file mode 100644
index 0000000..0c22dc4
--- /dev/null
+++ b/debian/gitlab-ci.yml
@@ -0,0 +1,3 @@
+include:
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
diff --git a/debian/hurd.ti b/debian/hurd.ti
new file mode 100644
index 0000000..f5c8650
--- /dev/null
+++ b/debian/hurd.ti
@@ -0,0 +1,162 @@
+hurd|The GNU Hurd console server,
+# Over-all properties.
+# We use 8-bit characters
+ km,
+# Although we don't do XON/XOFF, we don't want padding characters.
+ xon,
+# Hard reset.
+ rs1=\EM,
+
+# Cursor related capabilities.
+
+# Moving the cursor.
+# We have automatic margins.
+ am,
+# We wrap around the left edge.
+ bw,
+# We ignore \n at end of line
+ xenl,
+# Carriage return and newline.
+ cr=^M, nel=^M^J,
+# Move cursor to home position (to position P1, P2).
+ home=\E[H, cup=\E[%i%p1%d;%p2%dH,
+# Move cursor one character (P1 characters) backwards.
+# We use ^H instead \E[D for cub1, as only ^H implements <bw> and it
+# is one byte instead three.
+ cub1=^H, cub=\E[%p1%dD,
+# Move cursor one line (P1 lines) downwards.
+ cud1=\E[B, cud=\E[%p1%dB,
+# Move cursor one character (P1 characters) forwards.
+ cuf1=\E[C, cuf=\E[%p1%dC,
+# Move cursor one line (P1 lines) upwards.
+ cuu1=\E[A, cuu=\E[%p1%dA,
+# Set horizontal (vertical) cursor position to P1.
+ hpa=\E[%i%p1%dG, vpa=\E[%i%p1%dd,
+# Save (restore) cursor position.
+ sc=\E7, rc=\E8,
+# Set the scrolling region to lines P1 to P2.
+ csr=\E[%i%p1%d;%p2%dr,
+
+# Modifying cursor attributes.
+# Make cursor invisible, very visible or normal.
+ civis=\E[?25l, cvvis=\E[34l, cnorm=\E[?25h,
+
+# Tabulator stops.
+# We have tabulator stops every eight rows.
+ it#8,
+# Move cursor to next tabulator stop.
+ ht=^I,
+# Move cursor to previous tabulator stop.
+ cbt=\E[Z,
+# XXX When we implement this.
+# Set tab stop in the current column of every row.
+# hts=\EH,
+# Delete all tab stops.
+# tbc=\E[3g,
+
+
+# Screen editing capabilities.
+# Clear screen.
+ clear=\Ec,
+# Clear to end of screen.
+ ed=\E[J,
+# Clear to end (beginning) of line.
+ el=\E[K, el1=\E[1K,
+
+# Insert one character (P1 characters).
+# <ich1> not included because we have insert mode.
+# ich1=\E[@,
+ ich=\E[%p1%d@,
+# Enter (leave) insert mode.
+ smir=\E[4h, rmir=\E[4l,
+# It is save to move when in insert mode.
+ mir,
+# Delete one character (P1 characters).
+ dch1=\E[P, dch=\E[%p1%dP,
+# Erase the next N characters.
+ ech=\E[%p1%dX,
+# Insert one line (P1 lines).
+ il1=\E[L, il=\E[%p1%dL,
+# Delete one line (P1 lines).
+ dl1=\E[M, dl=\E[%p1%dM,
+# Scroll the whole screen one line (P1 lines) upwards. We don't use
+# ^J, because this could put things into the scrollback buffer.
+ ind=\E[S, indn=\E[%p1%dS,
+# Scroll the whole screen one line (P1 lines) downwards.
+ rin=\E[%p1%dT, ri=\E[T,
+
+
+# Bell capabilities.
+# Audible bell.
+ bel=^G,
+# Flash the screen (visible bell).
+ flash=\Eg,
+
+
+# Keycodes for special keys.
+# Backspace key.
+ kbs=\177,
+# Keycode for left, down, right and up arrow key.
+ kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA,
+# Keycodes for function keys.
+ kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\E[15~,
+ kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~,
+ kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[25~,
+ kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, kf17=\E[31~,
+ kf18=\E[32~, kf19=\E[33~, kf20=\E[34~,
+# Keycode for backtab key.
+ kcbt=\E[Z,
+# Keycode for suspend key.
+ kspd=^Z,
+# Keycode for home (insert, delete, end) key.
+ khome=\E[1~, kich1=\E[2~, kdch1=\E[3~, kend=\E[4~,
+# Keycode for previous (next) page key.
+ kpp=\E[5~, knp=\E[6~,
+# Keycode for center of keypad area.
+ kb2=\E[G,
+# Mouse event has occurred.
+ kmous=\E[M,
+
+# Text attribute capabilities.
+ acsc=++\,\,--..00ii``aaffgghhjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~,
+
+# Color support.
+# We erase the screen with the current background color.
+ bce,
+# Number of colors and color pairs at the same time.
+ colors#8,
+ pairs#64,
+# Video attributes colliding with color.
+# ORed: A_STANDOUT 1, A_UNDERLINE 2, A_REVERSE 4, A_BLINK 8, A_DIM 16,
+# A_BOLD 32, A_INVIS 64
+# We don't define this as we do our own display optimization,
+# depending on the display driver. Alternatively, we could provide
+# different terminfo entries.
+# ncv#18,
+# Set background (foreground) color.
+ setab=\E[4%p1%dm, setaf=\E[3%p1%dm,
+# Set default color pair to its original value.
+ op=\E[39;49m,
+
+# Video attributes.
+# Overstrikes are erasable with a blank.
+ eo,
+# It is save to move when in standout mode.
+ msgr,
+# Enable dim (blinking, bold, invisible, reverse) attribute.
+ dim=\E[2m, blink=\E[5m, bold=\E[1m, invis=\E[8m, rev=\E[7m,
+# Enable (disable) standout mode.
+ smso=\E[7m, rmso=\E[27m,
+# Enable (disable) underline mode.
+ smul=\E[4m, rmul=\E[24m,
+# Enable (disable) italic mode.
+ sitm=\E[3m, ritm=\E[23m,
+# Enable (disable) real bold (not intensity bright) mode. This is a
+# GNU extension.
+ gsbom=\E[>1h, grbom=\E[>1l,
+# Enable (disable) alternative character set.
+ smacs=\E[11m, rmacs=\E[10m,
+# Set all attributes.
+ sgr=\E[0%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;%?%p9%t;11%;m,
+# Reset all attributes.
+ sgr0=\E[0m,
diff --git a/debian/lib32ncurses-dev.install b/debian/lib32ncurses-dev.install
new file mode 100644
index 0000000..01523df
--- /dev/null
+++ b/debian/lib32ncurses-dev.install
@@ -0,0 +1,23 @@
+usr/lib32/libncurses.so
+usr/lib32/libncursesw.so
+obj-32/lib/libtic.so usr/lib32
+obj-32/lib/libform.so usr/lib32
+obj-32/lib/libmenu.so usr/lib32
+obj-32/lib/libpanel.so usr/lib32
+obj-32/lib/libtinfo.so usr/lib32
+obj-32/lib/libncurses.a usr/lib32
+obj-32/lib/libncurses++.a usr/lib32
+obj-32/lib/libtic.a usr/lib32
+obj-32/lib/libform.a usr/lib32
+obj-32/lib/libmenu.a usr/lib32
+obj-32/lib/libpanel.a usr/lib32
+obj-32/lib/libtinfo.a usr/lib32
+obj-wide-32/lib/libformw.so usr/lib32
+obj-wide-32/lib/libmenuw.so usr/lib32
+obj-wide-32/lib/libpanelw.so usr/lib32
+obj-wide-32/lib/libncursesw.a usr/lib32
+obj-wide-32/lib/libncurses++w.a usr/lib32
+obj-wide-32/lib/libformw.a usr/lib32
+obj-wide-32/lib/libmenuw.a usr/lib32
+obj-wide-32/lib/libpanelw.a usr/lib32
+debian/libtermcap.so usr/lib32
diff --git a/debian/lib32ncurses-dev.links b/debian/lib32ncurses-dev.links
new file mode 100644
index 0000000..703e327
--- /dev/null
+++ b/debian/lib32ncurses-dev.links
@@ -0,0 +1,4 @@
+lib32/libtinfo.so.6 usr/lib32/libtinfo.so
+usr/lib32/libncurses.so usr/lib32/libcurses.so
+usr/lib32/libncurses.a usr/lib32/libcurses.a
+usr/lib32/libtinfo.a usr/lib32/libtermcap.a
diff --git a/debian/lib32ncurses6.install b/debian/lib32ncurses6.install
new file mode 100644
index 0000000..4a09ae8
--- /dev/null
+++ b/debian/lib32ncurses6.install
@@ -0,0 +1,4 @@
+obj-32/lib/libncurses.so.* lib32
+obj-32/lib/libpanel.so.* usr/lib32
+obj-32/lib/libform.so.* usr/lib32
+obj-32/lib/libmenu.so.* usr/lib32
diff --git a/debian/lib32ncurses6.symbols b/debian/lib32ncurses6.symbols
new file mode 120000
index 0000000..3234ae3
--- /dev/null
+++ b/debian/lib32ncurses6.symbols
@@ -0,0 +1 @@
+libncurses6.symbols \ No newline at end of file
diff --git a/debian/lib32ncursesw6.install b/debian/lib32ncursesw6.install
new file mode 100644
index 0000000..77ed067
--- /dev/null
+++ b/debian/lib32ncursesw6.install
@@ -0,0 +1,4 @@
+obj-wide-32/lib/libncursesw.so.* lib32
+obj-wide-32/lib/libpanelw.so.* usr/lib32
+obj-wide-32/lib/libformw.so.* usr/lib32
+obj-wide-32/lib/libmenuw.so.* usr/lib32
diff --git a/debian/lib32ncursesw6.symbols b/debian/lib32ncursesw6.symbols
new file mode 120000
index 0000000..4a8525d
--- /dev/null
+++ b/debian/lib32ncursesw6.symbols
@@ -0,0 +1 @@
+libncursesw6.symbols \ No newline at end of file
diff --git a/debian/lib32tinfo6.install b/debian/lib32tinfo6.install
new file mode 100644
index 0000000..60d3bb9
--- /dev/null
+++ b/debian/lib32tinfo6.install
@@ -0,0 +1,2 @@
+obj-wide-32/lib/libtinfo.so.* lib32
+obj-wide-32/lib/libtic.so.* usr/lib32
diff --git a/debian/lib32tinfo6.symbols b/debian/lib32tinfo6.symbols
new file mode 120000
index 0000000..e435a0f
--- /dev/null
+++ b/debian/lib32tinfo6.symbols
@@ -0,0 +1 @@
+libtinfo6.symbols \ No newline at end of file
diff --git a/debian/lib64ncurses-dev.install b/debian/lib64ncurses-dev.install
new file mode 100644
index 0000000..aeb410a
--- /dev/null
+++ b/debian/lib64ncurses-dev.install
@@ -0,0 +1,23 @@
+usr/lib64/libncurses.so
+usr/lib64/libncursesw.so
+obj-64/lib/libtic.so usr/lib64
+obj-64/lib/libform.so usr/lib64
+obj-64/lib/libmenu.so usr/lib64
+obj-64/lib/libpanel.so usr/lib64
+obj-64/lib/libtinfo.so usr/lib64
+obj-64/lib/libncurses.a usr/lib64
+obj-64/lib/libncurses++.a usr/lib64
+obj-64/lib/libtic.a usr/lib64
+obj-64/lib/libform.a usr/lib64
+obj-64/lib/libmenu.a usr/lib64
+obj-64/lib/libpanel.a usr/lib64
+obj-64/lib/libtinfo.a usr/lib64
+obj-wide-64/lib/libformw.so usr/lib64
+obj-wide-64/lib/libmenuw.so usr/lib64
+obj-wide-64/lib/libpanelw.so usr/lib64
+obj-wide-64/lib/libncursesw.a usr/lib64
+obj-wide-64/lib/libncurses++w.a usr/lib64
+obj-wide-64/lib/libformw.a usr/lib64
+obj-wide-64/lib/libmenuw.a usr/lib64
+obj-wide-64/lib/libpanelw.a usr/lib64
+debian/libtermcap.so usr/lib64
diff --git a/debian/lib64ncurses-dev.links b/debian/lib64ncurses-dev.links
new file mode 100644
index 0000000..a3919ae
--- /dev/null
+++ b/debian/lib64ncurses-dev.links
@@ -0,0 +1,4 @@
+lib64/libtinfo.so.6 usr/lib64/libtinfo.so
+usr/lib64/libncurses.so usr/lib64/libcurses.so
+usr/lib64/libncurses.a usr/lib64/libcurses.a
+usr/lib64/libtinfo.a usr/lib64/libtermcap.a
diff --git a/debian/lib64ncurses6.install b/debian/lib64ncurses6.install
new file mode 100644
index 0000000..efc959c
--- /dev/null
+++ b/debian/lib64ncurses6.install
@@ -0,0 +1,4 @@
+obj-64/lib/libncurses.so.* lib64
+obj-64/lib/libpanel.so.* usr/lib64
+obj-64/lib/libform.so.* usr/lib64
+obj-64/lib/libmenu.so.* usr/lib64
diff --git a/debian/lib64ncurses6.symbols b/debian/lib64ncurses6.symbols
new file mode 120000
index 0000000..3234ae3
--- /dev/null
+++ b/debian/lib64ncurses6.symbols
@@ -0,0 +1 @@
+libncurses6.symbols \ No newline at end of file
diff --git a/debian/lib64ncursesw6.install b/debian/lib64ncursesw6.install
new file mode 100644
index 0000000..6b0c626
--- /dev/null
+++ b/debian/lib64ncursesw6.install
@@ -0,0 +1,4 @@
+obj-wide-64/lib/libncursesw.so.* lib64
+obj-wide-64/lib/libpanelw.so.* usr/lib64
+obj-wide-64/lib/libformw.so.* usr/lib64
+obj-wide-64/lib/libmenuw.so.* usr/lib64
diff --git a/debian/lib64ncursesw6.symbols b/debian/lib64ncursesw6.symbols
new file mode 120000
index 0000000..4a8525d
--- /dev/null
+++ b/debian/lib64ncursesw6.symbols
@@ -0,0 +1 @@
+libncursesw6.symbols \ No newline at end of file
diff --git a/debian/lib64tinfo6.install b/debian/lib64tinfo6.install
new file mode 100644
index 0000000..9a48ff6
--- /dev/null
+++ b/debian/lib64tinfo6.install
@@ -0,0 +1,2 @@
+obj-wide-64/lib/libtinfo.so.* lib64
+obj-wide-64/lib/libtic.so.* usr/lib64
diff --git a/debian/lib64tinfo6.symbols b/debian/lib64tinfo6.symbols
new file mode 120000
index 0000000..e435a0f
--- /dev/null
+++ b/debian/lib64tinfo6.symbols
@@ -0,0 +1 @@
+libtinfo6.symbols \ No newline at end of file
diff --git a/debian/libncurses-dev.install.in b/debian/libncurses-dev.install.in
new file mode 100644
index 0000000..0822ac1
--- /dev/null
+++ b/debian/libncurses-dev.install.in
@@ -0,0 +1,9 @@
+usr/include/
+usr/lib/${DEB_HOST_MULTIARCH}/*.so
+usr/lib/${DEB_HOST_MULTIARCH}/*.a
+usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig/
+usr/bin/ncurses6-config
+usr/bin/ncursesw6-config
+usr/share/man/man1/ncursesw6-config.1
+debian/libtermcap.so usr/lib/${DEB_HOST_MULTIARCH}
+misc/ncurses.supp usr/lib/valgrind/
diff --git a/debian/libncurses-dev.links.in b/debian/libncurses-dev.links.in
new file mode 100644
index 0000000..198cb1c
--- /dev/null
+++ b/debian/libncurses-dev.links.in
@@ -0,0 +1,7 @@
+lib/${DEB_HOST_MULTIARCH}/libtinfo.so.6 usr/lib/${DEB_HOST_MULTIARCH}/libtinfo.so
+usr/lib/${DEB_HOST_MULTIARCH}/libncurses.so usr/lib/${DEB_HOST_MULTIARCH}/libcurses.so
+usr/lib/${DEB_HOST_MULTIARCH}/libtinfo.a usr/lib/${DEB_HOST_MULTIARCH}/libtermcap.a
+usr/bin/ncurses6-config usr/bin/ncurses5-config
+usr/bin/ncursesw6-config usr/bin/ncursesw5-config
+usr/share/man/man1/ncurses6-config.1 usr/share/man/man1/ncurses5-config.1
+usr/share/man/man1/ncursesw6-config.1 usr/share/man/man1/ncursesw5-config.1
diff --git a/debian/libncurses-dev.manpages b/debian/libncurses-dev.manpages
new file mode 100644
index 0000000..34caa97
--- /dev/null
+++ b/debian/libncurses-dev.manpages
@@ -0,0 +1 @@
+obj/man/ncurses6-config.1
diff --git a/debian/libncurses5.install.in b/debian/libncurses5.install.in
new file mode 100644
index 0000000..97aeacf
--- /dev/null
+++ b/debian/libncurses5.install.in
@@ -0,0 +1,4 @@
+obj-legacy/lib/libncurses.so.* lib/${DEB_HOST_MULTIARCH}/
+obj-legacy/lib/libpanel.so.* usr/lib/${DEB_HOST_MULTIARCH}
+obj-legacy/lib/libform.so.* usr/lib/${DEB_HOST_MULTIARCH}
+obj-legacy/lib/libmenu.so.* usr/lib/${DEB_HOST_MULTIARCH}
diff --git a/debian/libncurses5.symbols b/debian/libncurses5.symbols
new file mode 100644
index 0000000..5bf7a50
--- /dev/null
+++ b/debian/libncurses5.symbols
@@ -0,0 +1,567 @@
+libform.so.5 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: #PACKAGE#
+ NCURSES_5.0.19991023@NCURSES_5.0.19991023 6
+ NCURSES_5.1.20000708@NCURSES_5.1.20000708 6
+ NCURSES_5.3.20021019@NCURSES_5.3.20021019 6
+ NCURSES_5.4.20040208@NCURSES_5.4.20040208 6
+ NCURSES_5.5.20051010@NCURSES_5.5.20051010 6
+ NCURSES_5.6.20061217@NCURSES_5.6.20061217 6
+ NCURSES_5.7.20081102@NCURSES_5.7.20081102 6
+ NCURSES_5.8.20110226@NCURSES_5.8.20110226 6
+ NCURSES_5.9.20150530@NCURSES_5.9.20150530 6
+ NCURSES_6.1.20171230@NCURSES_6.1.20171230 6.1
+ NCURSES_TIC_5.0.19991023@NCURSES_TIC_5.0.19991023 6
+ NCURSES_TIC_5.1.20000708@NCURSES_TIC_5.1.20000708 6
+ NCURSES_TIC_5.5.20051010@NCURSES_TIC_5.5.20051010 6
+ NCURSES_TIC_5.7.20081102@NCURSES_TIC_5.7.20081102 6
+ NCURSES_TIC_5.9.20150530@NCURSES_TIC_5.9.20150530 6
+ NCURSES_TIC_6.1.20171230@NCURSES_TIC_6.1.20171230 6.1
+ NCURSES_TINFO_5.0.19991023@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_TINFO_5.1.20000708@NCURSES_TINFO_5.1.20000708 6
+ NCURSES_TINFO_5.2.20001021@NCURSES_TINFO_5.2.20001021 6
+ NCURSES_TINFO_5.3.20021019@NCURSES_TINFO_5.3.20021019 6
+ NCURSES_TINFO_5.4.20040208@NCURSES_TINFO_5.4.20040208 6
+ NCURSES_TINFO_5.5.20051010@NCURSES_TINFO_5.5.20051010 6
+ NCURSES_TINFO_5.6.20061217@NCURSES_TINFO_5.6.20061217 6
+ NCURSES_TINFO_5.7.20081102@NCURSES_TINFO_5.7.20081102 6
+ NCURSES_TINFO_5.8.20110226@NCURSES_TINFO_5.8.20110226 6
+ NCURSES_TINFO_5.9.20150530@NCURSES_TINFO_5.9.20150530 6
+ NCURSES_TINFO_6.1.20171230@NCURSES_TINFO_6.1.20171230 6.1
+ NCURSES_TINFO_6.1.current@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ TYPE_ALNUM@NCURSES_5.0.19991023 6
+ TYPE_ALPHA@NCURSES_5.0.19991023 6
+ TYPE_ENUM@NCURSES_5.0.19991023 6
+ TYPE_INTEGER@NCURSES_5.0.19991023 6
+ TYPE_IPV4@NCURSES_5.0.19991023 6
+ TYPE_NUMERIC@NCURSES_5.0.19991023 6
+ TYPE_REGEXP@NCURSES_5.0.19991023 6
+ _nc_Default_Field@NCURSES_5.0.19991023 6
+ _nc_Default_Form@NCURSES_5.0.19991023 6
+ current_field@NCURSES_5.0.19991023 6
+ data_ahead@NCURSES_5.0.19991023 6
+ data_behind@NCURSES_5.0.19991023 6
+ dup_field@NCURSES_5.0.19991023 6
+ dynamic_field_info@NCURSES_5.0.19991023 6
+ field_arg@NCURSES_5.0.19991023 6
+ field_back@NCURSES_5.0.19991023 6
+ field_buffer@NCURSES_5.0.19991023 6
+ field_count@NCURSES_5.0.19991023 6
+ field_fore@NCURSES_5.0.19991023 6
+ field_index@NCURSES_5.0.19991023 6
+ field_info@NCURSES_5.0.19991023 6
+ field_init@NCURSES_5.0.19991023 6
+ field_just@NCURSES_5.0.19991023 6
+ field_opts@NCURSES_5.0.19991023 6
+ field_opts_off@NCURSES_5.0.19991023 6
+ field_opts_on@NCURSES_5.0.19991023 6
+ field_pad@NCURSES_5.0.19991023 6
+ field_status@NCURSES_5.0.19991023 6
+ field_term@NCURSES_5.0.19991023 6
+ field_type@NCURSES_5.0.19991023 6
+ field_userptr@NCURSES_5.0.19991023 6
+ form_driver@NCURSES_5.0.19991023 6
+ form_fields@NCURSES_5.0.19991023 6
+ form_init@NCURSES_5.0.19991023 6
+ form_opts@NCURSES_5.0.19991023 6
+ form_opts_off@NCURSES_5.0.19991023 6
+ form_opts_on@NCURSES_5.0.19991023 6
+ form_page@NCURSES_5.0.19991023 6
+ form_request_by_name@NCURSES_5.0.19991023 6
+ form_request_name@NCURSES_5.0.19991023 6
+ form_sub@NCURSES_5.0.19991023 6
+ form_term@NCURSES_5.0.19991023 6
+ form_userptr@NCURSES_5.0.19991023 6
+ form_win@NCURSES_5.0.19991023 6
+ free_field@NCURSES_5.0.19991023 6
+ free_fieldtype@NCURSES_5.0.19991023 6
+ free_form@NCURSES_5.0.19991023 6
+ link_field@NCURSES_5.0.19991023 6
+ link_fieldtype@NCURSES_5.0.19991023 6
+ move_field@NCURSES_5.0.19991023 6
+ new_field@NCURSES_5.0.19991023 6
+ new_fieldtype@NCURSES_5.0.19991023 6
+ new_form@NCURSES_5.0.19991023 6
+ new_page@NCURSES_5.0.19991023 6
+ pos_form_cursor@NCURSES_5.0.19991023 6
+ post_form@NCURSES_5.0.19991023 6
+ scale_form@NCURSES_5.0.19991023 6
+ set_current_field@NCURSES_5.0.19991023 6
+ set_field_back@NCURSES_5.0.19991023 6
+ set_field_buffer@NCURSES_5.0.19991023 6
+ set_field_fore@NCURSES_5.0.19991023 6
+ set_field_init@NCURSES_5.0.19991023 6
+ set_field_just@NCURSES_5.0.19991023 6
+ set_field_opts@NCURSES_5.0.19991023 6
+ set_field_pad@NCURSES_5.0.19991023 6
+ set_field_status@NCURSES_5.0.19991023 6
+ set_field_term@NCURSES_5.0.19991023 6
+ set_field_type@NCURSES_5.0.19991023 6
+ set_field_userptr@NCURSES_5.0.19991023 6
+ set_fieldtype_arg@NCURSES_5.0.19991023 6
+ set_fieldtype_choice@NCURSES_5.0.19991023 6
+ set_form_fields@NCURSES_5.0.19991023 6
+ set_form_init@NCURSES_5.0.19991023 6
+ set_form_opts@NCURSES_5.0.19991023 6
+ set_form_page@NCURSES_5.0.19991023 6
+ set_form_sub@NCURSES_5.0.19991023 6
+ set_form_term@NCURSES_5.0.19991023 6
+ set_form_userptr@NCURSES_5.0.19991023 6
+ set_form_win@NCURSES_5.0.19991023 6
+ set_max_field@NCURSES_5.0.19991023 6
+ set_new_page@NCURSES_5.0.19991023 6
+ unfocus_current_field@NCURSES_6.1.20171230 6.1
+ unpost_form@NCURSES_5.0.19991023 6
+libmenu.so.5 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: #PACKAGE#
+ NCURSES_5.0.19991023@NCURSES_5.0.19991023 6
+ NCURSES_5.1.20000708@NCURSES_5.1.20000708 6
+ NCURSES_5.3.20021019@NCURSES_5.3.20021019 6
+ NCURSES_5.4.20040208@NCURSES_5.4.20040208 6
+ NCURSES_5.5.20051010@NCURSES_5.5.20051010 6
+ NCURSES_5.6.20061217@NCURSES_5.6.20061217 6
+ NCURSES_5.7.20081102@NCURSES_5.7.20081102 6
+ NCURSES_5.8.20110226@NCURSES_5.8.20110226 6
+ NCURSES_5.9.20150530@NCURSES_5.9.20150530 6
+ NCURSES_6.1.20171230@NCURSES_6.1.20171230 6.1
+ NCURSES_TIC_5.0.19991023@NCURSES_TIC_5.0.19991023 6
+ NCURSES_TIC_5.1.20000708@NCURSES_TIC_5.1.20000708 6
+ NCURSES_TIC_5.5.20051010@NCURSES_TIC_5.5.20051010 6
+ NCURSES_TIC_5.7.20081102@NCURSES_TIC_5.7.20081102 6
+ NCURSES_TIC_5.9.20150530@NCURSES_TIC_5.9.20150530 6
+ NCURSES_TIC_6.1.20171230@NCURSES_TIC_6.1.20171230 6.1
+ NCURSES_TINFO_5.0.19991023@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_TINFO_5.1.20000708@NCURSES_TINFO_5.1.20000708 6
+ NCURSES_TINFO_5.2.20001021@NCURSES_TINFO_5.2.20001021 6
+ NCURSES_TINFO_5.3.20021019@NCURSES_TINFO_5.3.20021019 6
+ NCURSES_TINFO_5.4.20040208@NCURSES_TINFO_5.4.20040208 6
+ NCURSES_TINFO_5.5.20051010@NCURSES_TINFO_5.5.20051010 6
+ NCURSES_TINFO_5.6.20061217@NCURSES_TINFO_5.6.20061217 6
+ NCURSES_TINFO_5.7.20081102@NCURSES_TINFO_5.7.20081102 6
+ NCURSES_TINFO_5.8.20110226@NCURSES_TINFO_5.8.20110226 6
+ NCURSES_TINFO_5.9.20150530@NCURSES_TINFO_5.9.20150530 6
+ NCURSES_TINFO_6.1.20171230@NCURSES_TINFO_6.1.20171230 6.1
+ NCURSES_TINFO_6.1.current@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ current_item@NCURSES_5.0.19991023 6
+ free_item@NCURSES_5.0.19991023 6
+ free_menu@NCURSES_5.0.19991023 6
+ item_count@NCURSES_5.0.19991023 6
+ item_description@NCURSES_5.0.19991023 6
+ item_index@NCURSES_5.0.19991023 6
+ item_init@NCURSES_5.0.19991023 6
+ item_name@NCURSES_5.0.19991023 6
+ item_opts@NCURSES_5.0.19991023 6
+ item_opts_off@NCURSES_5.0.19991023 6
+ item_opts_on@NCURSES_5.0.19991023 6
+ item_term@NCURSES_5.0.19991023 6
+ item_userptr@NCURSES_5.0.19991023 6
+ item_value@NCURSES_5.0.19991023 6
+ item_visible@NCURSES_5.0.19991023 6
+ menu_back@NCURSES_5.0.19991023 6
+ menu_driver@NCURSES_5.0.19991023 6
+ menu_fore@NCURSES_5.0.19991023 6
+ menu_format@NCURSES_5.0.19991023 6
+ menu_grey@NCURSES_5.0.19991023 6
+ menu_init@NCURSES_5.0.19991023 6
+ menu_items@NCURSES_5.0.19991023 6
+ menu_mark@NCURSES_5.0.19991023 6
+ menu_opts@NCURSES_5.0.19991023 6
+ menu_opts_off@NCURSES_5.0.19991023 6
+ menu_opts_on@NCURSES_5.0.19991023 6
+ menu_pad@NCURSES_5.0.19991023 6
+ menu_pattern@NCURSES_5.0.19991023 6
+ menu_request_by_name@NCURSES_5.0.19991023 6
+ menu_request_name@NCURSES_5.0.19991023 6
+ menu_spacing@NCURSES_5.0.19991023 6
+ menu_sub@NCURSES_5.0.19991023 6
+ menu_term@NCURSES_5.0.19991023 6
+ menu_userptr@NCURSES_5.0.19991023 6
+ menu_win@NCURSES_5.0.19991023 6
+ new_item@NCURSES_5.0.19991023 6
+ new_menu@NCURSES_5.0.19991023 6
+ pos_menu_cursor@NCURSES_5.0.19991023 6
+ post_menu@NCURSES_5.0.19991023 6
+ scale_menu@NCURSES_5.0.19991023 6
+ set_current_item@NCURSES_5.0.19991023 6
+ set_item_init@NCURSES_5.0.19991023 6
+ set_item_opts@NCURSES_5.0.19991023 6
+ set_item_term@NCURSES_5.0.19991023 6
+ set_item_userptr@NCURSES_5.0.19991023 6
+ set_item_value@NCURSES_5.0.19991023 6
+ set_menu_back@NCURSES_5.0.19991023 6
+ set_menu_fore@NCURSES_5.0.19991023 6
+ set_menu_format@NCURSES_5.0.19991023 6
+ set_menu_grey@NCURSES_5.0.19991023 6
+ set_menu_init@NCURSES_5.0.19991023 6
+ set_menu_items@NCURSES_5.0.19991023 6
+ set_menu_mark@NCURSES_5.0.19991023 6
+ set_menu_opts@NCURSES_5.0.19991023 6
+ set_menu_pad@NCURSES_5.0.19991023 6
+ set_menu_pattern@NCURSES_5.0.19991023 6
+ set_menu_spacing@NCURSES_5.0.19991023 6
+ set_menu_sub@NCURSES_5.0.19991023 6
+ set_menu_term@NCURSES_5.0.19991023 6
+ set_menu_userptr@NCURSES_5.0.19991023 6
+ set_menu_win@NCURSES_5.0.19991023 6
+ set_top_row@NCURSES_5.0.19991023 6
+ top_row@NCURSES_5.0.19991023 6
+ unpost_menu@NCURSES_5.0.19991023 6
+libncurses.so.5 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: #PACKAGE#
+ COLORS@NCURSES_5.0.19991023 6
+ COLOR_PAIR@NCURSES_5.0.19991023 6
+ COLOR_PAIRS@NCURSES_5.0.19991023 6
+ ESCDELAY@NCURSES_5.0.19991023 6
+ NCURSES_5.0.19991023@NCURSES_5.0.19991023 6
+ NCURSES_5.1.20000708@NCURSES_5.1.20000708 6
+ NCURSES_5.3.20021019@NCURSES_5.3.20021019 6
+ NCURSES_5.4.20040208@NCURSES_5.4.20040208 6
+ NCURSES_5.5.20051010@NCURSES_5.5.20051010 6
+ NCURSES_5.6.20061217@NCURSES_5.6.20061217 6
+ NCURSES_5.7.20081102@NCURSES_5.7.20081102 6
+ NCURSES_5.8.20110226@NCURSES_5.8.20110226 6
+ NCURSES_5.9.20150530@NCURSES_5.9.20150530 6
+ NCURSES_6.1.20171230@NCURSES_6.1.20171230 6.1
+ NCURSES_TIC_5.0.19991023@NCURSES_TIC_5.0.19991023 6
+ NCURSES_TIC_5.1.20000708@NCURSES_TIC_5.1.20000708 6
+ NCURSES_TIC_5.5.20051010@NCURSES_TIC_5.5.20051010 6
+ NCURSES_TIC_5.7.20081102@NCURSES_TIC_5.7.20081102 6
+ NCURSES_TIC_5.9.20150530@NCURSES_TIC_5.9.20150530 6
+ NCURSES_TIC_6.1.20171230@NCURSES_TIC_6.1.20171230 6.1
+ NCURSES_TINFO_5.0.19991023@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_TINFO_5.1.20000708@NCURSES_TINFO_5.1.20000708 6
+ NCURSES_TINFO_5.2.20001021@NCURSES_TINFO_5.2.20001021 6
+ NCURSES_TINFO_5.3.20021019@NCURSES_TINFO_5.3.20021019 6
+ NCURSES_TINFO_5.4.20040208@NCURSES_TINFO_5.4.20040208 6
+ NCURSES_TINFO_5.5.20051010@NCURSES_TINFO_5.5.20051010 6
+ NCURSES_TINFO_5.6.20061217@NCURSES_TINFO_5.6.20061217 6
+ NCURSES_TINFO_5.7.20081102@NCURSES_TINFO_5.7.20081102 6
+ NCURSES_TINFO_5.8.20110226@NCURSES_TINFO_5.8.20110226 6
+ NCURSES_TINFO_5.9.20150530@NCURSES_TINFO_5.9.20150530 6
+ NCURSES_TINFO_6.1.20171230@NCURSES_TINFO_6.1.20171230 6.1
+ NCURSES_TINFO_6.1.current@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ PAIR_NUMBER@NCURSES_5.0.19991023 6
+ _nc_free_and_exit@NCURSES_5.0.19991023 6
+ _nc_freeall@NCURSES_TINFO_5.0.19991023 6
+ _nc_has_mouse@NCURSES_5.0.19991023 6
+ _nc_panelhook@NCURSES_5.0.19991023 6
+ _nc_ripoffline@NCURSES_5.0.19991023 6
+ addch@NCURSES_5.0.19991023 6
+ addchnstr@NCURSES_5.0.19991023 6
+ addchstr@NCURSES_5.0.19991023 6
+ addnstr@NCURSES_5.0.19991023 6
+ addstr@NCURSES_5.0.19991023 6
+ assume_default_colors@NCURSES_5.1.20000708 6
+ attr_get@NCURSES_5.0.19991023 6
+ attr_off@NCURSES_5.0.19991023 6
+ attr_on@NCURSES_5.0.19991023 6
+ attr_set@NCURSES_5.0.19991023 6
+ attroff@NCURSES_5.0.19991023 6
+ attron@NCURSES_5.0.19991023 6
+ attrset@NCURSES_5.0.19991023 6
+ beep@NCURSES_5.0.19991023 6
+ bkgd@NCURSES_5.0.19991023 6
+ bkgdset@NCURSES_5.0.19991023 6
+ border@NCURSES_5.0.19991023 6
+ box@NCURSES_5.0.19991023 6
+ can_change_color@NCURSES_5.0.19991023 6
+ chgat@NCURSES_5.0.19991023 6
+ clear@NCURSES_5.0.19991023 6
+ clearok@NCURSES_5.0.19991023 6
+ clrtobot@NCURSES_5.0.19991023 6
+ clrtoeol@NCURSES_5.0.19991023 6
+ color_content@NCURSES_5.0.19991023 6
+ color_set@NCURSES_5.0.19991023 6
+ copywin@NCURSES_5.0.19991023 6
+ delch@NCURSES_5.0.19991023 6
+ deleteln@NCURSES_5.0.19991023 6
+ delscreen@NCURSES_5.0.19991023 6
+ delwin@NCURSES_5.0.19991023 6
+ derwin@NCURSES_5.0.19991023 6
+ doupdate@NCURSES_5.0.19991023 6
+ dupwin@NCURSES_5.0.19991023 6
+ echo@NCURSES_5.0.19991023 6
+ echochar@NCURSES_5.0.19991023 6
+ endwin@NCURSES_5.0.19991023 6
+ erase@NCURSES_5.1.20000708 6
+ filter@NCURSES_5.0.19991023 6
+ flash@NCURSES_5.0.19991023 6
+ get_escdelay@NCURSES_5.8.20110226 6
+ getattrs@NCURSES_5.7.20081102 6
+ getbegx@NCURSES_5.6.20061217 6
+ getbegy@NCURSES_5.6.20061217 6
+ getbkgd@NCURSES_5.0.19991023 6
+ getch@NCURSES_5.0.19991023 6
+ getcurx@NCURSES_5.6.20061217 6
+ getcury@NCURSES_5.6.20061217 6
+ getmaxx@NCURSES_5.6.20061217 6
+ getmaxy@NCURSES_5.6.20061217 6
+ getmouse@NCURSES_5.0.19991023 6
+ getnstr@NCURSES_5.0.19991023 6
+ getparx@NCURSES_5.6.20061217 6
+ getpary@NCURSES_5.6.20061217 6
+ getstr@NCURSES_5.0.19991023 6
+ getwin@NCURSES_5.0.19991023 6
+ has_colors@NCURSES_5.0.19991023 6
+ has_mouse@NCURSES_5.8.20110226 6
+ hline@NCURSES_5.0.19991023 6
+ immedok@NCURSES_5.0.19991023 6
+ inch@NCURSES_5.0.19991023 6
+ inchnstr@NCURSES_5.0.19991023 6
+ inchstr@NCURSES_5.0.19991023 6
+ init_color@NCURSES_5.0.19991023 6
+ init_pair@NCURSES_5.0.19991023 6
+ initscr@NCURSES_5.0.19991023 6
+ innstr@NCURSES_5.0.19991023 6
+ insch@NCURSES_5.0.19991023 6
+ insdelln@NCURSES_5.0.19991023 6
+ insertln@NCURSES_5.0.19991023 6
+ insnstr@NCURSES_5.0.19991023 6
+ insstr@NCURSES_5.0.19991023 6
+ instr@NCURSES_5.0.19991023 6
+ is_cleared@NCURSES_5.7.20081102 6
+ is_idcok@NCURSES_5.7.20081102 6
+ is_idlok@NCURSES_5.7.20081102 6
+ is_immedok@NCURSES_5.7.20081102 6
+ is_keypad@NCURSES_5.7.20081102 6
+ is_leaveok@NCURSES_5.7.20081102 6
+ is_linetouched@NCURSES_5.0.19991023 6
+ is_nodelay@NCURSES_5.7.20081102 6
+ is_notimeout@NCURSES_5.7.20081102 6
+ is_pad@NCURSES_5.8.20110226 6
+ is_scrollok@NCURSES_5.7.20081102 6
+ is_subwin@NCURSES_5.8.20110226 6
+ is_syncok@NCURSES_5.7.20081102 6
+ is_term_resized@NCURSES_5.3.20021019 6
+ is_wintouched@NCURSES_5.0.19991023 6
+ isendwin@NCURSES_5.0.19991023 6
+ leaveok@NCURSES_5.0.19991023 6
+ mcprint@NCURSES_5.0.19991023 6
+ mouse_trafo@NCURSES_5.0.19991023 6
+ mouseinterval@NCURSES_5.0.19991023 6
+ mousemask@NCURSES_5.0.19991023 6
+ move@NCURSES_5.0.19991023 6
+ mvaddch@NCURSES_5.0.19991023 6
+ mvaddchnstr@NCURSES_5.0.19991023 6
+ mvaddchstr@NCURSES_5.0.19991023 6
+ mvaddnstr@NCURSES_5.0.19991023 6
+ mvaddstr@NCURSES_5.0.19991023 6
+ mvchgat@NCURSES_5.0.19991023 6
+ mvcur@NCURSES_5.0.19991023 6
+ mvdelch@NCURSES_5.0.19991023 6
+ mvderwin@NCURSES_5.0.19991023 6
+ mvgetch@NCURSES_5.0.19991023 6
+ mvgetnstr@NCURSES_5.0.19991023 6
+ mvgetstr@NCURSES_5.0.19991023 6
+ mvhline@NCURSES_5.0.19991023 6
+ mvinch@NCURSES_5.0.19991023 6
+ mvinchnstr@NCURSES_5.0.19991023 6
+ mvinchstr@NCURSES_5.0.19991023 6
+ mvinnstr@NCURSES_5.0.19991023 6
+ mvinsch@NCURSES_5.0.19991023 6
+ mvinsnstr@NCURSES_5.0.19991023 6
+ mvinsstr@NCURSES_5.0.19991023 6
+ mvinstr@NCURSES_5.0.19991023 6
+ mvprintw@NCURSES_5.0.19991023 6
+ mvscanw@NCURSES_5.0.19991023 6
+ mvvline@NCURSES_5.0.19991023 6
+ mvwaddch@NCURSES_5.0.19991023 6
+ mvwaddchnstr@NCURSES_5.0.19991023 6
+ mvwaddchstr@NCURSES_5.0.19991023 6
+ mvwaddnstr@NCURSES_5.0.19991023 6
+ mvwaddstr@NCURSES_5.0.19991023 6
+ mvwchgat@NCURSES_5.0.19991023 6
+ mvwdelch@NCURSES_5.0.19991023 6
+ mvwgetch@NCURSES_5.0.19991023 6
+ mvwgetnstr@NCURSES_5.0.19991023 6
+ mvwgetstr@NCURSES_5.0.19991023 6
+ mvwhline@NCURSES_5.0.19991023 6
+ mvwin@NCURSES_5.0.19991023 6
+ mvwinch@NCURSES_5.0.19991023 6
+ mvwinchnstr@NCURSES_5.0.19991023 6
+ mvwinchstr@NCURSES_5.0.19991023 6
+ mvwinnstr@NCURSES_5.0.19991023 6
+ mvwinsch@NCURSES_5.0.19991023 6
+ mvwinsnstr@NCURSES_5.0.19991023 6
+ mvwinsstr@NCURSES_5.0.19991023 6
+ mvwinstr@NCURSES_5.0.19991023 6
+ mvwprintw@NCURSES_5.0.19991023 6
+ mvwscanw@NCURSES_5.0.19991023 6
+ mvwvline@NCURSES_5.0.19991023 6
+ newpad@NCURSES_5.0.19991023 6
+ newterm@NCURSES_5.0.19991023 6
+ newwin@NCURSES_5.0.19991023 6
+ nl@NCURSES_5.0.19991023 6
+ noecho@NCURSES_5.0.19991023 6
+ nofilter@NCURSES_5.6.20061217 6
+ nonl@NCURSES_5.0.19991023 6
+ overlay@NCURSES_5.0.19991023 6
+ overwrite@NCURSES_5.0.19991023 6
+ pair_content@NCURSES_5.0.19991023 6
+ pechochar@NCURSES_5.0.19991023 6
+ pnoutrefresh@NCURSES_5.0.19991023 6
+ prefresh@NCURSES_5.0.19991023 6
+ printw@NCURSES_5.0.19991023 6
+ putwin@NCURSES_5.0.19991023 6
+ redrawwin@NCURSES_5.0.19991023 6
+ refresh@NCURSES_5.0.19991023 6
+ resize_term@NCURSES_5.3.20021019 6
+ resizeterm@NCURSES_5.0.19991023 6
+ restartterm@NCURSES_5.0.19991023 6
+ ripoffline@NCURSES_5.0.19991023 6
+ scanw@NCURSES_5.0.19991023 6
+ scr_dump@NCURSES_5.0.19991023 6
+ scr_init@NCURSES_5.0.19991023 6
+ scr_restore@NCURSES_5.0.19991023 6
+ scr_set@NCURSES_5.0.19991023 6
+ scrl@NCURSES_5.0.19991023 6
+ scroll@NCURSES_5.0.19991023 6
+ scrollok@NCURSES_5.0.19991023 6
+ set_escdelay@NCURSES_5.7.20081102 6
+ set_term@NCURSES_5.0.19991023 6
+ setscrreg@NCURSES_5.0.19991023 6
+ slk_attr@NCURSES_5.0.19991023 6
+ slk_attr_set@NCURSES_5.0.19991023 6
+ slk_attroff@NCURSES_5.0.19991023 6
+ slk_attron@NCURSES_5.0.19991023 6
+ slk_attrset@NCURSES_5.0.19991023 6
+ slk_clear@NCURSES_5.0.19991023 6
+ slk_color@NCURSES_5.0.19991023 6
+ slk_init@NCURSES_5.0.19991023 6
+ slk_label@NCURSES_5.0.19991023 6
+ slk_noutrefresh@NCURSES_5.0.19991023 6
+ slk_refresh@NCURSES_5.0.19991023 6
+ slk_restore@NCURSES_5.0.19991023 6
+ slk_set@NCURSES_5.0.19991023 6
+ slk_touch@NCURSES_5.0.19991023 6
+ standend@NCURSES_5.0.19991023 6
+ standout@NCURSES_5.0.19991023 6
+ start_color@NCURSES_5.0.19991023 6
+ subpad@NCURSES_5.0.19991023 6
+ subwin@NCURSES_5.0.19991023 6
+ syncok@NCURSES_5.0.19991023 6
+ termattrs@NCURSES_5.0.19991023 6
+ timeout@NCURSES_5.0.19991023 6
+ touchline@NCURSES_5.1.20000708 6
+ touchwin@NCURSES_5.1.20000708 6
+ ungetch@NCURSES_5.0.19991023 6
+ ungetmouse@NCURSES_5.0.19991023 6
+ untouchwin@NCURSES_5.0.19991023 6
+ use_default_colors@NCURSES_5.0.19991023 6
+ use_legacy_coding@NCURSES_5.6.20061217 6
+ use_screen@NCURSES_5.7.20081102 6
+ use_window@NCURSES_5.7.20081102 6
+ vidattr@NCURSES_5.0.19991023 6
+ vidputs@NCURSES_5.0.19991023 6
+ vline@NCURSES_5.0.19991023 6
+ vw_printw@NCURSES_5.0.19991023 6
+ vw_scanw@NCURSES_5.0.19991023 6
+ vwprintw@NCURSES_5.0.19991023 6
+ vwscanw@NCURSES_5.0.19991023 6
+ waddch@NCURSES_5.0.19991023 6
+ waddchnstr@NCURSES_5.0.19991023 6
+ waddchstr@NCURSES_5.0.19991023 6
+ waddnstr@NCURSES_5.0.19991023 6
+ waddstr@NCURSES_5.0.19991023 6
+ wattr_get@NCURSES_5.0.19991023 6
+ wattr_off@NCURSES_5.0.19991023 6
+ wattr_on@NCURSES_5.0.19991023 6
+ wattr_set@NCURSES_5.0.19991023 6
+ wattroff@NCURSES_5.0.19991023 6
+ wattron@NCURSES_5.0.19991023 6
+ wattrset@NCURSES_5.0.19991023 6
+ wbkgd@NCURSES_5.0.19991023 6
+ wbkgdset@NCURSES_5.0.19991023 6
+ wborder@NCURSES_5.0.19991023 6
+ wchgat@NCURSES_5.0.19991023 6
+ wclear@NCURSES_5.0.19991023 6
+ wclrtobot@NCURSES_5.0.19991023 6
+ wclrtoeol@NCURSES_5.0.19991023 6
+ wcolor_set@NCURSES_5.0.19991023 6
+ wcursyncup@NCURSES_5.0.19991023 6
+ wdelch@NCURSES_5.0.19991023 6
+ wdeleteln@NCURSES_5.0.19991023 6
+ wechochar@NCURSES_5.0.19991023 6
+ wenclose@NCURSES_5.0.19991023 6
+ werase@NCURSES_5.0.19991023 6
+ wgetch@NCURSES_5.0.19991023 6
+ wgetdelay@NCURSES_5.9.20150530 6
+ wgetnstr@NCURSES_5.0.19991023 6
+ wgetparent@NCURSES_5.7.20081102 6
+ wgetscrreg@NCURSES_5.7.20081102 6
+ wgetstr@NCURSES_5.0.19991023 6
+ whline@NCURSES_5.0.19991023 6
+ winch@NCURSES_5.0.19991023 6
+ winchnstr@NCURSES_5.0.19991023 6
+ winchstr@NCURSES_5.0.19991023 6
+ winnstr@NCURSES_5.0.19991023 6
+ winsch@NCURSES_5.0.19991023 6
+ winsdelln@NCURSES_5.0.19991023 6
+ winsertln@NCURSES_5.0.19991023 6
+ winsnstr@NCURSES_5.0.19991023 6
+ winsstr@NCURSES_5.0.19991023 6
+ winstr@NCURSES_5.0.19991023 6
+ wmouse_trafo@NCURSES_5.0.19991023 6
+ wmove@NCURSES_5.0.19991023 6
+ wnoutrefresh@NCURSES_5.0.19991023 6
+ wprintw@NCURSES_5.0.19991023 6
+ wredrawln@NCURSES_5.0.19991023 6
+ wrefresh@NCURSES_5.0.19991023 6
+ wresize@NCURSES_5.0.19991023 6
+ wscanw@NCURSES_5.0.19991023 6
+ wscrl@NCURSES_5.0.19991023 6
+ wsetscrreg@NCURSES_5.0.19991023 6
+ wstandend@NCURSES_5.0.19991023 6
+ wstandout@NCURSES_5.0.19991023 6
+ wsyncdown@NCURSES_5.0.19991023 6
+ wsyncup@NCURSES_5.0.19991023 6
+ wtouchln@NCURSES_5.0.19991023 6
+ wvline@NCURSES_5.0.19991023 6
+libpanel.so.5 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: #PACKAGE#
+ NCURSES_5.0.19991023@NCURSES_5.0.19991023 6
+ NCURSES_5.1.20000708@NCURSES_5.1.20000708 6
+ NCURSES_5.3.20021019@NCURSES_5.3.20021019 6
+ NCURSES_5.4.20040208@NCURSES_5.4.20040208 6
+ NCURSES_5.5.20051010@NCURSES_5.5.20051010 6
+ NCURSES_5.6.20061217@NCURSES_5.6.20061217 6
+ NCURSES_5.7.20081102@NCURSES_5.7.20081102 6
+ NCURSES_5.8.20110226@NCURSES_5.8.20110226 6
+ NCURSES_5.9.20150530@NCURSES_5.9.20150530 6
+ NCURSES_6.1.20171230@NCURSES_6.1.20171230 6.1
+ NCURSES_TIC_5.0.19991023@NCURSES_TIC_5.0.19991023 6
+ NCURSES_TIC_5.1.20000708@NCURSES_TIC_5.1.20000708 6
+ NCURSES_TIC_5.5.20051010@NCURSES_TIC_5.5.20051010 6
+ NCURSES_TIC_5.7.20081102@NCURSES_TIC_5.7.20081102 6
+ NCURSES_TIC_5.9.20150530@NCURSES_TIC_5.9.20150530 6
+ NCURSES_TIC_6.1.20171230@NCURSES_TIC_6.1.20171230 6.1
+ NCURSES_TINFO_5.0.19991023@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_TINFO_5.1.20000708@NCURSES_TINFO_5.1.20000708 6
+ NCURSES_TINFO_5.2.20001021@NCURSES_TINFO_5.2.20001021 6
+ NCURSES_TINFO_5.3.20021019@NCURSES_TINFO_5.3.20021019 6
+ NCURSES_TINFO_5.4.20040208@NCURSES_TINFO_5.4.20040208 6
+ NCURSES_TINFO_5.5.20051010@NCURSES_TINFO_5.5.20051010 6
+ NCURSES_TINFO_5.6.20061217@NCURSES_TINFO_5.6.20061217 6
+ NCURSES_TINFO_5.7.20081102@NCURSES_TINFO_5.7.20081102 6
+ NCURSES_TINFO_5.8.20110226@NCURSES_TINFO_5.8.20110226 6
+ NCURSES_TINFO_5.9.20150530@NCURSES_TINFO_5.9.20150530 6
+ NCURSES_TINFO_6.1.20171230@NCURSES_TINFO_6.1.20171230 6.1
+ NCURSES_TINFO_6.1.current@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ bottom_panel@NCURSES_5.0.19991023 6
+ del_panel@NCURSES_5.0.19991023 6
+ hide_panel@NCURSES_5.0.19991023 6
+ move_panel@NCURSES_5.0.19991023 6
+ new_panel@NCURSES_5.0.19991023 6
+ panel_above@NCURSES_5.0.19991023 6
+ panel_below@NCURSES_5.0.19991023 6
+ panel_hidden@NCURSES_5.0.19991023 6
+ panel_userptr@NCURSES_5.0.19991023 6
+ panel_window@NCURSES_5.0.19991023 6
+ replace_panel@NCURSES_5.0.19991023 6
+ set_panel_userptr@NCURSES_5.0.19991023 6
+ show_panel@NCURSES_5.0.19991023 6
+ top_panel@NCURSES_5.0.19991023 6
+ update_panels@NCURSES_5.0.19991023 6
diff --git a/debian/libncurses6.install.in b/debian/libncurses6.install.in
new file mode 100644
index 0000000..60ec9c8
--- /dev/null
+++ b/debian/libncurses6.install.in
@@ -0,0 +1,4 @@
+usr/lib/${DEB_HOST_MULTIARCH}/libncurses.so.* lib/${DEB_HOST_MULTIARCH}/
+usr/lib/${DEB_HOST_MULTIARCH}/libpanel.so.*
+usr/lib/${DEB_HOST_MULTIARCH}/libform.so.*
+usr/lib/${DEB_HOST_MULTIARCH}/libmenu.so.*
diff --git a/debian/libncurses6.symbols b/debian/libncurses6.symbols
new file mode 100644
index 0000000..9a86fcd
--- /dev/null
+++ b/debian/libncurses6.symbols
@@ -0,0 +1,630 @@
+libform.so.6 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: libncurses-dev
+ NCURSES6_5.0.19991023@NCURSES6_5.0.19991023 6
+ NCURSES6_5.1.20000708@NCURSES6_5.1.20000708 6
+ NCURSES6_5.3.20021019@NCURSES6_5.3.20021019 6
+ NCURSES6_5.4.20040208@NCURSES6_5.4.20040208 6
+ NCURSES6_5.5.20051010@NCURSES6_5.5.20051010 6
+ NCURSES6_5.6.20061217@NCURSES6_5.6.20061217 6
+ NCURSES6_5.7.20081102@NCURSES6_5.7.20081102 6
+ NCURSES6_5.8.20110226@NCURSES6_5.8.20110226 6
+ NCURSES6_5.9.20150530@NCURSES6_5.9.20150530 6
+ NCURSES6_6.1.20171230@NCURSES6_6.1.20171230 6.1
+ NCURSES6_TIC_5.0.19991023@NCURSES6_TIC_5.0.19991023 6
+ NCURSES6_TIC_5.1.20000708@NCURSES6_TIC_5.1.20000708 6
+ NCURSES6_TIC_5.5.20051010@NCURSES6_TIC_5.5.20051010 6
+ NCURSES6_TIC_5.7.20081102@NCURSES6_TIC_5.7.20081102 6
+ NCURSES6_TIC_5.9.20150530@NCURSES6_TIC_5.9.20150530 6
+ NCURSES6_TIC_6.1.20171230@NCURSES6_TIC_6.1.20171230 6.1
+ NCURSES6_TINFO_5.0.19991023@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TINFO_5.1.20000708@NCURSES6_TINFO_5.1.20000708 6
+ NCURSES6_TINFO_5.2.20001021@NCURSES6_TINFO_5.2.20001021 6
+ NCURSES6_TINFO_5.3.20021019@NCURSES6_TINFO_5.3.20021019 6
+ NCURSES6_TINFO_5.4.20040208@NCURSES6_TINFO_5.4.20040208 6
+ NCURSES6_TINFO_5.5.20051010@NCURSES6_TINFO_5.5.20051010 6
+ NCURSES6_TINFO_5.6.20061217@NCURSES6_TINFO_5.6.20061217 6
+ NCURSES6_TINFO_5.7.20081102@NCURSES6_TINFO_5.7.20081102 6
+ NCURSES6_TINFO_5.8.20110226@NCURSES6_TINFO_5.8.20110226 6
+ NCURSES6_TINFO_5.9.20150530@NCURSES6_TINFO_5.9.20150530 6
+ NCURSES6_TINFO_6.1.20171230@NCURSES6_TINFO_6.1.20171230 6.1
+ NCURSES6_TINFO_6.1.current@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ TYPE_ALNUM@NCURSES6_5.0.19991023 6
+ TYPE_ALPHA@NCURSES6_5.0.19991023 6
+ TYPE_ENUM@NCURSES6_5.0.19991023 6
+ TYPE_INTEGER@NCURSES6_5.0.19991023 6
+ TYPE_IPV4@NCURSES6_5.0.19991023 6
+ TYPE_NUMERIC@NCURSES6_5.0.19991023 6
+ TYPE_REGEXP@NCURSES6_5.0.19991023 6
+ current_field@NCURSES6_5.0.19991023 6
+ data_ahead@NCURSES6_5.0.19991023 6
+ data_behind@NCURSES6_5.0.19991023 6
+ dup_field@NCURSES6_5.0.19991023 6
+ dynamic_field_info@NCURSES6_5.0.19991023 6
+ field_arg@NCURSES6_5.0.19991023 6
+ field_back@NCURSES6_5.0.19991023 6
+ field_buffer@NCURSES6_5.0.19991023 6
+ field_count@NCURSES6_5.0.19991023 6
+ field_fore@NCURSES6_5.0.19991023 6
+ field_index@NCURSES6_5.0.19991023 6
+ field_info@NCURSES6_5.0.19991023 6
+ field_init@NCURSES6_5.0.19991023 6
+ field_just@NCURSES6_5.0.19991023 6
+ field_opts@NCURSES6_5.0.19991023 6
+ field_opts_off@NCURSES6_5.0.19991023 6
+ field_opts_on@NCURSES6_5.0.19991023 6
+ field_pad@NCURSES6_5.0.19991023 6
+ field_status@NCURSES6_5.0.19991023 6
+ field_term@NCURSES6_5.0.19991023 6
+ field_type@NCURSES6_5.0.19991023 6
+ field_userptr@NCURSES6_5.0.19991023 6
+ form_driver@NCURSES6_5.0.19991023 6
+ form_fields@NCURSES6_5.0.19991023 6
+ form_init@NCURSES6_5.0.19991023 6
+ form_opts@NCURSES6_5.0.19991023 6
+ form_opts_off@NCURSES6_5.0.19991023 6
+ form_opts_on@NCURSES6_5.0.19991023 6
+ form_page@NCURSES6_5.0.19991023 6
+ form_request_by_name@NCURSES6_5.0.19991023 6
+ form_request_name@NCURSES6_5.0.19991023 6
+ form_sub@NCURSES6_5.0.19991023 6
+ form_term@NCURSES6_5.0.19991023 6
+ form_userptr@NCURSES6_5.0.19991023 6
+ form_win@NCURSES6_5.0.19991023 6
+ free_field@NCURSES6_5.0.19991023 6
+ free_fieldtype@NCURSES6_5.0.19991023 6
+ free_form@NCURSES6_5.0.19991023 6
+ link_field@NCURSES6_5.0.19991023 6
+ link_fieldtype@NCURSES6_5.0.19991023 6
+ move_field@NCURSES6_5.0.19991023 6
+ new_field@NCURSES6_5.0.19991023 6
+ new_fieldtype@NCURSES6_5.0.19991023 6
+ new_form@NCURSES6_5.0.19991023 6
+ new_form_sp@NCURSES6_5.8.20110226 6
+ new_page@NCURSES6_5.0.19991023 6
+ pos_form_cursor@NCURSES6_5.0.19991023 6
+ post_form@NCURSES6_5.0.19991023 6
+ scale_form@NCURSES6_5.0.19991023 6
+ set_current_field@NCURSES6_5.0.19991023 6
+ set_field_back@NCURSES6_5.0.19991023 6
+ set_field_buffer@NCURSES6_5.0.19991023 6
+ set_field_fore@NCURSES6_5.0.19991023 6
+ set_field_init@NCURSES6_5.0.19991023 6
+ set_field_just@NCURSES6_5.0.19991023 6
+ set_field_opts@NCURSES6_5.0.19991023 6
+ set_field_pad@NCURSES6_5.0.19991023 6
+ set_field_status@NCURSES6_5.0.19991023 6
+ set_field_term@NCURSES6_5.0.19991023 6
+ set_field_type@NCURSES6_5.0.19991023 6
+ set_field_userptr@NCURSES6_5.0.19991023 6
+ set_fieldtype_arg@NCURSES6_5.0.19991023 6
+ set_fieldtype_choice@NCURSES6_5.0.19991023 6
+ set_form_fields@NCURSES6_5.0.19991023 6
+ set_form_init@NCURSES6_5.0.19991023 6
+ set_form_opts@NCURSES6_5.0.19991023 6
+ set_form_page@NCURSES6_5.0.19991023 6
+ set_form_sub@NCURSES6_5.0.19991023 6
+ set_form_term@NCURSES6_5.0.19991023 6
+ set_form_userptr@NCURSES6_5.0.19991023 6
+ set_form_win@NCURSES6_5.0.19991023 6
+ set_max_field@NCURSES6_5.0.19991023 6
+ set_new_page@NCURSES6_5.0.19991023 6
+ unfocus_current_field@NCURSES6_6.1.20171230 6.1
+ unpost_form@NCURSES6_5.0.19991023 6
+libmenu.so.6 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: libncurses-dev
+ NCURSES6_5.0.19991023@NCURSES6_5.0.19991023 6
+ NCURSES6_5.1.20000708@NCURSES6_5.1.20000708 6
+ NCURSES6_5.3.20021019@NCURSES6_5.3.20021019 6
+ NCURSES6_5.4.20040208@NCURSES6_5.4.20040208 6
+ NCURSES6_5.5.20051010@NCURSES6_5.5.20051010 6
+ NCURSES6_5.6.20061217@NCURSES6_5.6.20061217 6
+ NCURSES6_5.7.20081102@NCURSES6_5.7.20081102 6
+ NCURSES6_5.8.20110226@NCURSES6_5.8.20110226 6
+ NCURSES6_5.9.20150530@NCURSES6_5.9.20150530 6
+ NCURSES6_6.1.20171230@NCURSES6_6.1.20171230 6.1
+ NCURSES6_TIC_5.0.19991023@NCURSES6_TIC_5.0.19991023 6
+ NCURSES6_TIC_5.1.20000708@NCURSES6_TIC_5.1.20000708 6
+ NCURSES6_TIC_5.5.20051010@NCURSES6_TIC_5.5.20051010 6
+ NCURSES6_TIC_5.7.20081102@NCURSES6_TIC_5.7.20081102 6
+ NCURSES6_TIC_5.9.20150530@NCURSES6_TIC_5.9.20150530 6
+ NCURSES6_TIC_6.1.20171230@NCURSES6_TIC_6.1.20171230 6.1
+ NCURSES6_TINFO_5.0.19991023@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TINFO_5.1.20000708@NCURSES6_TINFO_5.1.20000708 6
+ NCURSES6_TINFO_5.2.20001021@NCURSES6_TINFO_5.2.20001021 6
+ NCURSES6_TINFO_5.3.20021019@NCURSES6_TINFO_5.3.20021019 6
+ NCURSES6_TINFO_5.4.20040208@NCURSES6_TINFO_5.4.20040208 6
+ NCURSES6_TINFO_5.5.20051010@NCURSES6_TINFO_5.5.20051010 6
+ NCURSES6_TINFO_5.6.20061217@NCURSES6_TINFO_5.6.20061217 6
+ NCURSES6_TINFO_5.7.20081102@NCURSES6_TINFO_5.7.20081102 6
+ NCURSES6_TINFO_5.8.20110226@NCURSES6_TINFO_5.8.20110226 6
+ NCURSES6_TINFO_5.9.20150530@NCURSES6_TINFO_5.9.20150530 6
+ NCURSES6_TINFO_6.1.20171230@NCURSES6_TINFO_6.1.20171230 6.1
+ NCURSES6_TINFO_6.1.current@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ current_item@NCURSES6_5.0.19991023 6
+ free_item@NCURSES6_5.0.19991023 6
+ free_menu@NCURSES6_5.0.19991023 6
+ item_count@NCURSES6_5.0.19991023 6
+ item_description@NCURSES6_5.0.19991023 6
+ item_index@NCURSES6_5.0.19991023 6
+ item_init@NCURSES6_5.0.19991023 6
+ item_name@NCURSES6_5.0.19991023 6
+ item_opts@NCURSES6_5.0.19991023 6
+ item_opts_off@NCURSES6_5.0.19991023 6
+ item_opts_on@NCURSES6_5.0.19991023 6
+ item_term@NCURSES6_5.0.19991023 6
+ item_userptr@NCURSES6_5.0.19991023 6
+ item_value@NCURSES6_5.0.19991023 6
+ item_visible@NCURSES6_5.0.19991023 6
+ menu_back@NCURSES6_5.0.19991023 6
+ menu_driver@NCURSES6_5.0.19991023 6
+ menu_fore@NCURSES6_5.0.19991023 6
+ menu_format@NCURSES6_5.0.19991023 6
+ menu_grey@NCURSES6_5.0.19991023 6
+ menu_init@NCURSES6_5.0.19991023 6
+ menu_items@NCURSES6_5.0.19991023 6
+ menu_mark@NCURSES6_5.0.19991023 6
+ menu_opts@NCURSES6_5.0.19991023 6
+ menu_opts_off@NCURSES6_5.0.19991023 6
+ menu_opts_on@NCURSES6_5.0.19991023 6
+ menu_pad@NCURSES6_5.0.19991023 6
+ menu_pattern@NCURSES6_5.0.19991023 6
+ menu_request_by_name@NCURSES6_5.0.19991023 6
+ menu_request_name@NCURSES6_5.0.19991023 6
+ menu_spacing@NCURSES6_5.0.19991023 6
+ menu_sub@NCURSES6_5.0.19991023 6
+ menu_term@NCURSES6_5.0.19991023 6
+ menu_userptr@NCURSES6_5.0.19991023 6
+ menu_win@NCURSES6_5.0.19991023 6
+ new_item@NCURSES6_5.0.19991023 6
+ new_menu@NCURSES6_5.0.19991023 6
+ new_menu_sp@NCURSES6_5.8.20110226 6
+ pos_menu_cursor@NCURSES6_5.0.19991023 6
+ post_menu@NCURSES6_5.0.19991023 6
+ scale_menu@NCURSES6_5.0.19991023 6
+ set_current_item@NCURSES6_5.0.19991023 6
+ set_item_init@NCURSES6_5.0.19991023 6
+ set_item_opts@NCURSES6_5.0.19991023 6
+ set_item_term@NCURSES6_5.0.19991023 6
+ set_item_userptr@NCURSES6_5.0.19991023 6
+ set_item_value@NCURSES6_5.0.19991023 6
+ set_menu_back@NCURSES6_5.0.19991023 6
+ set_menu_fore@NCURSES6_5.0.19991023 6
+ set_menu_format@NCURSES6_5.0.19991023 6
+ set_menu_grey@NCURSES6_5.0.19991023 6
+ set_menu_init@NCURSES6_5.0.19991023 6
+ set_menu_items@NCURSES6_5.0.19991023 6
+ set_menu_mark@NCURSES6_5.0.19991023 6
+ set_menu_opts@NCURSES6_5.0.19991023 6
+ set_menu_pad@NCURSES6_5.0.19991023 6
+ set_menu_pattern@NCURSES6_5.0.19991023 6
+ set_menu_spacing@NCURSES6_5.0.19991023 6
+ set_menu_sub@NCURSES6_5.0.19991023 6
+ set_menu_term@NCURSES6_5.0.19991023 6
+ set_menu_userptr@NCURSES6_5.0.19991023 6
+ set_menu_win@NCURSES6_5.0.19991023 6
+ set_top_row@NCURSES6_5.0.19991023 6
+ top_row@NCURSES6_5.0.19991023 6
+ unpost_menu@NCURSES6_5.0.19991023 6
+libncurses.so.6 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: libncurses-dev
+ COLORS@NCURSES6_5.0.19991023 6
+ COLOR_PAIR@NCURSES6_5.0.19991023 6
+ COLOR_PAIRS@NCURSES6_5.0.19991023 6
+ ESCDELAY@NCURSES6_5.0.19991023 6
+ NCURSES6_5.0.19991023@NCURSES6_5.0.19991023 6
+ NCURSES6_5.1.20000708@NCURSES6_5.1.20000708 6
+ NCURSES6_5.3.20021019@NCURSES6_5.3.20021019 6
+ NCURSES6_5.4.20040208@NCURSES6_5.4.20040208 6
+ NCURSES6_5.5.20051010@NCURSES6_5.5.20051010 6
+ NCURSES6_5.6.20061217@NCURSES6_5.6.20061217 6
+ NCURSES6_5.7.20081102@NCURSES6_5.7.20081102 6
+ NCURSES6_5.8.20110226@NCURSES6_5.8.20110226 6
+ NCURSES6_5.9.20150530@NCURSES6_5.9.20150530 6
+ NCURSES6_6.1.20171230@NCURSES6_6.1.20171230 6.1
+ NCURSES6_TIC_5.0.19991023@NCURSES6_TIC_5.0.19991023 6
+ NCURSES6_TIC_5.1.20000708@NCURSES6_TIC_5.1.20000708 6
+ NCURSES6_TIC_5.5.20051010@NCURSES6_TIC_5.5.20051010 6
+ NCURSES6_TIC_5.7.20081102@NCURSES6_TIC_5.7.20081102 6
+ NCURSES6_TIC_5.9.20150530@NCURSES6_TIC_5.9.20150530 6
+ NCURSES6_TIC_6.1.20171230@NCURSES6_TIC_6.1.20171230 6.1
+ NCURSES6_TINFO_5.0.19991023@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TINFO_5.1.20000708@NCURSES6_TINFO_5.1.20000708 6
+ NCURSES6_TINFO_5.2.20001021@NCURSES6_TINFO_5.2.20001021 6
+ NCURSES6_TINFO_5.3.20021019@NCURSES6_TINFO_5.3.20021019 6
+ NCURSES6_TINFO_5.4.20040208@NCURSES6_TINFO_5.4.20040208 6
+ NCURSES6_TINFO_5.5.20051010@NCURSES6_TINFO_5.5.20051010 6
+ NCURSES6_TINFO_5.6.20061217@NCURSES6_TINFO_5.6.20061217 6
+ NCURSES6_TINFO_5.7.20081102@NCURSES6_TINFO_5.7.20081102 6
+ NCURSES6_TINFO_5.8.20110226@NCURSES6_TINFO_5.8.20110226 6
+ NCURSES6_TINFO_5.9.20150530@NCURSES6_TINFO_5.9.20150530 6
+ NCURSES6_TINFO_6.1.20171230@NCURSES6_TINFO_6.1.20171230 6.1
+ NCURSES6_TINFO_6.1.current@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ PAIR_NUMBER@NCURSES6_5.0.19991023 6
+ _nc_free_and_exit@NCURSES6_5.0.19991023 6
+ _nc_freeall@NCURSES6_TINFO_5.0.19991023 6
+ _nc_panelhook@NCURSES6_5.0.19991023 6
+ _nc_panelhook_sp@NCURSES6_5.8.20110226 6
+ _nc_ripoffline@NCURSES6_5.0.19991023 6
+ addch@NCURSES6_5.0.19991023 6
+ addchnstr@NCURSES6_5.0.19991023 6
+ addchstr@NCURSES6_5.0.19991023 6
+ addnstr@NCURSES6_5.0.19991023 6
+ addstr@NCURSES6_5.0.19991023 6
+ assume_default_colors@NCURSES6_5.1.20000708 6
+ assume_default_colors_sp@NCURSES6_5.8.20110226 6
+ attr_get@NCURSES6_5.0.19991023 6
+ attr_off@NCURSES6_5.0.19991023 6
+ attr_on@NCURSES6_5.0.19991023 6
+ attr_set@NCURSES6_5.0.19991023 6
+ attroff@NCURSES6_5.0.19991023 6
+ attron@NCURSES6_5.0.19991023 6
+ attrset@NCURSES6_5.0.19991023 6
+ beep@NCURSES6_5.0.19991023 6
+ beep_sp@NCURSES6_5.8.20110226 6
+ bkgd@NCURSES6_5.0.19991023 6
+ bkgdset@NCURSES6_5.0.19991023 6
+ border@NCURSES6_5.0.19991023 6
+ box@NCURSES6_5.0.19991023 6
+ can_change_color@NCURSES6_5.0.19991023 6
+ can_change_color_sp@NCURSES6_5.8.20110226 6
+ chgat@NCURSES6_5.0.19991023 6
+ clear@NCURSES6_5.0.19991023 6
+ clearok@NCURSES6_5.0.19991023 6
+ clrtobot@NCURSES6_5.0.19991023 6
+ clrtoeol@NCURSES6_5.0.19991023 6
+ color_content@NCURSES6_5.0.19991023 6
+ color_content_sp@NCURSES6_5.8.20110226 6
+ color_set@NCURSES6_5.0.19991023 6
+ copywin@NCURSES6_5.0.19991023 6
+ delch@NCURSES6_5.0.19991023 6
+ deleteln@NCURSES6_5.0.19991023 6
+ delscreen@NCURSES6_5.0.19991023 6
+ delwin@NCURSES6_5.0.19991023 6
+ derwin@NCURSES6_5.0.19991023 6
+ doupdate@NCURSES6_5.0.19991023 6
+ doupdate_sp@NCURSES6_5.8.20110226 6
+ dupwin@NCURSES6_5.0.19991023 6
+ echo@NCURSES6_5.0.19991023 6
+ echo_sp@NCURSES6_5.8.20110226 6
+ echochar@NCURSES6_5.0.19991023 6
+ endwin@NCURSES6_5.0.19991023 6
+ endwin_sp@NCURSES6_5.8.20110226 6
+ erase@NCURSES6_5.1.20000708 6
+ filter@NCURSES6_5.0.19991023 6
+ filter_sp@NCURSES6_5.8.20110226 6
+ flash@NCURSES6_5.0.19991023 6
+ flash_sp@NCURSES6_5.8.20110226 6
+ get_escdelay@NCURSES6_5.8.20110226 6
+ get_escdelay_sp@NCURSES6_5.8.20110226 6
+ getattrs@NCURSES6_5.7.20081102 6
+ getbegx@NCURSES6_5.6.20061217 6
+ getbegy@NCURSES6_5.6.20061217 6
+ getbkgd@NCURSES6_5.0.19991023 6
+ getch@NCURSES6_5.0.19991023 6
+ getcurx@NCURSES6_5.6.20061217 6
+ getcury@NCURSES6_5.6.20061217 6
+ getmaxx@NCURSES6_5.6.20061217 6
+ getmaxy@NCURSES6_5.6.20061217 6
+ getmouse@NCURSES6_5.0.19991023 6
+ getmouse_sp@NCURSES6_5.8.20110226 6
+ getnstr@NCURSES6_5.0.19991023 6
+ getparx@NCURSES6_5.6.20061217 6
+ getpary@NCURSES6_5.6.20061217 6
+ getstr@NCURSES6_5.0.19991023 6
+ getwin@NCURSES6_5.0.19991023 6
+ getwin_sp@NCURSES6_5.8.20110226 6
+ has_colors@NCURSES6_5.0.19991023 6
+ has_colors_sp@NCURSES6_5.8.20110226 6
+ has_mouse@NCURSES6_5.8.20110226 6
+ has_mouse_sp@NCURSES6_5.8.20110226 6
+ hline@NCURSES6_5.0.19991023 6
+ immedok@NCURSES6_5.0.19991023 6
+ inch@NCURSES6_5.0.19991023 6
+ inchnstr@NCURSES6_5.0.19991023 6
+ inchstr@NCURSES6_5.0.19991023 6
+ init_color@NCURSES6_5.0.19991023 6
+ init_color_sp@NCURSES6_5.8.20110226 6
+ init_pair@NCURSES6_5.0.19991023 6
+ init_pair_sp@NCURSES6_5.8.20110226 6
+ initscr@NCURSES6_5.0.19991023 6
+ innstr@NCURSES6_5.0.19991023 6
+ insch@NCURSES6_5.0.19991023 6
+ insdelln@NCURSES6_5.0.19991023 6
+ insertln@NCURSES6_5.0.19991023 6
+ insnstr@NCURSES6_5.0.19991023 6
+ insstr@NCURSES6_5.0.19991023 6
+ instr@NCURSES6_5.0.19991023 6
+ is_cleared@NCURSES6_5.7.20081102 6
+ is_idcok@NCURSES6_5.7.20081102 6
+ is_idlok@NCURSES6_5.7.20081102 6
+ is_immedok@NCURSES6_5.7.20081102 6
+ is_keypad@NCURSES6_5.7.20081102 6
+ is_leaveok@NCURSES6_5.7.20081102 6
+ is_linetouched@NCURSES6_5.0.19991023 6
+ is_nodelay@NCURSES6_5.7.20081102 6
+ is_notimeout@NCURSES6_5.7.20081102 6
+ is_pad@NCURSES6_5.8.20110226 6
+ is_scrollok@NCURSES6_5.7.20081102 6
+ is_subwin@NCURSES6_5.8.20110226 6
+ is_syncok@NCURSES6_5.7.20081102 6
+ is_term_resized@NCURSES6_5.3.20021019 6
+ is_term_resized_sp@NCURSES6_5.8.20110226 6
+ is_wintouched@NCURSES6_5.0.19991023 6
+ isendwin@NCURSES6_5.0.19991023 6
+ isendwin_sp@NCURSES6_5.8.20110226 6
+ leaveok@NCURSES6_5.0.19991023 6
+ mcprint@NCURSES6_5.0.19991023 6
+ mcprint_sp@NCURSES6_5.8.20110226 6
+ mouse_trafo@NCURSES6_5.0.19991023 6
+ mouseinterval@NCURSES6_5.0.19991023 6
+ mouseinterval_sp@NCURSES6_5.8.20110226 6
+ mousemask@NCURSES6_5.0.19991023 6
+ mousemask_sp@NCURSES6_5.8.20110226 6
+ move@NCURSES6_5.0.19991023 6
+ mvaddch@NCURSES6_5.0.19991023 6
+ mvaddchnstr@NCURSES6_5.0.19991023 6
+ mvaddchstr@NCURSES6_5.0.19991023 6
+ mvaddnstr@NCURSES6_5.0.19991023 6
+ mvaddstr@NCURSES6_5.0.19991023 6
+ mvchgat@NCURSES6_5.0.19991023 6
+ mvcur@NCURSES6_5.0.19991023 6
+ mvcur_sp@NCURSES6_5.8.20110226 6
+ mvdelch@NCURSES6_5.0.19991023 6
+ mvderwin@NCURSES6_5.0.19991023 6
+ mvgetch@NCURSES6_5.0.19991023 6
+ mvgetnstr@NCURSES6_5.0.19991023 6
+ mvgetstr@NCURSES6_5.0.19991023 6
+ mvhline@NCURSES6_5.0.19991023 6
+ mvinch@NCURSES6_5.0.19991023 6
+ mvinchnstr@NCURSES6_5.0.19991023 6
+ mvinchstr@NCURSES6_5.0.19991023 6
+ mvinnstr@NCURSES6_5.0.19991023 6
+ mvinsch@NCURSES6_5.0.19991023 6
+ mvinsnstr@NCURSES6_5.0.19991023 6
+ mvinsstr@NCURSES6_5.0.19991023 6
+ mvinstr@NCURSES6_5.0.19991023 6
+ mvprintw@NCURSES6_5.0.19991023 6
+ mvscanw@NCURSES6_5.0.19991023 6
+ mvvline@NCURSES6_5.0.19991023 6
+ mvwaddch@NCURSES6_5.0.19991023 6
+ mvwaddchnstr@NCURSES6_5.0.19991023 6
+ mvwaddchstr@NCURSES6_5.0.19991023 6
+ mvwaddnstr@NCURSES6_5.0.19991023 6
+ mvwaddstr@NCURSES6_5.0.19991023 6
+ mvwchgat@NCURSES6_5.0.19991023 6
+ mvwdelch@NCURSES6_5.0.19991023 6
+ mvwgetch@NCURSES6_5.0.19991023 6
+ mvwgetnstr@NCURSES6_5.0.19991023 6
+ mvwgetstr@NCURSES6_5.0.19991023 6
+ mvwhline@NCURSES6_5.0.19991023 6
+ mvwin@NCURSES6_5.0.19991023 6
+ mvwinch@NCURSES6_5.0.19991023 6
+ mvwinchnstr@NCURSES6_5.0.19991023 6
+ mvwinchstr@NCURSES6_5.0.19991023 6
+ mvwinnstr@NCURSES6_5.0.19991023 6
+ mvwinsch@NCURSES6_5.0.19991023 6
+ mvwinsnstr@NCURSES6_5.0.19991023 6
+ mvwinsstr@NCURSES6_5.0.19991023 6
+ mvwinstr@NCURSES6_5.0.19991023 6
+ mvwprintw@NCURSES6_5.0.19991023 6
+ mvwscanw@NCURSES6_5.0.19991023 6
+ mvwvline@NCURSES6_5.0.19991023 6
+ newpad@NCURSES6_5.0.19991023 6
+ newpad_sp@NCURSES6_5.8.20110226 6
+ newterm@NCURSES6_5.0.19991023 6
+ newterm_sp@NCURSES6_5.8.20110226 6
+ newwin@NCURSES6_5.0.19991023 6
+ newwin_sp@NCURSES6_5.8.20110226 6
+ nl@NCURSES6_5.0.19991023 6
+ nl_sp@NCURSES6_5.8.20110226 6
+ noecho@NCURSES6_5.0.19991023 6
+ noecho_sp@NCURSES6_5.8.20110226 6
+ nofilter@NCURSES6_5.6.20061217 6
+ nofilter_sp@NCURSES6_5.8.20110226 6
+ nonl@NCURSES6_5.0.19991023 6
+ nonl_sp@NCURSES6_5.8.20110226 6
+ overlay@NCURSES6_5.0.19991023 6
+ overwrite@NCURSES6_5.0.19991023 6
+ pair_content@NCURSES6_5.0.19991023 6
+ pair_content_sp@NCURSES6_5.8.20110226 6
+ pechochar@NCURSES6_5.0.19991023 6
+ pnoutrefresh@NCURSES6_5.0.19991023 6
+ prefresh@NCURSES6_5.0.19991023 6
+ printw@NCURSES6_5.0.19991023 6
+ putwin@NCURSES6_5.0.19991023 6
+ redrawwin@NCURSES6_5.0.19991023 6
+ refresh@NCURSES6_5.0.19991023 6
+ resize_term@NCURSES6_5.3.20021019 6
+ resize_term_sp@NCURSES6_5.8.20110226 6
+ resizeterm@NCURSES6_5.0.19991023 6
+ resizeterm_sp@NCURSES6_5.8.20110226 6
+ restartterm@NCURSES6_5.0.19991023 6
+ restartterm_sp@NCURSES6_5.8.20110226 6
+ ripoffline@NCURSES6_5.0.19991023 6
+ ripoffline_sp@NCURSES6_5.8.20110226 6
+ scanw@NCURSES6_5.0.19991023 6
+ scr_dump@NCURSES6_5.0.19991023 6
+ scr_init@NCURSES6_5.0.19991023 6
+ scr_init_sp@NCURSES6_5.8.20110226 6
+ scr_restore@NCURSES6_5.0.19991023 6
+ scr_restore_sp@NCURSES6_5.8.20110226 6
+ scr_set@NCURSES6_5.0.19991023 6
+ scr_set_sp@NCURSES6_5.8.20110226 6
+ scrl@NCURSES6_5.0.19991023 6
+ scroll@NCURSES6_5.0.19991023 6
+ scrollok@NCURSES6_5.0.19991023 6
+ set_escdelay@NCURSES6_5.7.20081102 6
+ set_escdelay_sp@NCURSES6_5.8.20110226 6
+ set_term@NCURSES6_5.0.19991023 6
+ setscrreg@NCURSES6_5.0.19991023 6
+ slk_attr@NCURSES6_5.0.19991023 6
+ slk_attr_set@NCURSES6_5.0.19991023 6
+ slk_attr_set_sp@NCURSES6_5.8.20110226 6
+ slk_attr_sp@NCURSES6_5.8.20110226 6
+ slk_attroff@NCURSES6_5.0.19991023 6
+ slk_attroff_sp@NCURSES6_5.8.20110226 6
+ slk_attron@NCURSES6_5.0.19991023 6
+ slk_attron_sp@NCURSES6_5.8.20110226 6
+ slk_attrset@NCURSES6_5.0.19991023 6
+ slk_attrset_sp@NCURSES6_5.8.20110226 6
+ slk_clear@NCURSES6_5.0.19991023 6
+ slk_clear_sp@NCURSES6_5.8.20110226 6
+ slk_color@NCURSES6_5.0.19991023 6
+ slk_color_sp@NCURSES6_5.8.20110226 6
+ slk_init@NCURSES6_5.0.19991023 6
+ slk_init_sp@NCURSES6_5.8.20110226 6
+ slk_label@NCURSES6_5.0.19991023 6
+ slk_label_sp@NCURSES6_5.8.20110226 6
+ slk_noutrefresh@NCURSES6_5.0.19991023 6
+ slk_noutrefresh_sp@NCURSES6_5.8.20110226 6
+ slk_refresh@NCURSES6_5.0.19991023 6
+ slk_refresh_sp@NCURSES6_5.8.20110226 6
+ slk_restore@NCURSES6_5.0.19991023 6
+ slk_restore_sp@NCURSES6_5.8.20110226 6
+ slk_set@NCURSES6_5.0.19991023 6
+ slk_set_sp@NCURSES6_5.8.20110226 6
+ slk_touch@NCURSES6_5.0.19991023 6
+ slk_touch_sp@NCURSES6_5.8.20110226 6
+ standend@NCURSES6_5.0.19991023 6
+ standout@NCURSES6_5.0.19991023 6
+ start_color@NCURSES6_5.0.19991023 6
+ start_color_sp@NCURSES6_5.8.20110226 6
+ subpad@NCURSES6_5.0.19991023 6
+ subwin@NCURSES6_5.0.19991023 6
+ syncok@NCURSES6_5.0.19991023 6
+ termattrs@NCURSES6_5.0.19991023 6
+ termattrs_sp@NCURSES6_5.8.20110226 6
+ timeout@NCURSES6_5.0.19991023 6
+ touchline@NCURSES6_5.1.20000708 6
+ touchwin@NCURSES6_5.1.20000708 6
+ ungetch@NCURSES6_5.0.19991023 6
+ ungetch_sp@NCURSES6_5.8.20110226 6
+ ungetmouse@NCURSES6_5.0.19991023 6
+ ungetmouse_sp@NCURSES6_5.8.20110226 6
+ untouchwin@NCURSES6_5.0.19991023 6
+ use_default_colors@NCURSES6_5.0.19991023 6
+ use_default_colors_sp@NCURSES6_5.8.20110226 6
+ use_legacy_coding@NCURSES6_5.6.20061217 6
+ use_legacy_coding_sp@NCURSES6_5.8.20110226 6
+ use_screen@NCURSES6_5.7.20081102 6
+ use_window@NCURSES6_5.7.20081102 6
+ vidattr@NCURSES6_5.0.19991023 6
+ vidattr_sp@NCURSES6_5.8.20110226 6
+ vidputs@NCURSES6_5.0.19991023 6
+ vidputs_sp@NCURSES6_5.8.20110226 6
+ vline@NCURSES6_5.0.19991023 6
+ vw_printw@NCURSES6_5.0.19991023 6
+ vw_scanw@NCURSES6_5.0.19991023 6
+ vwprintw@NCURSES6_5.0.19991023 6
+ vwscanw@NCURSES6_5.0.19991023 6
+ waddch@NCURSES6_5.0.19991023 6
+ waddchnstr@NCURSES6_5.0.19991023 6
+ waddchstr@NCURSES6_5.0.19991023 6
+ waddnstr@NCURSES6_5.0.19991023 6
+ waddstr@NCURSES6_5.0.19991023 6
+ wattr_get@NCURSES6_5.0.19991023 6
+ wattr_off@NCURSES6_5.0.19991023 6
+ wattr_on@NCURSES6_5.0.19991023 6
+ wattr_set@NCURSES6_5.0.19991023 6
+ wattroff@NCURSES6_5.0.19991023 6
+ wattron@NCURSES6_5.0.19991023 6
+ wattrset@NCURSES6_5.0.19991023 6
+ wbkgd@NCURSES6_5.0.19991023 6
+ wbkgdset@NCURSES6_5.0.19991023 6
+ wborder@NCURSES6_5.0.19991023 6
+ wchgat@NCURSES6_5.0.19991023 6
+ wclear@NCURSES6_5.0.19991023 6
+ wclrtobot@NCURSES6_5.0.19991023 6
+ wclrtoeol@NCURSES6_5.0.19991023 6
+ wcolor_set@NCURSES6_5.0.19991023 6
+ wcursyncup@NCURSES6_5.0.19991023 6
+ wdelch@NCURSES6_5.0.19991023 6
+ wdeleteln@NCURSES6_5.0.19991023 6
+ wechochar@NCURSES6_5.0.19991023 6
+ wenclose@NCURSES6_5.0.19991023 6
+ werase@NCURSES6_5.0.19991023 6
+ wgetch@NCURSES6_5.0.19991023 6
+ wgetdelay@NCURSES6_5.9.20150530 6
+ wgetnstr@NCURSES6_5.0.19991023 6
+ wgetparent@NCURSES6_5.7.20081102 6
+ wgetscrreg@NCURSES6_5.7.20081102 6
+ wgetstr@NCURSES6_5.0.19991023 6
+ whline@NCURSES6_5.0.19991023 6
+ winch@NCURSES6_5.0.19991023 6
+ winchnstr@NCURSES6_5.0.19991023 6
+ winchstr@NCURSES6_5.0.19991023 6
+ winnstr@NCURSES6_5.0.19991023 6
+ winsch@NCURSES6_5.0.19991023 6
+ winsdelln@NCURSES6_5.0.19991023 6
+ winsertln@NCURSES6_5.0.19991023 6
+ winsnstr@NCURSES6_5.0.19991023 6
+ winsstr@NCURSES6_5.0.19991023 6
+ winstr@NCURSES6_5.0.19991023 6
+ wmouse_trafo@NCURSES6_5.0.19991023 6
+ wmove@NCURSES6_5.0.19991023 6
+ wnoutrefresh@NCURSES6_5.0.19991023 6
+ wprintw@NCURSES6_5.0.19991023 6
+ wredrawln@NCURSES6_5.0.19991023 6
+ wrefresh@NCURSES6_5.0.19991023 6
+ wresize@NCURSES6_5.0.19991023 6
+ wscanw@NCURSES6_5.0.19991023 6
+ wscrl@NCURSES6_5.0.19991023 6
+ wsetscrreg@NCURSES6_5.0.19991023 6
+ wstandend@NCURSES6_5.0.19991023 6
+ wstandout@NCURSES6_5.0.19991023 6
+ wsyncdown@NCURSES6_5.0.19991023 6
+ wsyncup@NCURSES6_5.0.19991023 6
+ wtouchln@NCURSES6_5.0.19991023 6
+ wvline@NCURSES6_5.0.19991023 6
+libpanel.so.6 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: libncurses-dev
+ NCURSES6_5.0.19991023@NCURSES6_5.0.19991023 6
+ NCURSES6_5.1.20000708@NCURSES6_5.1.20000708 6
+ NCURSES6_5.3.20021019@NCURSES6_5.3.20021019 6
+ NCURSES6_5.4.20040208@NCURSES6_5.4.20040208 6
+ NCURSES6_5.5.20051010@NCURSES6_5.5.20051010 6
+ NCURSES6_5.6.20061217@NCURSES6_5.6.20061217 6
+ NCURSES6_5.7.20081102@NCURSES6_5.7.20081102 6
+ NCURSES6_5.8.20110226@NCURSES6_5.8.20110226 6
+ NCURSES6_5.9.20150530@NCURSES6_5.9.20150530 6
+ NCURSES6_6.1.20171230@NCURSES6_6.1.20171230 6.1
+ NCURSES6_TIC_5.0.19991023@NCURSES6_TIC_5.0.19991023 6
+ NCURSES6_TIC_5.1.20000708@NCURSES6_TIC_5.1.20000708 6
+ NCURSES6_TIC_5.5.20051010@NCURSES6_TIC_5.5.20051010 6
+ NCURSES6_TIC_5.7.20081102@NCURSES6_TIC_5.7.20081102 6
+ NCURSES6_TIC_5.9.20150530@NCURSES6_TIC_5.9.20150530 6
+ NCURSES6_TIC_6.1.20171230@NCURSES6_TIC_6.1.20171230 6.1
+ NCURSES6_TINFO_5.0.19991023@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TINFO_5.1.20000708@NCURSES6_TINFO_5.1.20000708 6
+ NCURSES6_TINFO_5.2.20001021@NCURSES6_TINFO_5.2.20001021 6
+ NCURSES6_TINFO_5.3.20021019@NCURSES6_TINFO_5.3.20021019 6
+ NCURSES6_TINFO_5.4.20040208@NCURSES6_TINFO_5.4.20040208 6
+ NCURSES6_TINFO_5.5.20051010@NCURSES6_TINFO_5.5.20051010 6
+ NCURSES6_TINFO_5.6.20061217@NCURSES6_TINFO_5.6.20061217 6
+ NCURSES6_TINFO_5.7.20081102@NCURSES6_TINFO_5.7.20081102 6
+ NCURSES6_TINFO_5.8.20110226@NCURSES6_TINFO_5.8.20110226 6
+ NCURSES6_TINFO_5.9.20150530@NCURSES6_TINFO_5.9.20150530 6
+ NCURSES6_TINFO_6.1.20171230@NCURSES6_TINFO_6.1.20171230 6.1
+ NCURSES6_TINFO_6.1.current@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ bottom_panel@NCURSES6_5.0.19991023 6
+ ceiling_panel@NCURSES6_5.8.20110226 6
+ del_panel@NCURSES6_5.0.19991023 6
+ ground_panel@NCURSES6_5.8.20110226 6
+ hide_panel@NCURSES6_5.0.19991023 6
+ move_panel@NCURSES6_5.0.19991023 6
+ new_panel@NCURSES6_5.0.19991023 6
+ panel_above@NCURSES6_5.0.19991023 6
+ panel_below@NCURSES6_5.0.19991023 6
+ panel_hidden@NCURSES6_5.0.19991023 6
+ panel_userptr@NCURSES6_5.0.19991023 6
+ panel_window@NCURSES6_5.0.19991023 6
+ replace_panel@NCURSES6_5.0.19991023 6
+ set_panel_userptr@NCURSES6_5.0.19991023 6
+ show_panel@NCURSES6_5.0.19991023 6
+ top_panel@NCURSES6_5.0.19991023 6
+ update_panels@NCURSES6_5.0.19991023 6
+ update_panels_sp@NCURSES6_5.8.20110226 6
diff --git a/debian/libncursesw5.install.in b/debian/libncursesw5.install.in
new file mode 100644
index 0000000..ed05937
--- /dev/null
+++ b/debian/libncursesw5.install.in
@@ -0,0 +1,4 @@
+obj-wide-legacy/lib/libncursesw.so.* lib/${DEB_HOST_MULTIARCH}/
+obj-wide-legacy/lib/libpanelw.so.* usr/lib/${DEB_HOST_MULTIARCH}
+obj-wide-legacy/lib/libformw.so.* usr/lib/${DEB_HOST_MULTIARCH}
+obj-wide-legacy/lib/libmenuw.so.* usr/lib/${DEB_HOST_MULTIARCH}
diff --git a/debian/libncursesw5.symbols b/debian/libncursesw5.symbols
new file mode 100644
index 0000000..f682644
--- /dev/null
+++ b/debian/libncursesw5.symbols
@@ -0,0 +1,664 @@
+libformw.so.5 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: #PACKAGE#
+ NCURSESW_5.1.20000708@NCURSESW_5.1.20000708 6
+ NCURSESW_5.3.20021019@NCURSESW_5.3.20021019 6
+ NCURSESW_5.4.20040208@NCURSESW_5.4.20040208 6
+ NCURSESW_5.5.20051010@NCURSESW_5.5.20051010 6
+ NCURSESW_5.6.20061217@NCURSESW_5.6.20061217 6
+ NCURSESW_5.7.20081102@NCURSESW_5.7.20081102 6
+ NCURSESW_5.8.20110226@NCURSESW_5.8.20110226 6
+ NCURSESW_5.9.20150530@NCURSESW_5.9.20150530 6
+ NCURSESW_6.1.20171230@NCURSESW_6.1.20171230 6.1
+ NCURSES_TIC_5.0.19991023@NCURSES_TIC_5.0.19991023 6
+ NCURSES_TIC_5.1.20000708@NCURSES_TIC_5.1.20000708 6
+ NCURSES_TIC_5.5.20051010@NCURSES_TIC_5.5.20051010 6
+ NCURSES_TIC_5.7.20081102@NCURSES_TIC_5.7.20081102 6
+ NCURSES_TIC_5.9.20150530@NCURSES_TIC_5.9.20150530 6
+ NCURSES_TIC_6.1.20171230@NCURSES_TIC_6.1.20171230 6.1
+ NCURSES_TINFO_5.0.19991023@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_TINFO_5.1.20000708@NCURSES_TINFO_5.1.20000708 6
+ NCURSES_TINFO_5.2.20001021@NCURSES_TINFO_5.2.20001021 6
+ NCURSES_TINFO_5.3.20021019@NCURSES_TINFO_5.3.20021019 6
+ NCURSES_TINFO_5.4.20040208@NCURSES_TINFO_5.4.20040208 6
+ NCURSES_TINFO_5.5.20051010@NCURSES_TINFO_5.5.20051010 6
+ NCURSES_TINFO_5.6.20061217@NCURSES_TINFO_5.6.20061217 6
+ NCURSES_TINFO_5.7.20081102@NCURSES_TINFO_5.7.20081102 6
+ NCURSES_TINFO_5.8.20110226@NCURSES_TINFO_5.8.20110226 6
+ NCURSES_TINFO_5.9.20150530@NCURSES_TINFO_5.9.20150530 6
+ NCURSES_TINFO_6.1.20171230@NCURSES_TINFO_6.1.20171230 6.1
+ NCURSES_TINFO_6.1.current@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ TYPE_ALNUM@NCURSESW_5.1.20000708 6
+ TYPE_ALPHA@NCURSESW_5.1.20000708 6
+ TYPE_ENUM@NCURSESW_5.1.20000708 6
+ TYPE_INTEGER@NCURSESW_5.1.20000708 6
+ TYPE_IPV4@NCURSESW_5.1.20000708 6
+ TYPE_NUMERIC@NCURSESW_5.1.20000708 6
+ TYPE_REGEXP@NCURSESW_5.1.20000708 6
+ _nc_Default_Field@NCURSESW_5.1.20000708 6
+ _nc_Default_Form@NCURSESW_5.1.20000708 6
+ current_field@NCURSESW_5.1.20000708 6
+ data_ahead@NCURSESW_5.1.20000708 6
+ data_behind@NCURSESW_5.1.20000708 6
+ dup_field@NCURSESW_5.1.20000708 6
+ dynamic_field_info@NCURSESW_5.1.20000708 6
+ field_arg@NCURSESW_5.1.20000708 6
+ field_back@NCURSESW_5.1.20000708 6
+ field_buffer@NCURSESW_5.1.20000708 6
+ field_count@NCURSESW_5.1.20000708 6
+ field_fore@NCURSESW_5.1.20000708 6
+ field_index@NCURSESW_5.1.20000708 6
+ field_info@NCURSESW_5.1.20000708 6
+ field_init@NCURSESW_5.1.20000708 6
+ field_just@NCURSESW_5.1.20000708 6
+ field_opts@NCURSESW_5.1.20000708 6
+ field_opts_off@NCURSESW_5.1.20000708 6
+ field_opts_on@NCURSESW_5.1.20000708 6
+ field_pad@NCURSESW_5.1.20000708 6
+ field_status@NCURSESW_5.1.20000708 6
+ field_term@NCURSESW_5.1.20000708 6
+ field_type@NCURSESW_5.1.20000708 6
+ field_userptr@NCURSESW_5.1.20000708 6
+ form_driver@NCURSESW_5.1.20000708 6
+ form_driver_w@NCURSESW_5.9.20150530 6
+ form_fields@NCURSESW_5.1.20000708 6
+ form_init@NCURSESW_5.1.20000708 6
+ form_opts@NCURSESW_5.1.20000708 6
+ form_opts_off@NCURSESW_5.1.20000708 6
+ form_opts_on@NCURSESW_5.1.20000708 6
+ form_page@NCURSESW_5.1.20000708 6
+ form_request_by_name@NCURSESW_5.1.20000708 6
+ form_request_name@NCURSESW_5.1.20000708 6
+ form_sub@NCURSESW_5.1.20000708 6
+ form_term@NCURSESW_5.1.20000708 6
+ form_userptr@NCURSESW_5.1.20000708 6
+ form_win@NCURSESW_5.1.20000708 6
+ free_field@NCURSESW_5.1.20000708 6
+ free_fieldtype@NCURSESW_5.1.20000708 6
+ free_form@NCURSESW_5.1.20000708 6
+ link_field@NCURSESW_5.1.20000708 6
+ link_fieldtype@NCURSESW_5.1.20000708 6
+ move_field@NCURSESW_5.1.20000708 6
+ new_field@NCURSESW_5.1.20000708 6
+ new_fieldtype@NCURSESW_5.1.20000708 6
+ new_form@NCURSESW_5.1.20000708 6
+ new_page@NCURSESW_5.1.20000708 6
+ pos_form_cursor@NCURSESW_5.1.20000708 6
+ post_form@NCURSESW_5.1.20000708 6
+ scale_form@NCURSESW_5.1.20000708 6
+ set_current_field@NCURSESW_5.1.20000708 6
+ set_field_back@NCURSESW_5.1.20000708 6
+ set_field_buffer@NCURSESW_5.1.20000708 6
+ set_field_fore@NCURSESW_5.1.20000708 6
+ set_field_init@NCURSESW_5.1.20000708 6
+ set_field_just@NCURSESW_5.1.20000708 6
+ set_field_opts@NCURSESW_5.1.20000708 6
+ set_field_pad@NCURSESW_5.1.20000708 6
+ set_field_status@NCURSESW_5.1.20000708 6
+ set_field_term@NCURSESW_5.1.20000708 6
+ set_field_type@NCURSESW_5.1.20000708 6
+ set_field_userptr@NCURSESW_5.1.20000708 6
+ set_fieldtype_arg@NCURSESW_5.1.20000708 6
+ set_fieldtype_choice@NCURSESW_5.1.20000708 6
+ set_form_fields@NCURSESW_5.1.20000708 6
+ set_form_init@NCURSESW_5.1.20000708 6
+ set_form_opts@NCURSESW_5.1.20000708 6
+ set_form_page@NCURSESW_5.1.20000708 6
+ set_form_sub@NCURSESW_5.1.20000708 6
+ set_form_term@NCURSESW_5.1.20000708 6
+ set_form_userptr@NCURSESW_5.1.20000708 6
+ set_form_win@NCURSESW_5.1.20000708 6
+ set_max_field@NCURSESW_5.1.20000708 6
+ set_new_page@NCURSESW_5.1.20000708 6
+ unfocus_current_field@NCURSESW_6.1.20171230 6.1
+ unpost_form@NCURSESW_5.1.20000708 6
+libmenuw.so.5 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: #PACKAGE#
+ NCURSESW_5.1.20000708@NCURSESW_5.1.20000708 6
+ NCURSESW_5.3.20021019@NCURSESW_5.3.20021019 6
+ NCURSESW_5.4.20040208@NCURSESW_5.4.20040208 6
+ NCURSESW_5.5.20051010@NCURSESW_5.5.20051010 6
+ NCURSESW_5.6.20061217@NCURSESW_5.6.20061217 6
+ NCURSESW_5.7.20081102@NCURSESW_5.7.20081102 6
+ NCURSESW_5.8.20110226@NCURSESW_5.8.20110226 6
+ NCURSESW_5.9.20150530@NCURSESW_5.9.20150530 6
+ NCURSESW_6.1.20171230@NCURSESW_6.1.20171230 6.1
+ NCURSES_TIC_5.0.19991023@NCURSES_TIC_5.0.19991023 6
+ NCURSES_TIC_5.1.20000708@NCURSES_TIC_5.1.20000708 6
+ NCURSES_TIC_5.5.20051010@NCURSES_TIC_5.5.20051010 6
+ NCURSES_TIC_5.7.20081102@NCURSES_TIC_5.7.20081102 6
+ NCURSES_TIC_5.9.20150530@NCURSES_TIC_5.9.20150530 6
+ NCURSES_TIC_6.1.20171230@NCURSES_TIC_6.1.20171230 6.1
+ NCURSES_TINFO_5.0.19991023@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_TINFO_5.1.20000708@NCURSES_TINFO_5.1.20000708 6
+ NCURSES_TINFO_5.2.20001021@NCURSES_TINFO_5.2.20001021 6
+ NCURSES_TINFO_5.3.20021019@NCURSES_TINFO_5.3.20021019 6
+ NCURSES_TINFO_5.4.20040208@NCURSES_TINFO_5.4.20040208 6
+ NCURSES_TINFO_5.5.20051010@NCURSES_TINFO_5.5.20051010 6
+ NCURSES_TINFO_5.6.20061217@NCURSES_TINFO_5.6.20061217 6
+ NCURSES_TINFO_5.7.20081102@NCURSES_TINFO_5.7.20081102 6
+ NCURSES_TINFO_5.8.20110226@NCURSES_TINFO_5.8.20110226 6
+ NCURSES_TINFO_5.9.20150530@NCURSES_TINFO_5.9.20150530 6
+ NCURSES_TINFO_6.1.20171230@NCURSES_TINFO_6.1.20171230 6.1
+ NCURSES_TINFO_6.1.current@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ current_item@NCURSESW_5.1.20000708 6
+ free_item@NCURSESW_5.1.20000708 6
+ free_menu@NCURSESW_5.1.20000708 6
+ item_count@NCURSESW_5.1.20000708 6
+ item_description@NCURSESW_5.1.20000708 6
+ item_index@NCURSESW_5.1.20000708 6
+ item_init@NCURSESW_5.1.20000708 6
+ item_name@NCURSESW_5.1.20000708 6
+ item_opts@NCURSESW_5.1.20000708 6
+ item_opts_off@NCURSESW_5.1.20000708 6
+ item_opts_on@NCURSESW_5.1.20000708 6
+ item_term@NCURSESW_5.1.20000708 6
+ item_userptr@NCURSESW_5.1.20000708 6
+ item_value@NCURSESW_5.1.20000708 6
+ item_visible@NCURSESW_5.1.20000708 6
+ menu_back@NCURSESW_5.1.20000708 6
+ menu_driver@NCURSESW_5.1.20000708 6
+ menu_fore@NCURSESW_5.1.20000708 6
+ menu_format@NCURSESW_5.1.20000708 6
+ menu_grey@NCURSESW_5.1.20000708 6
+ menu_init@NCURSESW_5.1.20000708 6
+ menu_items@NCURSESW_5.1.20000708 6
+ menu_mark@NCURSESW_5.1.20000708 6
+ menu_opts@NCURSESW_5.1.20000708 6
+ menu_opts_off@NCURSESW_5.1.20000708 6
+ menu_opts_on@NCURSESW_5.1.20000708 6
+ menu_pad@NCURSESW_5.1.20000708 6
+ menu_pattern@NCURSESW_5.1.20000708 6
+ menu_request_by_name@NCURSESW_5.1.20000708 6
+ menu_request_name@NCURSESW_5.1.20000708 6
+ menu_spacing@NCURSESW_5.1.20000708 6
+ menu_sub@NCURSESW_5.1.20000708 6
+ menu_term@NCURSESW_5.1.20000708 6
+ menu_userptr@NCURSESW_5.1.20000708 6
+ menu_win@NCURSESW_5.1.20000708 6
+ new_item@NCURSESW_5.1.20000708 6
+ new_menu@NCURSESW_5.1.20000708 6
+ pos_menu_cursor@NCURSESW_5.1.20000708 6
+ post_menu@NCURSESW_5.1.20000708 6
+ scale_menu@NCURSESW_5.1.20000708 6
+ set_current_item@NCURSESW_5.1.20000708 6
+ set_item_init@NCURSESW_5.1.20000708 6
+ set_item_opts@NCURSESW_5.1.20000708 6
+ set_item_term@NCURSESW_5.1.20000708 6
+ set_item_userptr@NCURSESW_5.1.20000708 6
+ set_item_value@NCURSESW_5.1.20000708 6
+ set_menu_back@NCURSESW_5.1.20000708 6
+ set_menu_fore@NCURSESW_5.1.20000708 6
+ set_menu_format@NCURSESW_5.1.20000708 6
+ set_menu_grey@NCURSESW_5.1.20000708 6
+ set_menu_init@NCURSESW_5.1.20000708 6
+ set_menu_items@NCURSESW_5.1.20000708 6
+ set_menu_mark@NCURSESW_5.1.20000708 6
+ set_menu_opts@NCURSESW_5.1.20000708 6
+ set_menu_pad@NCURSESW_5.1.20000708 6
+ set_menu_pattern@NCURSESW_5.1.20000708 6
+ set_menu_spacing@NCURSESW_5.1.20000708 6
+ set_menu_sub@NCURSESW_5.1.20000708 6
+ set_menu_term@NCURSESW_5.1.20000708 6
+ set_menu_userptr@NCURSESW_5.1.20000708 6
+ set_menu_win@NCURSESW_5.1.20000708 6
+ set_top_row@NCURSESW_5.1.20000708 6
+ top_row@NCURSESW_5.1.20000708 6
+ unpost_menu@NCURSESW_5.1.20000708 6
+libncursesw.so.5 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: #PACKAGE#
+ COLORS@NCURSESW_5.1.20000708 6
+ COLOR_PAIR@NCURSESW_5.1.20000708 6
+ COLOR_PAIRS@NCURSESW_5.1.20000708 6
+ ESCDELAY@NCURSESW_5.1.20000708 6
+ NCURSESW_5.1.20000708@NCURSESW_5.1.20000708 6
+ NCURSESW_5.3.20021019@NCURSESW_5.3.20021019 6
+ NCURSESW_5.4.20040208@NCURSESW_5.4.20040208 6
+ NCURSESW_5.5.20051010@NCURSESW_5.5.20051010 6
+ NCURSESW_5.6.20061217@NCURSESW_5.6.20061217 6
+ NCURSESW_5.7.20081102@NCURSESW_5.7.20081102 6
+ NCURSESW_5.8.20110226@NCURSESW_5.8.20110226 6
+ NCURSESW_5.9.20150530@NCURSESW_5.9.20150530 6
+ NCURSESW_6.1.20171230@NCURSESW_6.1.20171230 6.1
+ NCURSES_TIC_5.0.19991023@NCURSES_TIC_5.0.19991023 6
+ NCURSES_TIC_5.1.20000708@NCURSES_TIC_5.1.20000708 6
+ NCURSES_TIC_5.5.20051010@NCURSES_TIC_5.5.20051010 6
+ NCURSES_TIC_5.7.20081102@NCURSES_TIC_5.7.20081102 6
+ NCURSES_TIC_5.9.20150530@NCURSES_TIC_5.9.20150530 6
+ NCURSES_TIC_6.1.20171230@NCURSES_TIC_6.1.20171230 6.1
+ NCURSES_TINFO_5.0.19991023@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_TINFO_5.1.20000708@NCURSES_TINFO_5.1.20000708 6
+ NCURSES_TINFO_5.2.20001021@NCURSES_TINFO_5.2.20001021 6
+ NCURSES_TINFO_5.3.20021019@NCURSES_TINFO_5.3.20021019 6
+ NCURSES_TINFO_5.4.20040208@NCURSES_TINFO_5.4.20040208 6
+ NCURSES_TINFO_5.5.20051010@NCURSES_TINFO_5.5.20051010 6
+ NCURSES_TINFO_5.6.20061217@NCURSES_TINFO_5.6.20061217 6
+ NCURSES_TINFO_5.7.20081102@NCURSES_TINFO_5.7.20081102 6
+ NCURSES_TINFO_5.8.20110226@NCURSES_TINFO_5.8.20110226 6
+ NCURSES_TINFO_5.9.20150530@NCURSES_TINFO_5.9.20150530 6
+ NCURSES_TINFO_6.1.20171230@NCURSES_TINFO_6.1.20171230 6.1
+ NCURSES_TINFO_6.1.current@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ PAIR_NUMBER@NCURSESW_5.1.20000708 6
+ _nc_free_and_exit@NCURSESW_5.1.20000708 6
+ _nc_freeall@NCURSES_TINFO_5.0.19991023 6
+ _nc_has_mouse@NCURSESW_5.1.20000708 6
+ _nc_panelhook@NCURSESW_5.1.20000708 6
+ _nc_ripoffline@NCURSESW_5.1.20000708 6
+ _nc_wacs@NCURSESW_5.3.20021019 6
+ _nc_wchstrlen@NCURSESW_5.3.20021019 6
+ _nc_wcrtomb@NCURSESW_5.5.20051010 6
+ add_wch@NCURSESW_5.3.20021019 6
+ add_wchnstr@NCURSESW_5.3.20021019 6
+ add_wchstr@NCURSESW_5.3.20021019 6
+ addch@NCURSESW_5.1.20000708 6
+ addchnstr@NCURSESW_5.1.20000708 6
+ addchstr@NCURSESW_5.1.20000708 6
+ addnstr@NCURSESW_5.1.20000708 6
+ addnwstr@NCURSESW_5.3.20021019 6
+ addstr@NCURSESW_5.1.20000708 6
+ addwstr@NCURSESW_5.3.20021019 6
+ assume_default_colors@NCURSESW_5.1.20000708 6
+ attr_get@NCURSESW_5.1.20000708 6
+ attr_off@NCURSESW_5.1.20000708 6
+ attr_on@NCURSESW_5.1.20000708 6
+ attr_set@NCURSESW_5.1.20000708 6
+ attroff@NCURSESW_5.1.20000708 6
+ attron@NCURSESW_5.1.20000708 6
+ attrset@NCURSESW_5.1.20000708 6
+ beep@NCURSESW_5.1.20000708 6
+ bkgd@NCURSESW_5.1.20000708 6
+ bkgdset@NCURSESW_5.1.20000708 6
+ bkgrnd@NCURSESW_5.3.20021019 6
+ bkgrndset@NCURSESW_5.3.20021019 6
+ border@NCURSESW_5.1.20000708 6
+ border_set@NCURSESW_5.3.20021019 6
+ box@NCURSESW_5.1.20000708 6
+ box_set@NCURSESW_5.3.20021019 6
+ can_change_color@NCURSESW_5.1.20000708 6
+ chgat@NCURSESW_5.1.20000708 6
+ clear@NCURSESW_5.1.20000708 6
+ clearok@NCURSESW_5.1.20000708 6
+ clrtobot@NCURSESW_5.1.20000708 6
+ clrtoeol@NCURSESW_5.1.20000708 6
+ color_content@NCURSESW_5.1.20000708 6
+ color_set@NCURSESW_5.1.20000708 6
+ copywin@NCURSESW_5.1.20000708 6
+ delch@NCURSESW_5.1.20000708 6
+ deleteln@NCURSESW_5.1.20000708 6
+ delscreen@NCURSESW_5.1.20000708 6
+ delwin@NCURSESW_5.1.20000708 6
+ derwin@NCURSESW_5.1.20000708 6
+ doupdate@NCURSESW_5.1.20000708 6
+ dupwin@NCURSESW_5.1.20000708 6
+ echo@NCURSESW_5.1.20000708 6
+ echo_wchar@NCURSESW_5.3.20021019 6
+ echochar@NCURSESW_5.1.20000708 6
+ endwin@NCURSESW_5.1.20000708 6
+ erase@NCURSESW_5.1.20000708 6
+ erasewchar@NCURSESW_5.3.20021019 6
+ filter@NCURSESW_5.1.20000708 6
+ flash@NCURSESW_5.1.20000708 6
+ get_escdelay@NCURSESW_5.8.20110226 6
+ get_wch@NCURSESW_5.3.20021019 6
+ get_wstr@NCURSESW_5.3.20021019 6
+ getattrs@NCURSESW_5.7.20081102 6
+ getbegx@NCURSESW_5.6.20061217 6
+ getbegy@NCURSESW_5.6.20061217 6
+ getbkgd@NCURSESW_5.1.20000708 6
+ getbkgrnd@NCURSESW_5.3.20021019 6
+ getcchar@NCURSESW_5.3.20021019 6
+ getch@NCURSESW_5.1.20000708 6
+ getcurx@NCURSESW_5.6.20061217 6
+ getcury@NCURSESW_5.6.20061217 6
+ getmaxx@NCURSESW_5.6.20061217 6
+ getmaxy@NCURSESW_5.6.20061217 6
+ getmouse@NCURSESW_5.1.20000708 6
+ getn_wstr@NCURSESW_5.3.20021019 6
+ getnstr@NCURSESW_5.1.20000708 6
+ getparx@NCURSESW_5.6.20061217 6
+ getpary@NCURSESW_5.6.20061217 6
+ getstr@NCURSESW_5.1.20000708 6
+ getwin@NCURSESW_5.1.20000708 6
+ has_colors@NCURSESW_5.1.20000708 6
+ has_mouse@NCURSESW_5.8.20110226 6
+ hline@NCURSESW_5.1.20000708 6
+ hline_set@NCURSESW_5.3.20021019 6
+ immedok@NCURSESW_5.1.20000708 6
+ in_wch@NCURSESW_5.3.20021019 6
+ in_wchnstr@NCURSESW_5.3.20021019 6
+ in_wchstr@NCURSESW_5.3.20021019 6
+ inch@NCURSESW_5.1.20000708 6
+ inchnstr@NCURSESW_5.1.20000708 6
+ inchstr@NCURSESW_5.1.20000708 6
+ init_color@NCURSESW_5.1.20000708 6
+ init_pair@NCURSESW_5.1.20000708 6
+ initscr@NCURSESW_5.1.20000708 6
+ innstr@NCURSESW_5.1.20000708 6
+ innwstr@NCURSESW_5.3.20021019 6
+ ins_nwstr@NCURSESW_5.3.20021019 6
+ ins_wch@NCURSESW_5.3.20021019 6
+ ins_wstr@NCURSESW_5.3.20021019 6
+ insch@NCURSESW_5.1.20000708 6
+ insdelln@NCURSESW_5.1.20000708 6
+ insertln@NCURSESW_5.1.20000708 6
+ insnstr@NCURSESW_5.1.20000708 6
+ insstr@NCURSESW_5.1.20000708 6
+ instr@NCURSESW_5.1.20000708 6
+ inwstr@NCURSESW_5.3.20021019 6
+ is_cleared@NCURSESW_5.7.20081102 6
+ is_idcok@NCURSESW_5.7.20081102 6
+ is_idlok@NCURSESW_5.7.20081102 6
+ is_immedok@NCURSESW_5.7.20081102 6
+ is_keypad@NCURSESW_5.7.20081102 6
+ is_leaveok@NCURSESW_5.7.20081102 6
+ is_linetouched@NCURSESW_5.1.20000708 6
+ is_nodelay@NCURSESW_5.7.20081102 6
+ is_notimeout@NCURSESW_5.7.20081102 6
+ is_pad@NCURSESW_5.8.20110226 6
+ is_scrollok@NCURSESW_5.7.20081102 6
+ is_subwin@NCURSESW_5.8.20110226 6
+ is_syncok@NCURSESW_5.7.20081102 6
+ is_term_resized@NCURSESW_5.3.20021019 6
+ is_wintouched@NCURSESW_5.1.20000708 6
+ isendwin@NCURSESW_5.1.20000708 6
+ key_name@NCURSESW_5.3.20021019 6
+ killwchar@NCURSESW_5.3.20021019 6
+ leaveok@NCURSESW_5.1.20000708 6
+ mcprint@NCURSESW_5.1.20000708 6
+ mouse_trafo@NCURSESW_5.1.20000708 6
+ mouseinterval@NCURSESW_5.1.20000708 6
+ mousemask@NCURSESW_5.1.20000708 6
+ move@NCURSESW_5.1.20000708 6
+ mvadd_wch@NCURSESW_5.3.20021019 6
+ mvadd_wchnstr@NCURSESW_5.3.20021019 6
+ mvadd_wchstr@NCURSESW_5.3.20021019 6
+ mvaddch@NCURSESW_5.1.20000708 6
+ mvaddchnstr@NCURSESW_5.1.20000708 6
+ mvaddchstr@NCURSESW_5.1.20000708 6
+ mvaddnstr@NCURSESW_5.1.20000708 6
+ mvaddnwstr@NCURSESW_5.3.20021019 6
+ mvaddstr@NCURSESW_5.1.20000708 6
+ mvaddwstr@NCURSESW_5.3.20021019 6
+ mvchgat@NCURSESW_5.1.20000708 6
+ mvcur@NCURSESW_5.1.20000708 6
+ mvdelch@NCURSESW_5.1.20000708 6
+ mvderwin@NCURSESW_5.1.20000708 6
+ mvget_wch@NCURSESW_5.3.20021019 6
+ mvget_wstr@NCURSESW_5.3.20021019 6
+ mvgetch@NCURSESW_5.1.20000708 6
+ mvgetn_wstr@NCURSESW_5.3.20021019 6
+ mvgetnstr@NCURSESW_5.1.20000708 6
+ mvgetstr@NCURSESW_5.1.20000708 6
+ mvhline@NCURSESW_5.1.20000708 6
+ mvhline_set@NCURSESW_5.3.20021019 6
+ mvin_wch@NCURSESW_5.3.20021019 6
+ mvin_wchnstr@NCURSESW_5.3.20021019 6
+ mvin_wchstr@NCURSESW_5.3.20021019 6
+ mvinch@NCURSESW_5.1.20000708 6
+ mvinchnstr@NCURSESW_5.1.20000708 6
+ mvinchstr@NCURSESW_5.1.20000708 6
+ mvinnstr@NCURSESW_5.1.20000708 6
+ mvinnwstr@NCURSESW_5.3.20021019 6
+ mvins_nwstr@NCURSESW_5.3.20021019 6
+ mvins_wch@NCURSESW_5.3.20021019 6
+ mvins_wstr@NCURSESW_5.3.20021019 6
+ mvinsch@NCURSESW_5.1.20000708 6
+ mvinsnstr@NCURSESW_5.1.20000708 6
+ mvinsstr@NCURSESW_5.1.20000708 6
+ mvinstr@NCURSESW_5.1.20000708 6
+ mvinwstr@NCURSESW_5.3.20021019 6
+ mvprintw@NCURSESW_5.1.20000708 6
+ mvscanw@NCURSESW_5.1.20000708 6
+ mvvline@NCURSESW_5.1.20000708 6
+ mvvline_set@NCURSESW_5.3.20021019 6
+ mvwadd_wch@NCURSESW_5.3.20021019 6
+ mvwadd_wchnstr@NCURSESW_5.3.20021019 6
+ mvwadd_wchstr@NCURSESW_5.3.20021019 6
+ mvwaddch@NCURSESW_5.1.20000708 6
+ mvwaddchnstr@NCURSESW_5.1.20000708 6
+ mvwaddchstr@NCURSESW_5.1.20000708 6
+ mvwaddnstr@NCURSESW_5.1.20000708 6
+ mvwaddnwstr@NCURSESW_5.3.20021019 6
+ mvwaddstr@NCURSESW_5.1.20000708 6
+ mvwaddwstr@NCURSESW_5.3.20021019 6
+ mvwchgat@NCURSESW_5.1.20000708 6
+ mvwdelch@NCURSESW_5.1.20000708 6
+ mvwget_wch@NCURSESW_5.3.20021019 6
+ mvwget_wstr@NCURSESW_5.3.20021019 6
+ mvwgetch@NCURSESW_5.1.20000708 6
+ mvwgetn_wstr@NCURSESW_5.3.20021019 6
+ mvwgetnstr@NCURSESW_5.1.20000708 6
+ mvwgetstr@NCURSESW_5.1.20000708 6
+ mvwhline@NCURSESW_5.1.20000708 6
+ mvwhline_set@NCURSESW_5.3.20021019 6
+ mvwin@NCURSESW_5.1.20000708 6
+ mvwin_wch@NCURSESW_5.3.20021019 6
+ mvwin_wchnstr@NCURSESW_5.3.20021019 6
+ mvwin_wchstr@NCURSESW_5.3.20021019 6
+ mvwinch@NCURSESW_5.1.20000708 6
+ mvwinchnstr@NCURSESW_5.1.20000708 6
+ mvwinchstr@NCURSESW_5.1.20000708 6
+ mvwinnstr@NCURSESW_5.1.20000708 6
+ mvwinnwstr@NCURSESW_5.3.20021019 6
+ mvwins_nwstr@NCURSESW_5.3.20021019 6
+ mvwins_wch@NCURSESW_5.3.20021019 6
+ mvwins_wstr@NCURSESW_5.3.20021019 6
+ mvwinsch@NCURSESW_5.1.20000708 6
+ mvwinsnstr@NCURSESW_5.1.20000708 6
+ mvwinsstr@NCURSESW_5.1.20000708 6
+ mvwinstr@NCURSESW_5.1.20000708 6
+ mvwinwstr@NCURSESW_5.3.20021019 6
+ mvwprintw@NCURSESW_5.1.20000708 6
+ mvwscanw@NCURSESW_5.1.20000708 6
+ mvwvline@NCURSESW_5.1.20000708 6
+ mvwvline_set@NCURSESW_5.3.20021019 6
+ newpad@NCURSESW_5.1.20000708 6
+ newterm@NCURSESW_5.1.20000708 6
+ newwin@NCURSESW_5.1.20000708 6
+ nl@NCURSESW_5.1.20000708 6
+ noecho@NCURSESW_5.1.20000708 6
+ nofilter@NCURSESW_5.6.20061217 6
+ nonl@NCURSESW_5.1.20000708 6
+ overlay@NCURSESW_5.1.20000708 6
+ overwrite@NCURSESW_5.1.20000708 6
+ pair_content@NCURSESW_5.1.20000708 6
+ pecho_wchar@NCURSESW_5.4.20040208 6
+ pechochar@NCURSESW_5.1.20000708 6
+ pnoutrefresh@NCURSESW_5.1.20000708 6
+ prefresh@NCURSESW_5.1.20000708 6
+ printw@NCURSESW_5.1.20000708 6
+ putwin@NCURSESW_5.1.20000708 6
+ redrawwin@NCURSESW_5.1.20000708 6
+ refresh@NCURSESW_5.1.20000708 6
+ resize_term@NCURSESW_5.3.20021019 6
+ resizeterm@NCURSESW_5.1.20000708 6
+ restartterm@NCURSESW_5.1.20000708 6
+ ripoffline@NCURSESW_5.1.20000708 6
+ scanw@NCURSESW_5.1.20000708 6
+ scr_dump@NCURSESW_5.1.20000708 6
+ scr_init@NCURSESW_5.1.20000708 6
+ scr_restore@NCURSESW_5.1.20000708 6
+ scr_set@NCURSESW_5.1.20000708 6
+ scrl@NCURSESW_5.1.20000708 6
+ scroll@NCURSESW_5.1.20000708 6
+ scrollok@NCURSESW_5.1.20000708 6
+ set_escdelay@NCURSESW_5.7.20081102 6
+ set_term@NCURSESW_5.1.20000708 6
+ setcchar@NCURSESW_5.3.20021019 6
+ setscrreg@NCURSESW_5.1.20000708 6
+ slk_attr@NCURSESW_5.1.20000708 6
+ slk_attr_off@NCURSESW_5.1.20000708 6
+ slk_attr_on@NCURSESW_5.1.20000708 6
+ slk_attr_set@NCURSESW_5.1.20000708 6
+ slk_attroff@NCURSESW_5.1.20000708 6
+ slk_attron@NCURSESW_5.1.20000708 6
+ slk_attrset@NCURSESW_5.1.20000708 6
+ slk_clear@NCURSESW_5.1.20000708 6
+ slk_color@NCURSESW_5.1.20000708 6
+ slk_init@NCURSESW_5.1.20000708 6
+ slk_label@NCURSESW_5.1.20000708 6
+ slk_noutrefresh@NCURSESW_5.1.20000708 6
+ slk_refresh@NCURSESW_5.1.20000708 6
+ slk_restore@NCURSESW_5.1.20000708 6
+ slk_set@NCURSESW_5.1.20000708 6
+ slk_touch@NCURSESW_5.1.20000708 6
+ slk_wset@NCURSESW_5.4.20040208 6
+ standend@NCURSESW_5.1.20000708 6
+ standout@NCURSESW_5.1.20000708 6
+ start_color@NCURSESW_5.1.20000708 6
+ subpad@NCURSESW_5.1.20000708 6
+ subwin@NCURSESW_5.1.20000708 6
+ syncok@NCURSESW_5.1.20000708 6
+ term_attrs@NCURSESW_5.3.20021019 6
+ termattrs@NCURSESW_5.1.20000708 6
+ timeout@NCURSESW_5.1.20000708 6
+ touchline@NCURSESW_5.1.20000708 6
+ touchwin@NCURSESW_5.1.20000708 6
+ unget_wch@NCURSESW_5.3.20021019 6
+ ungetch@NCURSESW_5.1.20000708 6
+ ungetmouse@NCURSESW_5.1.20000708 6
+ untouchwin@NCURSESW_5.1.20000708 6
+ use_default_colors@NCURSESW_5.1.20000708 6
+ use_legacy_coding@NCURSESW_5.6.20061217 6
+ use_screen@NCURSESW_5.7.20081102 6
+ use_window@NCURSESW_5.7.20081102 6
+ vid_attr@NCURSESW_5.1.20000708 6
+ vid_puts@NCURSESW_5.3.20021019 6
+ vidattr@NCURSESW_5.1.20000708 6
+ vidputs@NCURSESW_5.1.20000708 6
+ vline@NCURSESW_5.1.20000708 6
+ vline_set@NCURSESW_5.3.20021019 6
+ vw_printw@NCURSESW_5.1.20000708 6
+ vw_scanw@NCURSESW_5.1.20000708 6
+ vwprintw@NCURSESW_5.1.20000708 6
+ vwscanw@NCURSESW_5.1.20000708 6
+ wadd_wch@NCURSESW_5.3.20021019 6
+ wadd_wchnstr@NCURSESW_5.3.20021019 6
+ wadd_wchstr@NCURSESW_5.3.20021019 6
+ waddch@NCURSESW_5.1.20000708 6
+ waddchnstr@NCURSESW_5.1.20000708 6
+ waddchstr@NCURSESW_5.1.20000708 6
+ waddnstr@NCURSESW_5.1.20000708 6
+ waddnwstr@NCURSESW_5.3.20021019 6
+ waddstr@NCURSESW_5.1.20000708 6
+ waddwstr@NCURSESW_5.3.20021019 6
+ wattr_get@NCURSESW_5.1.20000708 6
+ wattr_off@NCURSESW_5.1.20000708 6
+ wattr_on@NCURSESW_5.1.20000708 6
+ wattr_set@NCURSESW_5.1.20000708 6
+ wattroff@NCURSESW_5.1.20000708 6
+ wattron@NCURSESW_5.1.20000708 6
+ wattrset@NCURSESW_5.1.20000708 6
+ wbkgd@NCURSESW_5.1.20000708 6
+ wbkgdset@NCURSESW_5.1.20000708 6
+ wbkgrnd@NCURSESW_5.3.20021019 6
+ wbkgrndset@NCURSESW_5.3.20021019 6
+ wborder@NCURSESW_5.1.20000708 6
+ wborder_set@NCURSESW_5.3.20021019 6
+ wchgat@NCURSESW_5.1.20000708 6
+ wclear@NCURSESW_5.1.20000708 6
+ wclrtobot@NCURSESW_5.1.20000708 6
+ wclrtoeol@NCURSESW_5.1.20000708 6
+ wcolor_set@NCURSESW_5.1.20000708 6
+ wcursyncup@NCURSESW_5.1.20000708 6
+ wdelch@NCURSESW_5.1.20000708 6
+ wdeleteln@NCURSESW_5.1.20000708 6
+ wecho_wchar@NCURSESW_5.3.20021019 6
+ wechochar@NCURSESW_5.1.20000708 6
+ wenclose@NCURSESW_5.1.20000708 6
+ werase@NCURSESW_5.1.20000708 6
+ wget_wch@NCURSESW_5.3.20021019 6
+ wget_wstr@NCURSESW_5.3.20021019 6
+ wgetbkgrnd@NCURSESW_5.6.20061217 6
+ wgetch@NCURSESW_5.1.20000708 6
+ wgetdelay@NCURSESW_5.9.20150530 6
+ wgetn_wstr@NCURSESW_5.3.20021019 6
+ wgetnstr@NCURSESW_5.1.20000708 6
+ wgetparent@NCURSESW_5.7.20081102 6
+ wgetscrreg@NCURSESW_5.7.20081102 6
+ wgetstr@NCURSESW_5.1.20000708 6
+ whline@NCURSESW_5.1.20000708 6
+ whline_set@NCURSESW_5.3.20021019 6
+ win_wch@NCURSESW_5.3.20021019 6
+ win_wchnstr@NCURSESW_5.3.20021019 6
+ win_wchstr@NCURSESW_5.3.20021019 6
+ winch@NCURSESW_5.1.20000708 6
+ winchnstr@NCURSESW_5.1.20000708 6
+ winchstr@NCURSESW_5.1.20000708 6
+ winnstr@NCURSESW_5.1.20000708 6
+ winnwstr@NCURSESW_5.3.20021019 6
+ wins_nwstr@NCURSESW_5.3.20021019 6
+ wins_wch@NCURSESW_5.3.20021019 6
+ wins_wstr@NCURSESW_5.3.20021019 6
+ winsch@NCURSESW_5.1.20000708 6
+ winsdelln@NCURSESW_5.1.20000708 6
+ winsertln@NCURSESW_5.1.20000708 6
+ winsnstr@NCURSESW_5.1.20000708 6
+ winsstr@NCURSESW_5.1.20000708 6
+ winstr@NCURSESW_5.1.20000708 6
+ winwstr@NCURSESW_5.3.20021019 6
+ wmouse_trafo@NCURSESW_5.1.20000708 6
+ wmove@NCURSESW_5.1.20000708 6
+ wnoutrefresh@NCURSESW_5.1.20000708 6
+ wprintw@NCURSESW_5.1.20000708 6
+ wredrawln@NCURSESW_5.1.20000708 6
+ wrefresh@NCURSESW_5.1.20000708 6
+ wresize@NCURSESW_5.1.20000708 6
+ wscanw@NCURSESW_5.1.20000708 6
+ wscrl@NCURSESW_5.1.20000708 6
+ wsetscrreg@NCURSESW_5.1.20000708 6
+ wstandend@NCURSESW_5.1.20000708 6
+ wstandout@NCURSESW_5.1.20000708 6
+ wsyncdown@NCURSESW_5.1.20000708 6
+ wsyncup@NCURSESW_5.1.20000708 6
+ wtouchln@NCURSESW_5.1.20000708 6
+ wunctrl@NCURSESW_5.3.20021019 6
+ wvline@NCURSESW_5.1.20000708 6
+ wvline_set@NCURSESW_5.3.20021019 6
+libpanelw.so.5 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: #PACKAGE#
+ NCURSESW_5.1.20000708@NCURSESW_5.1.20000708 6
+ NCURSESW_5.3.20021019@NCURSESW_5.3.20021019 6
+ NCURSESW_5.4.20040208@NCURSESW_5.4.20040208 6
+ NCURSESW_5.5.20051010@NCURSESW_5.5.20051010 6
+ NCURSESW_5.6.20061217@NCURSESW_5.6.20061217 6
+ NCURSESW_5.7.20081102@NCURSESW_5.7.20081102 6
+ NCURSESW_5.8.20110226@NCURSESW_5.8.20110226 6
+ NCURSESW_5.9.20150530@NCURSESW_5.9.20150530 6
+ NCURSESW_6.1.20171230@NCURSESW_6.1.20171230 6.1
+ NCURSES_TIC_5.0.19991023@NCURSES_TIC_5.0.19991023 6
+ NCURSES_TIC_5.1.20000708@NCURSES_TIC_5.1.20000708 6
+ NCURSES_TIC_5.5.20051010@NCURSES_TIC_5.5.20051010 6
+ NCURSES_TIC_5.7.20081102@NCURSES_TIC_5.7.20081102 6
+ NCURSES_TIC_5.9.20150530@NCURSES_TIC_5.9.20150530 6
+ NCURSES_TIC_6.1.20171230@NCURSES_TIC_6.1.20171230 6.1
+ NCURSES_TINFO_5.0.19991023@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_TINFO_5.1.20000708@NCURSES_TINFO_5.1.20000708 6
+ NCURSES_TINFO_5.2.20001021@NCURSES_TINFO_5.2.20001021 6
+ NCURSES_TINFO_5.3.20021019@NCURSES_TINFO_5.3.20021019 6
+ NCURSES_TINFO_5.4.20040208@NCURSES_TINFO_5.4.20040208 6
+ NCURSES_TINFO_5.5.20051010@NCURSES_TINFO_5.5.20051010 6
+ NCURSES_TINFO_5.6.20061217@NCURSES_TINFO_5.6.20061217 6
+ NCURSES_TINFO_5.7.20081102@NCURSES_TINFO_5.7.20081102 6
+ NCURSES_TINFO_5.8.20110226@NCURSES_TINFO_5.8.20110226 6
+ NCURSES_TINFO_5.9.20150530@NCURSES_TINFO_5.9.20150530 6
+ NCURSES_TINFO_6.1.20171230@NCURSES_TINFO_6.1.20171230 6.1
+ NCURSES_TINFO_6.1.current@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ bottom_panel@NCURSESW_5.1.20000708 6
+ del_panel@NCURSESW_5.1.20000708 6
+ hide_panel@NCURSESW_5.1.20000708 6
+ move_panel@NCURSESW_5.1.20000708 6
+ new_panel@NCURSESW_5.1.20000708 6
+ panel_above@NCURSESW_5.1.20000708 6
+ panel_below@NCURSESW_5.1.20000708 6
+ panel_hidden@NCURSESW_5.1.20000708 6
+ panel_userptr@NCURSESW_5.1.20000708 6
+ panel_window@NCURSESW_5.1.20000708 6
+ replace_panel@NCURSESW_5.1.20000708 6
+ set_panel_userptr@NCURSESW_5.1.20000708 6
+ show_panel@NCURSESW_5.1.20000708 6
+ top_panel@NCURSESW_5.1.20000708 6
+ update_panels@NCURSESW_5.1.20000708 6
diff --git a/debian/libncursesw6.install.in b/debian/libncursesw6.install.in
new file mode 100644
index 0000000..ae9c927
--- /dev/null
+++ b/debian/libncursesw6.install.in
@@ -0,0 +1,4 @@
+usr/lib/${DEB_HOST_MULTIARCH}/libncursesw.so.* lib/${DEB_HOST_MULTIARCH}/
+usr/lib/${DEB_HOST_MULTIARCH}/libpanelw.so.*
+usr/lib/${DEB_HOST_MULTIARCH}/libformw.so.*
+usr/lib/${DEB_HOST_MULTIARCH}/libmenuw.so.*
diff --git a/debian/libncursesw6.symbols b/debian/libncursesw6.symbols
new file mode 100644
index 0000000..52a1f0b
--- /dev/null
+++ b/debian/libncursesw6.symbols
@@ -0,0 +1,750 @@
+libformw.so.6 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: libncurses-dev
+ NCURSES6_TIC_5.0.19991023@NCURSES6_TIC_5.0.19991023 6
+ NCURSES6_TIC_5.1.20000708@NCURSES6_TIC_5.1.20000708 6
+ NCURSES6_TIC_5.5.20051010@NCURSES6_TIC_5.5.20051010 6
+ NCURSES6_TIC_5.7.20081102@NCURSES6_TIC_5.7.20081102 6
+ NCURSES6_TIC_5.9.20150530@NCURSES6_TIC_5.9.20150530 6
+ NCURSES6_TIC_6.1.20171230@NCURSES6_TIC_6.1.20171230 6.1
+ NCURSES6_TINFO_5.0.19991023@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TINFO_5.1.20000708@NCURSES6_TINFO_5.1.20000708 6
+ NCURSES6_TINFO_5.2.20001021@NCURSES6_TINFO_5.2.20001021 6
+ NCURSES6_TINFO_5.3.20021019@NCURSES6_TINFO_5.3.20021019 6
+ NCURSES6_TINFO_5.4.20040208@NCURSES6_TINFO_5.4.20040208 6
+ NCURSES6_TINFO_5.5.20051010@NCURSES6_TINFO_5.5.20051010 6
+ NCURSES6_TINFO_5.6.20061217@NCURSES6_TINFO_5.6.20061217 6
+ NCURSES6_TINFO_5.7.20081102@NCURSES6_TINFO_5.7.20081102 6
+ NCURSES6_TINFO_5.8.20110226@NCURSES6_TINFO_5.8.20110226 6
+ NCURSES6_TINFO_5.9.20150530@NCURSES6_TINFO_5.9.20150530 6
+ NCURSES6_TINFO_6.1.20171230@NCURSES6_TINFO_6.1.20171230 6.1
+ NCURSES6_TINFO_6.1.current@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ NCURSESW6_5.1.20000708@NCURSESW6_5.1.20000708 6
+ NCURSESW6_5.3.20021019@NCURSESW6_5.3.20021019 6
+ NCURSESW6_5.4.20040208@NCURSESW6_5.4.20040208 6
+ NCURSESW6_5.5.20051010@NCURSESW6_5.5.20051010 6
+ NCURSESW6_5.6.20061217@NCURSESW6_5.6.20061217 6
+ NCURSESW6_5.7.20081102@NCURSESW6_5.7.20081102 6
+ NCURSESW6_5.8.20110226@NCURSESW6_5.8.20110226 6
+ NCURSESW6_5.9.20150530@NCURSESW6_5.9.20150530 6
+ NCURSESW6_6.1.20171230@NCURSESW6_6.1.20171230 6.1
+ TYPE_ALNUM@NCURSESW6_5.1.20000708 6
+ TYPE_ALPHA@NCURSESW6_5.1.20000708 6
+ TYPE_ENUM@NCURSESW6_5.1.20000708 6
+ TYPE_INTEGER@NCURSESW6_5.1.20000708 6
+ TYPE_IPV4@NCURSESW6_5.1.20000708 6
+ TYPE_NUMERIC@NCURSESW6_5.1.20000708 6
+ TYPE_REGEXP@NCURSESW6_5.1.20000708 6
+ current_field@NCURSESW6_5.1.20000708 6
+ data_ahead@NCURSESW6_5.1.20000708 6
+ data_behind@NCURSESW6_5.1.20000708 6
+ dup_field@NCURSESW6_5.1.20000708 6
+ dynamic_field_info@NCURSESW6_5.1.20000708 6
+ field_arg@NCURSESW6_5.1.20000708 6
+ field_back@NCURSESW6_5.1.20000708 6
+ field_buffer@NCURSESW6_5.1.20000708 6
+ field_count@NCURSESW6_5.1.20000708 6
+ field_fore@NCURSESW6_5.1.20000708 6
+ field_index@NCURSESW6_5.1.20000708 6
+ field_info@NCURSESW6_5.1.20000708 6
+ field_init@NCURSESW6_5.1.20000708 6
+ field_just@NCURSESW6_5.1.20000708 6
+ field_opts@NCURSESW6_5.1.20000708 6
+ field_opts_off@NCURSESW6_5.1.20000708 6
+ field_opts_on@NCURSESW6_5.1.20000708 6
+ field_pad@NCURSESW6_5.1.20000708 6
+ field_status@NCURSESW6_5.1.20000708 6
+ field_term@NCURSESW6_5.1.20000708 6
+ field_type@NCURSESW6_5.1.20000708 6
+ field_userptr@NCURSESW6_5.1.20000708 6
+ form_driver@NCURSESW6_5.1.20000708 6
+ form_driver_w@NCURSESW6_5.9.20150530 6
+ form_fields@NCURSESW6_5.1.20000708 6
+ form_init@NCURSESW6_5.1.20000708 6
+ form_opts@NCURSESW6_5.1.20000708 6
+ form_opts_off@NCURSESW6_5.1.20000708 6
+ form_opts_on@NCURSESW6_5.1.20000708 6
+ form_page@NCURSESW6_5.1.20000708 6
+ form_request_by_name@NCURSESW6_5.1.20000708 6
+ form_request_name@NCURSESW6_5.1.20000708 6
+ form_sub@NCURSESW6_5.1.20000708 6
+ form_term@NCURSESW6_5.1.20000708 6
+ form_userptr@NCURSESW6_5.1.20000708 6
+ form_win@NCURSESW6_5.1.20000708 6
+ free_field@NCURSESW6_5.1.20000708 6
+ free_fieldtype@NCURSESW6_5.1.20000708 6
+ free_form@NCURSESW6_5.1.20000708 6
+ link_field@NCURSESW6_5.1.20000708 6
+ link_fieldtype@NCURSESW6_5.1.20000708 6
+ move_field@NCURSESW6_5.1.20000708 6
+ new_field@NCURSESW6_5.1.20000708 6
+ new_fieldtype@NCURSESW6_5.1.20000708 6
+ new_form@NCURSESW6_5.1.20000708 6
+ new_form_sp@NCURSESW6_5.8.20110226 6
+ new_page@NCURSESW6_5.1.20000708 6
+ pos_form_cursor@NCURSESW6_5.1.20000708 6
+ post_form@NCURSESW6_5.1.20000708 6
+ scale_form@NCURSESW6_5.1.20000708 6
+ set_current_field@NCURSESW6_5.1.20000708 6
+ set_field_back@NCURSESW6_5.1.20000708 6
+ set_field_buffer@NCURSESW6_5.1.20000708 6
+ set_field_fore@NCURSESW6_5.1.20000708 6
+ set_field_init@NCURSESW6_5.1.20000708 6
+ set_field_just@NCURSESW6_5.1.20000708 6
+ set_field_opts@NCURSESW6_5.1.20000708 6
+ set_field_pad@NCURSESW6_5.1.20000708 6
+ set_field_status@NCURSESW6_5.1.20000708 6
+ set_field_term@NCURSESW6_5.1.20000708 6
+ set_field_type@NCURSESW6_5.1.20000708 6
+ set_field_userptr@NCURSESW6_5.1.20000708 6
+ set_fieldtype_arg@NCURSESW6_5.1.20000708 6
+ set_fieldtype_choice@NCURSESW6_5.1.20000708 6
+ set_form_fields@NCURSESW6_5.1.20000708 6
+ set_form_init@NCURSESW6_5.1.20000708 6
+ set_form_opts@NCURSESW6_5.1.20000708 6
+ set_form_page@NCURSESW6_5.1.20000708 6
+ set_form_sub@NCURSESW6_5.1.20000708 6
+ set_form_term@NCURSESW6_5.1.20000708 6
+ set_form_userptr@NCURSESW6_5.1.20000708 6
+ set_form_win@NCURSESW6_5.1.20000708 6
+ set_max_field@NCURSESW6_5.1.20000708 6
+ set_new_page@NCURSESW6_5.1.20000708 6
+ unfocus_current_field@NCURSESW6_6.1.20171230 6.1
+ unpost_form@NCURSESW6_5.1.20000708 6
+libmenuw.so.6 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: libncurses-dev
+ NCURSES6_TIC_5.0.19991023@NCURSES6_TIC_5.0.19991023 6
+ NCURSES6_TIC_5.1.20000708@NCURSES6_TIC_5.1.20000708 6
+ NCURSES6_TIC_5.5.20051010@NCURSES6_TIC_5.5.20051010 6
+ NCURSES6_TIC_5.7.20081102@NCURSES6_TIC_5.7.20081102 6
+ NCURSES6_TIC_5.9.20150530@NCURSES6_TIC_5.9.20150530 6
+ NCURSES6_TIC_6.1.20171230@NCURSES6_TIC_6.1.20171230 6.1
+ NCURSES6_TINFO_5.0.19991023@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TINFO_5.1.20000708@NCURSES6_TINFO_5.1.20000708 6
+ NCURSES6_TINFO_5.2.20001021@NCURSES6_TINFO_5.2.20001021 6
+ NCURSES6_TINFO_5.3.20021019@NCURSES6_TINFO_5.3.20021019 6
+ NCURSES6_TINFO_5.4.20040208@NCURSES6_TINFO_5.4.20040208 6
+ NCURSES6_TINFO_5.5.20051010@NCURSES6_TINFO_5.5.20051010 6
+ NCURSES6_TINFO_5.6.20061217@NCURSES6_TINFO_5.6.20061217 6
+ NCURSES6_TINFO_5.7.20081102@NCURSES6_TINFO_5.7.20081102 6
+ NCURSES6_TINFO_5.8.20110226@NCURSES6_TINFO_5.8.20110226 6
+ NCURSES6_TINFO_5.9.20150530@NCURSES6_TINFO_5.9.20150530 6
+ NCURSES6_TINFO_6.1.20171230@NCURSES6_TINFO_6.1.20171230 6.1
+ NCURSES6_TINFO_6.1.current@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ NCURSESW6_5.1.20000708@NCURSESW6_5.1.20000708 6
+ NCURSESW6_5.3.20021019@NCURSESW6_5.3.20021019 6
+ NCURSESW6_5.4.20040208@NCURSESW6_5.4.20040208 6
+ NCURSESW6_5.5.20051010@NCURSESW6_5.5.20051010 6
+ NCURSESW6_5.6.20061217@NCURSESW6_5.6.20061217 6
+ NCURSESW6_5.7.20081102@NCURSESW6_5.7.20081102 6
+ NCURSESW6_5.8.20110226@NCURSESW6_5.8.20110226 6
+ NCURSESW6_5.9.20150530@NCURSESW6_5.9.20150530 6
+ NCURSESW6_6.1.20171230@NCURSESW6_6.1.20171230 6.1
+ current_item@NCURSESW6_5.1.20000708 6
+ free_item@NCURSESW6_5.1.20000708 6
+ free_menu@NCURSESW6_5.1.20000708 6
+ item_count@NCURSESW6_5.1.20000708 6
+ item_description@NCURSESW6_5.1.20000708 6
+ item_index@NCURSESW6_5.1.20000708 6
+ item_init@NCURSESW6_5.1.20000708 6
+ item_name@NCURSESW6_5.1.20000708 6
+ item_opts@NCURSESW6_5.1.20000708 6
+ item_opts_off@NCURSESW6_5.1.20000708 6
+ item_opts_on@NCURSESW6_5.1.20000708 6
+ item_term@NCURSESW6_5.1.20000708 6
+ item_userptr@NCURSESW6_5.1.20000708 6
+ item_value@NCURSESW6_5.1.20000708 6
+ item_visible@NCURSESW6_5.1.20000708 6
+ menu_back@NCURSESW6_5.1.20000708 6
+ menu_driver@NCURSESW6_5.1.20000708 6
+ menu_fore@NCURSESW6_5.1.20000708 6
+ menu_format@NCURSESW6_5.1.20000708 6
+ menu_grey@NCURSESW6_5.1.20000708 6
+ menu_init@NCURSESW6_5.1.20000708 6
+ menu_items@NCURSESW6_5.1.20000708 6
+ menu_mark@NCURSESW6_5.1.20000708 6
+ menu_opts@NCURSESW6_5.1.20000708 6
+ menu_opts_off@NCURSESW6_5.1.20000708 6
+ menu_opts_on@NCURSESW6_5.1.20000708 6
+ menu_pad@NCURSESW6_5.1.20000708 6
+ menu_pattern@NCURSESW6_5.1.20000708 6
+ menu_request_by_name@NCURSESW6_5.1.20000708 6
+ menu_request_name@NCURSESW6_5.1.20000708 6
+ menu_spacing@NCURSESW6_5.1.20000708 6
+ menu_sub@NCURSESW6_5.1.20000708 6
+ menu_term@NCURSESW6_5.1.20000708 6
+ menu_userptr@NCURSESW6_5.1.20000708 6
+ menu_win@NCURSESW6_5.1.20000708 6
+ new_item@NCURSESW6_5.1.20000708 6
+ new_menu@NCURSESW6_5.1.20000708 6
+ new_menu_sp@NCURSESW6_5.8.20110226 6
+ pos_menu_cursor@NCURSESW6_5.1.20000708 6
+ post_menu@NCURSESW6_5.1.20000708 6
+ scale_menu@NCURSESW6_5.1.20000708 6
+ set_current_item@NCURSESW6_5.1.20000708 6
+ set_item_init@NCURSESW6_5.1.20000708 6
+ set_item_opts@NCURSESW6_5.1.20000708 6
+ set_item_term@NCURSESW6_5.1.20000708 6
+ set_item_userptr@NCURSESW6_5.1.20000708 6
+ set_item_value@NCURSESW6_5.1.20000708 6
+ set_menu_back@NCURSESW6_5.1.20000708 6
+ set_menu_fore@NCURSESW6_5.1.20000708 6
+ set_menu_format@NCURSESW6_5.1.20000708 6
+ set_menu_grey@NCURSESW6_5.1.20000708 6
+ set_menu_init@NCURSESW6_5.1.20000708 6
+ set_menu_items@NCURSESW6_5.1.20000708 6
+ set_menu_mark@NCURSESW6_5.1.20000708 6
+ set_menu_opts@NCURSESW6_5.1.20000708 6
+ set_menu_pad@NCURSESW6_5.1.20000708 6
+ set_menu_pattern@NCURSESW6_5.1.20000708 6
+ set_menu_spacing@NCURSESW6_5.1.20000708 6
+ set_menu_sub@NCURSESW6_5.1.20000708 6
+ set_menu_term@NCURSESW6_5.1.20000708 6
+ set_menu_userptr@NCURSESW6_5.1.20000708 6
+ set_menu_win@NCURSESW6_5.1.20000708 6
+ set_top_row@NCURSESW6_5.1.20000708 6
+ top_row@NCURSESW6_5.1.20000708 6
+ unpost_menu@NCURSESW6_5.1.20000708 6
+libncursesw.so.6 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: libncurses-dev
+ COLORS@NCURSESW6_5.1.20000708 6
+ COLOR_PAIR@NCURSESW6_5.1.20000708 6
+ COLOR_PAIRS@NCURSESW6_5.1.20000708 6
+ ESCDELAY@NCURSESW6_5.1.20000708 6
+ NCURSES6_TIC_5.0.19991023@NCURSES6_TIC_5.0.19991023 6
+ NCURSES6_TIC_5.1.20000708@NCURSES6_TIC_5.1.20000708 6
+ NCURSES6_TIC_5.5.20051010@NCURSES6_TIC_5.5.20051010 6
+ NCURSES6_TIC_5.7.20081102@NCURSES6_TIC_5.7.20081102 6
+ NCURSES6_TIC_5.9.20150530@NCURSES6_TIC_5.9.20150530 6
+ NCURSES6_TIC_6.1.20171230@NCURSES6_TIC_6.1.20171230 6.1
+ NCURSES6_TINFO_5.0.19991023@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TINFO_5.1.20000708@NCURSES6_TINFO_5.1.20000708 6
+ NCURSES6_TINFO_5.2.20001021@NCURSES6_TINFO_5.2.20001021 6
+ NCURSES6_TINFO_5.3.20021019@NCURSES6_TINFO_5.3.20021019 6
+ NCURSES6_TINFO_5.4.20040208@NCURSES6_TINFO_5.4.20040208 6
+ NCURSES6_TINFO_5.5.20051010@NCURSES6_TINFO_5.5.20051010 6
+ NCURSES6_TINFO_5.6.20061217@NCURSES6_TINFO_5.6.20061217 6
+ NCURSES6_TINFO_5.7.20081102@NCURSES6_TINFO_5.7.20081102 6
+ NCURSES6_TINFO_5.8.20110226@NCURSES6_TINFO_5.8.20110226 6
+ NCURSES6_TINFO_5.9.20150530@NCURSES6_TINFO_5.9.20150530 6
+ NCURSES6_TINFO_6.1.20171230@NCURSES6_TINFO_6.1.20171230 6.1
+ NCURSES6_TINFO_6.1.current@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ NCURSESW6_5.1.20000708@NCURSESW6_5.1.20000708 6
+ NCURSESW6_5.3.20021019@NCURSESW6_5.3.20021019 6
+ NCURSESW6_5.4.20040208@NCURSESW6_5.4.20040208 6
+ NCURSESW6_5.5.20051010@NCURSESW6_5.5.20051010 6
+ NCURSESW6_5.6.20061217@NCURSESW6_5.6.20061217 6
+ NCURSESW6_5.7.20081102@NCURSESW6_5.7.20081102 6
+ NCURSESW6_5.8.20110226@NCURSESW6_5.8.20110226 6
+ NCURSESW6_5.9.20150530@NCURSESW6_5.9.20150530 6
+ NCURSESW6_6.1.20171230@NCURSESW6_6.1.20171230 6.1
+ PAIR_NUMBER@NCURSESW6_5.1.20000708 6
+ _nc_free_and_exit@NCURSESW6_5.1.20000708 6
+ _nc_freeall@NCURSES6_TINFO_5.0.19991023 6
+ _nc_panelhook@NCURSESW6_5.1.20000708 6
+ _nc_panelhook_sp@NCURSESW6_5.8.20110226 6
+ _nc_ripoffline@NCURSESW6_5.1.20000708 6
+ _nc_wacs@NCURSESW6_5.3.20021019 6
+ _nc_wchstrlen@NCURSESW6_5.3.20021019 6
+ _nc_wcrtomb@NCURSESW6_5.5.20051010 6
+ add_wch@NCURSESW6_5.3.20021019 6
+ add_wchnstr@NCURSESW6_5.3.20021019 6
+ add_wchstr@NCURSESW6_5.3.20021019 6
+ addch@NCURSESW6_5.1.20000708 6
+ addchnstr@NCURSESW6_5.1.20000708 6
+ addchstr@NCURSESW6_5.1.20000708 6
+ addnstr@NCURSESW6_5.1.20000708 6
+ addnwstr@NCURSESW6_5.3.20021019 6
+ addstr@NCURSESW6_5.1.20000708 6
+ addwstr@NCURSESW6_5.3.20021019 6
+ alloc_pair@NCURSESW6_6.1.20171230 6.1
+ alloc_pair_sp@NCURSESW6_6.1.20171230 6.1
+ assume_default_colors@NCURSESW6_5.1.20000708 6
+ assume_default_colors_sp@NCURSESW6_5.8.20110226 6
+ attr_get@NCURSESW6_5.1.20000708 6
+ attr_off@NCURSESW6_5.1.20000708 6
+ attr_on@NCURSESW6_5.1.20000708 6
+ attr_set@NCURSESW6_5.1.20000708 6
+ attroff@NCURSESW6_5.1.20000708 6
+ attron@NCURSESW6_5.1.20000708 6
+ attrset@NCURSESW6_5.1.20000708 6
+ beep@NCURSESW6_5.1.20000708 6
+ beep_sp@NCURSESW6_5.8.20110226 6
+ bkgd@NCURSESW6_5.1.20000708 6
+ bkgdset@NCURSESW6_5.1.20000708 6
+ bkgrnd@NCURSESW6_5.3.20021019 6
+ bkgrndset@NCURSESW6_5.3.20021019 6
+ border@NCURSESW6_5.1.20000708 6
+ border_set@NCURSESW6_5.3.20021019 6
+ box@NCURSESW6_5.1.20000708 6
+ box_set@NCURSESW6_5.3.20021019 6
+ can_change_color@NCURSESW6_5.1.20000708 6
+ can_change_color_sp@NCURSESW6_5.8.20110226 6
+ chgat@NCURSESW6_5.1.20000708 6
+ clear@NCURSESW6_5.1.20000708 6
+ clearok@NCURSESW6_5.1.20000708 6
+ clrtobot@NCURSESW6_5.1.20000708 6
+ clrtoeol@NCURSESW6_5.1.20000708 6
+ color_content@NCURSESW6_5.1.20000708 6
+ color_content_sp@NCURSESW6_5.8.20110226 6
+ color_set@NCURSESW6_5.1.20000708 6
+ copywin@NCURSESW6_5.1.20000708 6
+ delch@NCURSESW6_5.1.20000708 6
+ deleteln@NCURSESW6_5.1.20000708 6
+ delscreen@NCURSESW6_5.1.20000708 6
+ delwin@NCURSESW6_5.1.20000708 6
+ derwin@NCURSESW6_5.1.20000708 6
+ doupdate@NCURSESW6_5.1.20000708 6
+ doupdate_sp@NCURSESW6_5.8.20110226 6
+ dupwin@NCURSESW6_5.1.20000708 6
+ echo@NCURSESW6_5.1.20000708 6
+ echo_sp@NCURSESW6_5.8.20110226 6
+ echo_wchar@NCURSESW6_5.3.20021019 6
+ echochar@NCURSESW6_5.1.20000708 6
+ endwin@NCURSESW6_5.1.20000708 6
+ endwin_sp@NCURSESW6_5.8.20110226 6
+ erase@NCURSESW6_5.1.20000708 6
+ erasewchar@NCURSESW6_5.3.20021019 6
+ extended_color_content@NCURSESW6_6.1.20171230 6.1
+ extended_color_content_sp@NCURSESW6_6.1.20171230 6.1
+ extended_pair_content@NCURSESW6_6.1.20171230 6.1
+ extended_pair_content_sp@NCURSESW6_6.1.20171230 6.1
+ extended_slk_color@NCURSESW6_6.1.20171230 6.1+20180203
+ extended_slk_color_sp@NCURSESW6_6.1.20171230 6.1+20180203
+ filter@NCURSESW6_5.1.20000708 6
+ filter_sp@NCURSESW6_5.8.20110226 6
+ find_pair@NCURSESW6_6.1.20171230 6.1
+ find_pair_sp@NCURSESW6_6.1.20171230 6.1
+ flash@NCURSESW6_5.1.20000708 6
+ flash_sp@NCURSESW6_5.8.20110226 6
+ free_pair@NCURSESW6_6.1.20171230 6.1
+ free_pair_sp@NCURSESW6_6.1.20171230 6.1
+ get_escdelay@NCURSESW6_5.8.20110226 6
+ get_escdelay_sp@NCURSESW6_5.8.20110226 6
+ get_wch@NCURSESW6_5.3.20021019 6
+ get_wstr@NCURSESW6_5.3.20021019 6
+ getattrs@NCURSESW6_5.7.20081102 6
+ getbegx@NCURSESW6_5.6.20061217 6
+ getbegy@NCURSESW6_5.6.20061217 6
+ getbkgd@NCURSESW6_5.1.20000708 6
+ getbkgrnd@NCURSESW6_5.3.20021019 6
+ getcchar@NCURSESW6_5.3.20021019 6
+ getch@NCURSESW6_5.1.20000708 6
+ getcurx@NCURSESW6_5.6.20061217 6
+ getcury@NCURSESW6_5.6.20061217 6
+ getmaxx@NCURSESW6_5.6.20061217 6
+ getmaxy@NCURSESW6_5.6.20061217 6
+ getmouse@NCURSESW6_5.1.20000708 6
+ getmouse_sp@NCURSESW6_5.8.20110226 6
+ getn_wstr@NCURSESW6_5.3.20021019 6
+ getnstr@NCURSESW6_5.1.20000708 6
+ getparx@NCURSESW6_5.6.20061217 6
+ getpary@NCURSESW6_5.6.20061217 6
+ getstr@NCURSESW6_5.1.20000708 6
+ getwin@NCURSESW6_5.1.20000708 6
+ getwin_sp@NCURSESW6_5.8.20110226 6
+ has_colors@NCURSESW6_5.1.20000708 6
+ has_colors_sp@NCURSESW6_5.8.20110226 6
+ has_mouse@NCURSESW6_5.8.20110226 6
+ has_mouse_sp@NCURSESW6_5.8.20110226 6
+ hline@NCURSESW6_5.1.20000708 6
+ hline_set@NCURSESW6_5.3.20021019 6
+ immedok@NCURSESW6_5.1.20000708 6
+ in_wch@NCURSESW6_5.3.20021019 6
+ in_wchnstr@NCURSESW6_5.3.20021019 6
+ in_wchstr@NCURSESW6_5.3.20021019 6
+ inch@NCURSESW6_5.1.20000708 6
+ inchnstr@NCURSESW6_5.1.20000708 6
+ inchstr@NCURSESW6_5.1.20000708 6
+ init_color@NCURSESW6_5.1.20000708 6
+ init_color_sp@NCURSESW6_5.8.20110226 6
+ init_extended_color@NCURSESW6_6.1.20171230 6.1
+ init_extended_color_sp@NCURSESW6_6.1.20171230 6.1
+ init_extended_pair@NCURSESW6_6.1.20171230 6.1
+ init_extended_pair_sp@NCURSESW6_6.1.20171230 6.1
+ init_pair@NCURSESW6_5.1.20000708 6
+ init_pair_sp@NCURSESW6_5.8.20110226 6
+ initscr@NCURSESW6_5.1.20000708 6
+ innstr@NCURSESW6_5.1.20000708 6
+ innwstr@NCURSESW6_5.3.20021019 6
+ ins_nwstr@NCURSESW6_5.3.20021019 6
+ ins_wch@NCURSESW6_5.3.20021019 6
+ ins_wstr@NCURSESW6_5.3.20021019 6
+ insch@NCURSESW6_5.1.20000708 6
+ insdelln@NCURSESW6_5.1.20000708 6
+ insertln@NCURSESW6_5.1.20000708 6
+ insnstr@NCURSESW6_5.1.20000708 6
+ insstr@NCURSESW6_5.1.20000708 6
+ instr@NCURSESW6_5.1.20000708 6
+ inwstr@NCURSESW6_5.3.20021019 6
+ is_cleared@NCURSESW6_5.7.20081102 6
+ is_idcok@NCURSESW6_5.7.20081102 6
+ is_idlok@NCURSESW6_5.7.20081102 6
+ is_immedok@NCURSESW6_5.7.20081102 6
+ is_keypad@NCURSESW6_5.7.20081102 6
+ is_leaveok@NCURSESW6_5.7.20081102 6
+ is_linetouched@NCURSESW6_5.1.20000708 6
+ is_nodelay@NCURSESW6_5.7.20081102 6
+ is_notimeout@NCURSESW6_5.7.20081102 6
+ is_pad@NCURSESW6_5.8.20110226 6
+ is_scrollok@NCURSESW6_5.7.20081102 6
+ is_subwin@NCURSESW6_5.8.20110226 6
+ is_syncok@NCURSESW6_5.7.20081102 6
+ is_term_resized@NCURSESW6_5.3.20021019 6
+ is_term_resized_sp@NCURSESW6_5.8.20110226 6
+ is_wintouched@NCURSESW6_5.1.20000708 6
+ isendwin@NCURSESW6_5.1.20000708 6
+ isendwin_sp@NCURSESW6_5.8.20110226 6
+ key_name@NCURSESW6_5.3.20021019 6
+ killwchar@NCURSESW6_5.3.20021019 6
+ leaveok@NCURSESW6_5.1.20000708 6
+ mcprint@NCURSESW6_5.1.20000708 6
+ mcprint_sp@NCURSESW6_5.8.20110226 6
+ mouse_trafo@NCURSESW6_5.1.20000708 6
+ mouseinterval@NCURSESW6_5.1.20000708 6
+ mouseinterval_sp@NCURSESW6_5.8.20110226 6
+ mousemask@NCURSESW6_5.1.20000708 6
+ mousemask_sp@NCURSESW6_5.8.20110226 6
+ move@NCURSESW6_5.1.20000708 6
+ mvadd_wch@NCURSESW6_5.3.20021019 6
+ mvadd_wchnstr@NCURSESW6_5.3.20021019 6
+ mvadd_wchstr@NCURSESW6_5.3.20021019 6
+ mvaddch@NCURSESW6_5.1.20000708 6
+ mvaddchnstr@NCURSESW6_5.1.20000708 6
+ mvaddchstr@NCURSESW6_5.1.20000708 6
+ mvaddnstr@NCURSESW6_5.1.20000708 6
+ mvaddnwstr@NCURSESW6_5.3.20021019 6
+ mvaddstr@NCURSESW6_5.1.20000708 6
+ mvaddwstr@NCURSESW6_5.3.20021019 6
+ mvchgat@NCURSESW6_5.1.20000708 6
+ mvcur@NCURSESW6_5.1.20000708 6
+ mvcur_sp@NCURSESW6_5.8.20110226 6
+ mvdelch@NCURSESW6_5.1.20000708 6
+ mvderwin@NCURSESW6_5.1.20000708 6
+ mvget_wch@NCURSESW6_5.3.20021019 6
+ mvget_wstr@NCURSESW6_5.3.20021019 6
+ mvgetch@NCURSESW6_5.1.20000708 6
+ mvgetn_wstr@NCURSESW6_5.3.20021019 6
+ mvgetnstr@NCURSESW6_5.1.20000708 6
+ mvgetstr@NCURSESW6_5.1.20000708 6
+ mvhline@NCURSESW6_5.1.20000708 6
+ mvhline_set@NCURSESW6_5.3.20021019 6
+ mvin_wch@NCURSESW6_5.3.20021019 6
+ mvin_wchnstr@NCURSESW6_5.3.20021019 6
+ mvin_wchstr@NCURSESW6_5.3.20021019 6
+ mvinch@NCURSESW6_5.1.20000708 6
+ mvinchnstr@NCURSESW6_5.1.20000708 6
+ mvinchstr@NCURSESW6_5.1.20000708 6
+ mvinnstr@NCURSESW6_5.1.20000708 6
+ mvinnwstr@NCURSESW6_5.3.20021019 6
+ mvins_nwstr@NCURSESW6_5.3.20021019 6
+ mvins_wch@NCURSESW6_5.3.20021019 6
+ mvins_wstr@NCURSESW6_5.3.20021019 6
+ mvinsch@NCURSESW6_5.1.20000708 6
+ mvinsnstr@NCURSESW6_5.1.20000708 6
+ mvinsstr@NCURSESW6_5.1.20000708 6
+ mvinstr@NCURSESW6_5.1.20000708 6
+ mvinwstr@NCURSESW6_5.3.20021019 6
+ mvprintw@NCURSESW6_5.1.20000708 6
+ mvscanw@NCURSESW6_5.1.20000708 6
+ mvvline@NCURSESW6_5.1.20000708 6
+ mvvline_set@NCURSESW6_5.3.20021019 6
+ mvwadd_wch@NCURSESW6_5.3.20021019 6
+ mvwadd_wchnstr@NCURSESW6_5.3.20021019 6
+ mvwadd_wchstr@NCURSESW6_5.3.20021019 6
+ mvwaddch@NCURSESW6_5.1.20000708 6
+ mvwaddchnstr@NCURSESW6_5.1.20000708 6
+ mvwaddchstr@NCURSESW6_5.1.20000708 6
+ mvwaddnstr@NCURSESW6_5.1.20000708 6
+ mvwaddnwstr@NCURSESW6_5.3.20021019 6
+ mvwaddstr@NCURSESW6_5.1.20000708 6
+ mvwaddwstr@NCURSESW6_5.3.20021019 6
+ mvwchgat@NCURSESW6_5.1.20000708 6
+ mvwdelch@NCURSESW6_5.1.20000708 6
+ mvwget_wch@NCURSESW6_5.3.20021019 6
+ mvwget_wstr@NCURSESW6_5.3.20021019 6
+ mvwgetch@NCURSESW6_5.1.20000708 6
+ mvwgetn_wstr@NCURSESW6_5.3.20021019 6
+ mvwgetnstr@NCURSESW6_5.1.20000708 6
+ mvwgetstr@NCURSESW6_5.1.20000708 6
+ mvwhline@NCURSESW6_5.1.20000708 6
+ mvwhline_set@NCURSESW6_5.3.20021019 6
+ mvwin@NCURSESW6_5.1.20000708 6
+ mvwin_wch@NCURSESW6_5.3.20021019 6
+ mvwin_wchnstr@NCURSESW6_5.3.20021019 6
+ mvwin_wchstr@NCURSESW6_5.3.20021019 6
+ mvwinch@NCURSESW6_5.1.20000708 6
+ mvwinchnstr@NCURSESW6_5.1.20000708 6
+ mvwinchstr@NCURSESW6_5.1.20000708 6
+ mvwinnstr@NCURSESW6_5.1.20000708 6
+ mvwinnwstr@NCURSESW6_5.3.20021019 6
+ mvwins_nwstr@NCURSESW6_5.3.20021019 6
+ mvwins_wch@NCURSESW6_5.3.20021019 6
+ mvwins_wstr@NCURSESW6_5.3.20021019 6
+ mvwinsch@NCURSESW6_5.1.20000708 6
+ mvwinsnstr@NCURSESW6_5.1.20000708 6
+ mvwinsstr@NCURSESW6_5.1.20000708 6
+ mvwinstr@NCURSESW6_5.1.20000708 6
+ mvwinwstr@NCURSESW6_5.3.20021019 6
+ mvwprintw@NCURSESW6_5.1.20000708 6
+ mvwscanw@NCURSESW6_5.1.20000708 6
+ mvwvline@NCURSESW6_5.1.20000708 6
+ mvwvline_set@NCURSESW6_5.3.20021019 6
+ newpad@NCURSESW6_5.1.20000708 6
+ newpad_sp@NCURSESW6_5.8.20110226 6
+ newterm@NCURSESW6_5.1.20000708 6
+ newterm_sp@NCURSESW6_5.8.20110226 6
+ newwin@NCURSESW6_5.1.20000708 6
+ newwin_sp@NCURSESW6_5.8.20110226 6
+ nl@NCURSESW6_5.1.20000708 6
+ nl_sp@NCURSESW6_5.8.20110226 6
+ noecho@NCURSESW6_5.1.20000708 6
+ noecho_sp@NCURSESW6_5.8.20110226 6
+ nofilter@NCURSESW6_5.6.20061217 6
+ nofilter_sp@NCURSESW6_5.8.20110226 6
+ nonl@NCURSESW6_5.1.20000708 6
+ nonl_sp@NCURSESW6_5.8.20110226 6
+ overlay@NCURSESW6_5.1.20000708 6
+ overwrite@NCURSESW6_5.1.20000708 6
+ pair_content@NCURSESW6_5.1.20000708 6
+ pair_content_sp@NCURSESW6_5.8.20110226 6
+ pecho_wchar@NCURSESW6_5.4.20040208 6
+ pechochar@NCURSESW6_5.1.20000708 6
+ pnoutrefresh@NCURSESW6_5.1.20000708 6
+ prefresh@NCURSESW6_5.1.20000708 6
+ printw@NCURSESW6_5.1.20000708 6
+ putwin@NCURSESW6_5.1.20000708 6
+ redrawwin@NCURSESW6_5.1.20000708 6
+ refresh@NCURSESW6_5.1.20000708 6
+ reset_color_pairs@NCURSESW6_6.1.20171230 6.1
+ reset_color_pairs_sp@NCURSESW6_6.1.20171230 6.1
+ resize_term@NCURSESW6_5.3.20021019 6
+ resize_term_sp@NCURSESW6_5.8.20110226 6
+ resizeterm@NCURSESW6_5.1.20000708 6
+ resizeterm_sp@NCURSESW6_5.8.20110226 6
+ restartterm@NCURSESW6_5.1.20000708 6
+ restartterm_sp@NCURSESW6_5.8.20110226 6
+ ripoffline@NCURSESW6_5.1.20000708 6
+ ripoffline_sp@NCURSESW6_5.8.20110226 6
+ scanw@NCURSESW6_5.1.20000708 6
+ scr_dump@NCURSESW6_5.1.20000708 6
+ scr_init@NCURSESW6_5.1.20000708 6
+ scr_init_sp@NCURSESW6_5.8.20110226 6
+ scr_restore@NCURSESW6_5.1.20000708 6
+ scr_restore_sp@NCURSESW6_5.8.20110226 6
+ scr_set@NCURSESW6_5.1.20000708 6
+ scr_set_sp@NCURSESW6_5.8.20110226 6
+ scrl@NCURSESW6_5.1.20000708 6
+ scroll@NCURSESW6_5.1.20000708 6
+ scrollok@NCURSESW6_5.1.20000708 6
+ set_escdelay@NCURSESW6_5.7.20081102 6
+ set_escdelay_sp@NCURSESW6_5.8.20110226 6
+ set_term@NCURSESW6_5.1.20000708 6
+ setcchar@NCURSESW6_5.3.20021019 6
+ setscrreg@NCURSESW6_5.1.20000708 6
+ slk_attr@NCURSESW6_5.1.20000708 6
+ slk_attr_off@NCURSESW6_5.1.20000708 6
+ slk_attr_on@NCURSESW6_5.1.20000708 6
+ slk_attr_set@NCURSESW6_5.1.20000708 6
+ slk_attr_set_sp@NCURSESW6_5.8.20110226 6
+ slk_attr_sp@NCURSESW6_5.8.20110226 6
+ slk_attroff@NCURSESW6_5.1.20000708 6
+ slk_attroff_sp@NCURSESW6_5.8.20110226 6
+ slk_attron@NCURSESW6_5.1.20000708 6
+ slk_attron_sp@NCURSESW6_5.8.20110226 6
+ slk_attrset@NCURSESW6_5.1.20000708 6
+ slk_attrset_sp@NCURSESW6_5.8.20110226 6
+ slk_clear@NCURSESW6_5.1.20000708 6
+ slk_clear_sp@NCURSESW6_5.8.20110226 6
+ slk_color@NCURSESW6_5.1.20000708 6
+ slk_color_sp@NCURSESW6_5.8.20110226 6
+ slk_init@NCURSESW6_5.1.20000708 6
+ slk_init_sp@NCURSESW6_5.8.20110226 6
+ slk_label@NCURSESW6_5.1.20000708 6
+ slk_label_sp@NCURSESW6_5.8.20110226 6
+ slk_noutrefresh@NCURSESW6_5.1.20000708 6
+ slk_noutrefresh_sp@NCURSESW6_5.8.20110226 6
+ slk_refresh@NCURSESW6_5.1.20000708 6
+ slk_refresh_sp@NCURSESW6_5.8.20110226 6
+ slk_restore@NCURSESW6_5.1.20000708 6
+ slk_restore_sp@NCURSESW6_5.8.20110226 6
+ slk_set@NCURSESW6_5.1.20000708 6
+ slk_set_sp@NCURSESW6_5.8.20110226 6
+ slk_touch@NCURSESW6_5.1.20000708 6
+ slk_touch_sp@NCURSESW6_5.8.20110226 6
+ slk_wset@NCURSESW6_5.4.20040208 6
+ standend@NCURSESW6_5.1.20000708 6
+ standout@NCURSESW6_5.1.20000708 6
+ start_color@NCURSESW6_5.1.20000708 6
+ start_color_sp@NCURSESW6_5.8.20110226 6
+ subpad@NCURSESW6_5.1.20000708 6
+ subwin@NCURSESW6_5.1.20000708 6
+ syncok@NCURSESW6_5.1.20000708 6
+ term_attrs@NCURSESW6_5.3.20021019 6
+ term_attrs_sp@NCURSESW6_5.8.20110226 6
+ termattrs@NCURSESW6_5.1.20000708 6
+ termattrs_sp@NCURSESW6_5.8.20110226 6
+ timeout@NCURSESW6_5.1.20000708 6
+ touchline@NCURSESW6_5.1.20000708 6
+ touchwin@NCURSESW6_5.1.20000708 6
+ unget_wch@NCURSESW6_5.3.20021019 6
+ unget_wch_sp@NCURSESW6_5.8.20110226 6
+ ungetch@NCURSESW6_5.1.20000708 6
+ ungetch_sp@NCURSESW6_5.8.20110226 6
+ ungetmouse@NCURSESW6_5.1.20000708 6
+ ungetmouse_sp@NCURSESW6_5.8.20110226 6
+ untouchwin@NCURSESW6_5.1.20000708 6
+ use_default_colors@NCURSESW6_5.1.20000708 6
+ use_default_colors_sp@NCURSESW6_5.8.20110226 6
+ use_legacy_coding@NCURSESW6_5.6.20061217 6
+ use_legacy_coding_sp@NCURSESW6_5.8.20110226 6
+ use_screen@NCURSESW6_5.7.20081102 6
+ use_window@NCURSESW6_5.7.20081102 6
+ vid_attr@NCURSESW6_5.1.20000708 6
+ vid_attr_sp@NCURSESW6_5.8.20110226 6
+ vid_puts@NCURSESW6_5.3.20021019 6
+ vid_puts_sp@NCURSESW6_5.8.20110226 6
+ vidattr@NCURSESW6_5.1.20000708 6
+ vidattr_sp@NCURSESW6_5.8.20110226 6
+ vidputs@NCURSESW6_5.1.20000708 6
+ vidputs_sp@NCURSESW6_5.8.20110226 6
+ vline@NCURSESW6_5.1.20000708 6
+ vline_set@NCURSESW6_5.3.20021019 6
+ vw_printw@NCURSESW6_5.1.20000708 6
+ vw_scanw@NCURSESW6_5.1.20000708 6
+ vwprintw@NCURSESW6_5.1.20000708 6
+ vwscanw@NCURSESW6_5.1.20000708 6
+ wadd_wch@NCURSESW6_5.3.20021019 6
+ wadd_wchnstr@NCURSESW6_5.3.20021019 6
+ wadd_wchstr@NCURSESW6_5.3.20021019 6
+ waddch@NCURSESW6_5.1.20000708 6
+ waddchnstr@NCURSESW6_5.1.20000708 6
+ waddchstr@NCURSESW6_5.1.20000708 6
+ waddnstr@NCURSESW6_5.1.20000708 6
+ waddnwstr@NCURSESW6_5.3.20021019 6
+ waddstr@NCURSESW6_5.1.20000708 6
+ waddwstr@NCURSESW6_5.3.20021019 6
+ wattr_get@NCURSESW6_5.1.20000708 6
+ wattr_off@NCURSESW6_5.1.20000708 6
+ wattr_on@NCURSESW6_5.1.20000708 6
+ wattr_set@NCURSESW6_5.1.20000708 6
+ wattroff@NCURSESW6_5.1.20000708 6
+ wattron@NCURSESW6_5.1.20000708 6
+ wattrset@NCURSESW6_5.1.20000708 6
+ wbkgd@NCURSESW6_5.1.20000708 6
+ wbkgdset@NCURSESW6_5.1.20000708 6
+ wbkgrnd@NCURSESW6_5.3.20021019 6
+ wbkgrndset@NCURSESW6_5.3.20021019 6
+ wborder@NCURSESW6_5.1.20000708 6
+ wborder_set@NCURSESW6_5.3.20021019 6
+ wchgat@NCURSESW6_5.1.20000708 6
+ wclear@NCURSESW6_5.1.20000708 6
+ wclrtobot@NCURSESW6_5.1.20000708 6
+ wclrtoeol@NCURSESW6_5.1.20000708 6
+ wcolor_set@NCURSESW6_5.1.20000708 6
+ wcursyncup@NCURSESW6_5.1.20000708 6
+ wdelch@NCURSESW6_5.1.20000708 6
+ wdeleteln@NCURSESW6_5.1.20000708 6
+ wecho_wchar@NCURSESW6_5.3.20021019 6
+ wechochar@NCURSESW6_5.1.20000708 6
+ wenclose@NCURSESW6_5.1.20000708 6
+ werase@NCURSESW6_5.1.20000708 6
+ wget_wch@NCURSESW6_5.3.20021019 6
+ wget_wstr@NCURSESW6_5.3.20021019 6
+ wgetbkgrnd@NCURSESW6_5.6.20061217 6
+ wgetch@NCURSESW6_5.1.20000708 6
+ wgetdelay@NCURSESW6_5.9.20150530 6
+ wgetn_wstr@NCURSESW6_5.3.20021019 6
+ wgetnstr@NCURSESW6_5.1.20000708 6
+ wgetparent@NCURSESW6_5.7.20081102 6
+ wgetscrreg@NCURSESW6_5.7.20081102 6
+ wgetstr@NCURSESW6_5.1.20000708 6
+ whline@NCURSESW6_5.1.20000708 6
+ whline_set@NCURSESW6_5.3.20021019 6
+ win_wch@NCURSESW6_5.3.20021019 6
+ win_wchnstr@NCURSESW6_5.3.20021019 6
+ win_wchstr@NCURSESW6_5.3.20021019 6
+ winch@NCURSESW6_5.1.20000708 6
+ winchnstr@NCURSESW6_5.1.20000708 6
+ winchstr@NCURSESW6_5.1.20000708 6
+ winnstr@NCURSESW6_5.1.20000708 6
+ winnwstr@NCURSESW6_5.3.20021019 6
+ wins_nwstr@NCURSESW6_5.3.20021019 6
+ wins_wch@NCURSESW6_5.3.20021019 6
+ wins_wstr@NCURSESW6_5.3.20021019 6
+ winsch@NCURSESW6_5.1.20000708 6
+ winsdelln@NCURSESW6_5.1.20000708 6
+ winsertln@NCURSESW6_5.1.20000708 6
+ winsnstr@NCURSESW6_5.1.20000708 6
+ winsstr@NCURSESW6_5.1.20000708 6
+ winstr@NCURSESW6_5.1.20000708 6
+ winwstr@NCURSESW6_5.3.20021019 6
+ wmouse_trafo@NCURSESW6_5.1.20000708 6
+ wmove@NCURSESW6_5.1.20000708 6
+ wnoutrefresh@NCURSESW6_5.1.20000708 6
+ wprintw@NCURSESW6_5.1.20000708 6
+ wredrawln@NCURSESW6_5.1.20000708 6
+ wrefresh@NCURSESW6_5.1.20000708 6
+ wresize@NCURSESW6_5.1.20000708 6
+ wscanw@NCURSESW6_5.1.20000708 6
+ wscrl@NCURSESW6_5.1.20000708 6
+ wsetscrreg@NCURSESW6_5.1.20000708 6
+ wstandend@NCURSESW6_5.1.20000708 6
+ wstandout@NCURSESW6_5.1.20000708 6
+ wsyncdown@NCURSESW6_5.1.20000708 6
+ wsyncup@NCURSESW6_5.1.20000708 6
+ wtouchln@NCURSESW6_5.1.20000708 6
+ wunctrl@NCURSESW6_5.3.20021019 6
+ wunctrl_sp@NCURSESW6_5.8.20110226 6
+ wvline@NCURSESW6_5.1.20000708 6
+ wvline_set@NCURSESW6_5.3.20021019 6
+libpanelw.so.6 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: libncurses-dev
+ NCURSES6_TIC_5.0.19991023@NCURSES6_TIC_5.0.19991023 6
+ NCURSES6_TIC_5.1.20000708@NCURSES6_TIC_5.1.20000708 6
+ NCURSES6_TIC_5.5.20051010@NCURSES6_TIC_5.5.20051010 6
+ NCURSES6_TIC_5.7.20081102@NCURSES6_TIC_5.7.20081102 6
+ NCURSES6_TIC_5.9.20150530@NCURSES6_TIC_5.9.20150530 6
+ NCURSES6_TIC_6.1.20171230@NCURSES6_TIC_6.1.20171230 6.1
+ NCURSES6_TINFO_5.0.19991023@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TINFO_5.1.20000708@NCURSES6_TINFO_5.1.20000708 6
+ NCURSES6_TINFO_5.2.20001021@NCURSES6_TINFO_5.2.20001021 6
+ NCURSES6_TINFO_5.3.20021019@NCURSES6_TINFO_5.3.20021019 6
+ NCURSES6_TINFO_5.4.20040208@NCURSES6_TINFO_5.4.20040208 6
+ NCURSES6_TINFO_5.5.20051010@NCURSES6_TINFO_5.5.20051010 6
+ NCURSES6_TINFO_5.6.20061217@NCURSES6_TINFO_5.6.20061217 6
+ NCURSES6_TINFO_5.7.20081102@NCURSES6_TINFO_5.7.20081102 6
+ NCURSES6_TINFO_5.8.20110226@NCURSES6_TINFO_5.8.20110226 6
+ NCURSES6_TINFO_5.9.20150530@NCURSES6_TINFO_5.9.20150530 6
+ NCURSES6_TINFO_6.1.20171230@NCURSES6_TINFO_6.1.20171230 6.1
+ NCURSES6_TINFO_6.1.current@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ NCURSESW6_5.1.20000708@NCURSESW6_5.1.20000708 6
+ NCURSESW6_5.3.20021019@NCURSESW6_5.3.20021019 6
+ NCURSESW6_5.4.20040208@NCURSESW6_5.4.20040208 6
+ NCURSESW6_5.5.20051010@NCURSESW6_5.5.20051010 6
+ NCURSESW6_5.6.20061217@NCURSESW6_5.6.20061217 6
+ NCURSESW6_5.7.20081102@NCURSESW6_5.7.20081102 6
+ NCURSESW6_5.8.20110226@NCURSESW6_5.8.20110226 6
+ NCURSESW6_5.9.20150530@NCURSESW6_5.9.20150530 6
+ NCURSESW6_6.1.20171230@NCURSESW6_6.1.20171230 6.1
+ bottom_panel@NCURSESW6_5.1.20000708 6
+ ceiling_panel@NCURSESW6_5.8.20110226 6
+ del_panel@NCURSESW6_5.1.20000708 6
+ ground_panel@NCURSESW6_5.8.20110226 6
+ hide_panel@NCURSESW6_5.1.20000708 6
+ move_panel@NCURSESW6_5.1.20000708 6
+ new_panel@NCURSESW6_5.1.20000708 6
+ panel_above@NCURSESW6_5.1.20000708 6
+ panel_below@NCURSESW6_5.1.20000708 6
+ panel_hidden@NCURSESW6_5.1.20000708 6
+ panel_userptr@NCURSESW6_5.1.20000708 6
+ panel_window@NCURSESW6_5.1.20000708 6
+ replace_panel@NCURSESW6_5.1.20000708 6
+ set_panel_userptr@NCURSESW6_5.1.20000708 6
+ show_panel@NCURSESW6_5.1.20000708 6
+ top_panel@NCURSESW6_5.1.20000708 6
+ update_panels@NCURSESW6_5.1.20000708 6
+ update_panels_sp@NCURSESW6_5.8.20110226 6
diff --git a/debian/libtermcap.so.in b/debian/libtermcap.so.in
new file mode 100644
index 0000000..2b35583
--- /dev/null
+++ b/debian/libtermcap.so.in
@@ -0,0 +1,3 @@
+/* We use a linker script rather than a symlink to work around
+ an ldconfig bug, see http://bugs.debian.org/249122. */
+GROUP( libtinfo.so )
diff --git a/debian/libtinfo5.install.in b/debian/libtinfo5.install.in
new file mode 100644
index 0000000..65cf431
--- /dev/null
+++ b/debian/libtinfo5.install.in
@@ -0,0 +1,2 @@
+obj-legacy/lib/libtinfo.so.* lib/${DEB_HOST_MULTIARCH}
+obj-legacy/lib/libtic.so.* usr/lib/${DEB_HOST_MULTIARCH}
diff --git a/debian/libtinfo5.symbols b/debian/libtinfo5.symbols
new file mode 100644
index 0000000..d01968c
--- /dev/null
+++ b/debian/libtinfo5.symbols
@@ -0,0 +1,244 @@
+libtic.so.5 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: #PACKAGE#
+ NCURSES_5.0.19991023@NCURSES_5.0.19991023 6
+ NCURSES_5.1.20000708@NCURSES_5.1.20000708 6
+ NCURSES_5.3.20021019@NCURSES_5.3.20021019 6
+ NCURSES_5.4.20040208@NCURSES_5.4.20040208 6
+ NCURSES_5.5.20051010@NCURSES_5.5.20051010 6
+ NCURSES_5.6.20061217@NCURSES_5.6.20061217 6
+ NCURSES_5.7.20081102@NCURSES_5.7.20081102 6
+ NCURSES_5.8.20110226@NCURSES_5.8.20110226 6
+ NCURSES_5.9.20150530@NCURSES_5.9.20150530 6
+ NCURSES_6.1.20171230@NCURSES_6.1.20171230 6.1
+ NCURSES_TIC_5.0.19991023@NCURSES_TIC_5.0.19991023 6
+ NCURSES_TIC_5.1.20000708@NCURSES_TIC_5.1.20000708 6
+ NCURSES_TIC_5.5.20051010@NCURSES_TIC_5.5.20051010 6
+ NCURSES_TIC_5.7.20081102@NCURSES_TIC_5.7.20081102 6
+ NCURSES_TIC_5.9.20150530@NCURSES_TIC_5.9.20150530 6
+ NCURSES_TIC_6.1.20171230@NCURSES_TIC_6.1.20171230 6.1
+ NCURSES_TINFO_5.0.19991023@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_TINFO_5.1.20000708@NCURSES_TINFO_5.1.20000708 6
+ NCURSES_TINFO_5.2.20001021@NCURSES_TINFO_5.2.20001021 6
+ NCURSES_TINFO_5.3.20021019@NCURSES_TINFO_5.3.20021019 6
+ NCURSES_TINFO_5.4.20040208@NCURSES_TINFO_5.4.20040208 6
+ NCURSES_TINFO_5.5.20051010@NCURSES_TINFO_5.5.20051010 6
+ NCURSES_TINFO_5.6.20061217@NCURSES_TINFO_5.6.20061217 6
+ NCURSES_TINFO_5.7.20081102@NCURSES_TINFO_5.7.20081102 6
+ NCURSES_TINFO_5.8.20110226@NCURSES_TINFO_5.8.20110226 6
+ NCURSES_TINFO_5.9.20150530@NCURSES_TINFO_5.9.20150530 6
+ NCURSES_TINFO_6.1.20171230@NCURSES_TINFO_6.1.20171230 6.1
+ NCURSES_TINFO_6.1.current@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ _nc_capcmp@NCURSES_TIC_5.0.19991023 6
+ _nc_check_termtype2@NCURSES_TIC_5.5.20051010 6
+ _nc_disable_period@NCURSES_TIC_5.1.20000708 6
+ _nc_entry_match@NCURSES_TIC_5.0.19991023 6
+ _nc_infotocap@NCURSES_TIC_5.0.19991023 6
+ _nc_read_entry_source@NCURSES_TIC_5.0.19991023 6
+ _nc_reset_input@NCURSES_TIC_5.0.19991023 6
+ _nc_resolve_uses2@NCURSES_TIC_5.5.20051010 6
+ _nc_set_writedir@NCURSES_TIC_5.0.19991023 6
+ _nc_strict_bsd@NCURSES_TIC_5.9.20150530 6
+ _nc_syntax@NCURSES_TIC_5.0.19991023 6
+ _nc_tic_expand@NCURSES_TIC_5.0.19991023 6
+ _nc_tic_written@NCURSES_TIC_5.0.19991023 6
+ _nc_trans_string@NCURSES_TIC_5.0.19991023 6
+ _nc_write_entry@NCURSES_TIC_5.0.19991023 6
+ _nc_write_object@NCURSES_TIC_6.1.20171230 6.1
+libtinfo.so.5 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: #PACKAGE#
+ BC@NCURSES_TINFO_5.0.19991023 6
+ COLS@NCURSES_TINFO_5.0.19991023 6
+ LINES@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_5.0.19991023@NCURSES_5.0.19991023 6
+ NCURSES_5.1.20000708@NCURSES_5.1.20000708 6
+ NCURSES_5.3.20021019@NCURSES_5.3.20021019 6
+ NCURSES_5.4.20040208@NCURSES_5.4.20040208 6
+ NCURSES_5.5.20051010@NCURSES_5.5.20051010 6
+ NCURSES_5.6.20061217@NCURSES_5.6.20061217 6
+ NCURSES_5.7.20081102@NCURSES_5.7.20081102 6
+ NCURSES_5.8.20110226@NCURSES_5.8.20110226 6
+ NCURSES_5.9.20150530@NCURSES_5.9.20150530 6
+ NCURSES_6.1.20171230@NCURSES_6.1.20171230 6.1
+ NCURSES_TIC_5.0.19991023@NCURSES_TIC_5.0.19991023 6
+ NCURSES_TIC_5.1.20000708@NCURSES_TIC_5.1.20000708 6
+ NCURSES_TIC_5.5.20051010@NCURSES_TIC_5.5.20051010 6
+ NCURSES_TIC_5.7.20081102@NCURSES_TIC_5.7.20081102 6
+ NCURSES_TIC_5.9.20150530@NCURSES_TIC_5.9.20150530 6
+ NCURSES_TIC_6.1.20171230@NCURSES_TIC_6.1.20171230 6.1
+ NCURSES_TINFO_5.0.19991023@NCURSES_TINFO_5.0.19991023 6
+ NCURSES_TINFO_5.1.20000708@NCURSES_TINFO_5.1.20000708 6
+ NCURSES_TINFO_5.2.20001021@NCURSES_TINFO_5.2.20001021 6
+ NCURSES_TINFO_5.3.20021019@NCURSES_TINFO_5.3.20021019 6
+ NCURSES_TINFO_5.4.20040208@NCURSES_TINFO_5.4.20040208 6
+ NCURSES_TINFO_5.5.20051010@NCURSES_TINFO_5.5.20051010 6
+ NCURSES_TINFO_5.6.20061217@NCURSES_TINFO_5.6.20061217 6
+ NCURSES_TINFO_5.7.20081102@NCURSES_TINFO_5.7.20081102 6
+ NCURSES_TINFO_5.8.20110226@NCURSES_TINFO_5.8.20110226 6
+ NCURSES_TINFO_5.9.20150530@NCURSES_TINFO_5.9.20150530 6
+ NCURSES_TINFO_6.1.20171230@NCURSES_TINFO_6.1.20171230 6.1
+ NCURSES_TINFO_6.1.current@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ PC@NCURSES_TINFO_5.0.19991023 6
+ SP@NCURSES_TINFO_5.0.19991023 6
+ TABSIZE@NCURSES_TINFO_5.0.19991023 6
+ UP@NCURSES_TINFO_5.0.19991023 6
+ _nc_access@NCURSES_TINFO_5.0.19991023 6
+ _nc_add_to_try@NCURSES_TINFO_5.0.19991023 6
+ _nc_align_termtype@NCURSES_TINFO_5.1.20000708 6
+ _nc_basename@NCURSES_TINFO_5.2.20001021 6
+ _nc_copy_termtype@NCURSES_TINFO_5.0.19991023 6
+ _nc_curr_col@NCURSES_TINFO_5.0.19991023 6
+ _nc_curr_line@NCURSES_TINFO_5.0.19991023 6
+ _nc_doalloc@NCURSES_TINFO_5.0.19991023 6
+ _nc_err_abort@NCURSES_TINFO_5.0.19991023 6
+ _nc_fallback@NCURSES_TINFO_5.0.19991023 6
+ _nc_find_entry@NCURSES_TINFO_5.0.19991023 6
+ _nc_find_type_entry@NCURSES_TINFO_5.0.19991023 6
+ _nc_find_user_entry@NCURSES_TINFO_6.1.current 6.1+20190713 1
+ _nc_first_db@NCURSES_TINFO_5.6.20061217 6
+ _nc_first_name@NCURSES_TINFO_5.0.19991023 6
+ _nc_flush@NCURSES_TINFO_5.1.20000708 6
+ _nc_free_entries@NCURSES_TINFO_5.0.19991023 6
+ _nc_free_termtype@NCURSES_TINFO_5.0.19991023 6
+ _nc_get_alias_table@NCURSES_TINFO_5.7.20081102 6
+ _nc_get_hash_table@NCURSES_TINFO_5.0.19991023 6
+ _nc_get_locale@NCURSES_TINFO_5.4.20040208 6
+ _nc_get_screensize@NCURSES_TINFO_5.7.20081102 6
+ _nc_get_source@NCURSES_TINFO_5.5.20051010 6
+ _nc_get_table@NCURSES_TINFO_5.0.19991023 6
+ _nc_get_tty_mode@NCURSES_TINFO_5.0.19991023 6
+ _nc_get_type@NCURSES_TINFO_5.0.19991023 6
+ _nc_getenv_num@NCURSES_TINFO_5.0.19991023 6
+ _nc_globals@NCURSES_TINFO_5.7.20081102 6
+ _nc_handle_sigwinch@NCURSES_TINFO_5.6.20061217 6
+ _nc_head@NCURSES_TINFO_5.0.19991023 6
+ _nc_home_terminfo@NCURSES_TINFO_5.0.19991023 6
+ _nc_init_acs@NCURSES_TINFO_5.0.19991023 6
+ _nc_init_termtype@NCURSES_TINFO_5.9.20150530 6
+ _nc_is_abs_path@NCURSES_TINFO_5.6.20061217 6
+ _nc_is_dir_path@NCURSES_TINFO_5.6.20061217 6
+ _nc_is_file_path@NCURSES_TINFO_5.6.20061217 6
+ _nc_keep_tic_dir@NCURSES_TINFO_5.0.19991023 6
+ _nc_keypad@NCURSES_TINFO_5.0.19991023 6
+ _nc_last_db@NCURSES_TINFO_5.6.20061217 6
+ _nc_leaks_tinfo@NCURSES_TINFO_5.7.20081102 6
+ _nc_locale_breaks_acs@NCURSES_TINFO_5.4.20040208 6
+ _nc_name_match@NCURSES_TINFO_5.0.19991023 6
+ _nc_next_db@NCURSES_TINFO_5.6.20061217 6
+ _nc_outch@NCURSES_TINFO_5.0.19991023 6
+ _nc_pathlast@NCURSES_TINFO_5.4.20040208 6
+ _nc_prescreen@NCURSES_TINFO_5.7.20081102 6
+ _nc_putchar@NCURSES_TINFO_5.9.20150530 6
+ _nc_putp@NCURSES_TINFO_5.8.20110226 6
+ _nc_putp_flush@NCURSES_TINFO_5.8.20110226 6
+ _nc_read_entry@NCURSES_TINFO_5.0.19991023 6
+ _nc_read_file_entry@NCURSES_TINFO_5.0.19991023 6
+ _nc_read_termtype@NCURSES_TINFO_5.6.20061217 6
+ _nc_rootname@NCURSES_TINFO_5.3.20021019 6
+ _nc_safe_strcat@NCURSES_TINFO_5.2.20001021 6
+ _nc_safe_strcpy@NCURSES_TINFO_5.2.20001021 6
+ _nc_screen_chain@NCURSES_TINFO_5.0.19991023 6
+ _nc_screen_of@NCURSES_TINFO_5.7.20081102 6
+ _nc_set_buffer@NCURSES_TINFO_5.0.19991023 6
+ _nc_set_no_padding@NCURSES_TINFO_5.7.20081102 6
+ _nc_set_source@NCURSES_TINFO_5.0.19991023 6
+ _nc_set_tty_mode@NCURSES_TINFO_5.0.19991023 6
+ _nc_set_type@NCURSES_TINFO_5.0.19991023 6
+ _nc_setupterm@NCURSES_TINFO_5.5.20051010 6
+ _nc_str_copy@NCURSES_TINFO_5.2.20001021 6
+ _nc_str_init@NCURSES_TINFO_5.2.20001021 6
+ _nc_str_null@NCURSES_TINFO_5.2.20001021 6
+ _nc_suppress_warnings@NCURSES_TINFO_5.0.19991023 6
+ _nc_syserr_abort@NCURSES_TINFO_5.0.19991023 6
+ _nc_tail@NCURSES_TINFO_5.0.19991023 6
+ _nc_tic_dir@NCURSES_TINFO_5.0.19991023 6
+ _nc_timed_wait@NCURSES_TINFO_5.0.19991023 6
+ _nc_tinfo_fkeys@NCURSES_TINFO_5.1.20000708 6
+ _nc_tparm_analyze@NCURSES_TINFO_5.4.20040208 6
+ _nc_tparm_err@NCURSES_TINFO_5.3.20021019 6
+ _nc_tracing@NCURSES_TINFO_5.0.19991023 6
+ _nc_trim_sgr0@NCURSES_TINFO_5.5.20051010 6
+ _nc_unicode_locale@NCURSES_TINFO_5.4.20040208 6
+ _nc_update_screensize@NCURSES_TINFO_5.0.19991023 6
+ _nc_user_definable@NCURSES_TINFO_5.1.20000708 6
+ _nc_visbuf2@NCURSES_TINFO_5.0.19991023 6
+ _nc_visbuf@NCURSES_TINFO_5.0.19991023 6
+ _nc_visbufn@NCURSES_TINFO_5.3.20021019 6
+ _nc_warning@NCURSES_TINFO_5.0.19991023 6
+ acs_map@NCURSES_TINFO_5.0.19991023 6
+ baudrate@NCURSES_TINFO_5.0.19991023 6
+ boolcodes@NCURSES_TINFO_5.0.19991023 6
+ boolfnames@NCURSES_TINFO_5.0.19991023 6
+ boolnames@NCURSES_TINFO_5.0.19991023 6
+ cbreak@NCURSES_TINFO_5.0.19991023 6
+ cur_term@NCURSES_TINFO_5.0.19991023 6
+ curs_set@NCURSES_TINFO_5.0.19991023 6
+ curscr@NCURSES_TINFO_5.0.19991023 6
+ curses_version@NCURSES_TINFO_5.0.19991023 6
+ def_prog_mode@NCURSES_TINFO_5.0.19991023 6
+ def_shell_mode@NCURSES_TINFO_5.0.19991023 6
+ define_key@NCURSES_TINFO_5.0.19991023 6
+ del_curterm@NCURSES_TINFO_5.0.19991023 6
+ delay_output@NCURSES_TINFO_5.0.19991023 6
+ erasechar@NCURSES_TINFO_5.0.19991023 6
+ flushinp@NCURSES_TINFO_5.0.19991023 6
+ halfdelay@NCURSES_TINFO_5.0.19991023 6
+ has_ic@NCURSES_TINFO_5.0.19991023 6
+ has_il@NCURSES_TINFO_5.0.19991023 6
+ has_key@NCURSES_TINFO_5.0.19991023 6
+ idcok@NCURSES_TINFO_5.0.19991023 6
+ idlok@NCURSES_TINFO_5.0.19991023 6
+ intrflush@NCURSES_TINFO_5.0.19991023 6
+ key_defined@NCURSES_TINFO_5.4.20040208 6
+ keybound@NCURSES_TINFO_5.0.19991023 6
+ keyname@NCURSES_TINFO_5.0.19991023 6
+ keyok@NCURSES_TINFO_5.0.19991023 6
+ keypad@NCURSES_TINFO_5.0.19991023 6
+ killchar@NCURSES_TINFO_5.0.19991023 6
+ longname@NCURSES_TINFO_5.0.19991023 6
+ meta@NCURSES_TINFO_5.0.19991023 6
+ napms@NCURSES_TINFO_5.0.19991023 6
+ newscr@NCURSES_TINFO_5.0.19991023 6
+ nocbreak@NCURSES_TINFO_5.0.19991023 6
+ nodelay@NCURSES_TINFO_5.0.19991023 6
+ noqiflush@NCURSES_TINFO_5.0.19991023 6
+ noraw@NCURSES_TINFO_5.0.19991023 6
+ notimeout@NCURSES_TINFO_5.0.19991023 6
+ numcodes@NCURSES_TINFO_5.0.19991023 6
+ numfnames@NCURSES_TINFO_5.0.19991023 6
+ numnames@NCURSES_TINFO_5.0.19991023 6
+ ospeed@NCURSES_TINFO_5.0.19991023 6
+ putp@NCURSES_TINFO_5.0.19991023 6
+ qiflush@NCURSES_TINFO_5.0.19991023 6
+ raw@NCURSES_TINFO_5.0.19991023 6
+ reset_prog_mode@NCURSES_TINFO_5.0.19991023 6
+ reset_shell_mode@NCURSES_TINFO_5.0.19991023 6
+ resetty@NCURSES_TINFO_5.0.19991023 6
+ savetty@NCURSES_TINFO_5.0.19991023 6
+ set_curterm@NCURSES_TINFO_5.0.19991023 6
+ set_tabsize@NCURSES_TINFO_5.7.20081102 6
+ setupterm@NCURSES_TINFO_5.0.19991023 6
+ stdscr@NCURSES_TINFO_5.0.19991023 6
+ strcodes@NCURSES_TINFO_5.0.19991023 6
+ strfnames@NCURSES_TINFO_5.0.19991023 6
+ strnames@NCURSES_TINFO_5.0.19991023 6
+ termname@NCURSES_TINFO_5.0.19991023 6
+ tgetent@NCURSES_TINFO_5.0.19991023 6
+ tgetflag@NCURSES_TINFO_5.0.19991023 6
+ tgetnum@NCURSES_TINFO_5.0.19991023 6
+ tgetstr@NCURSES_TINFO_5.0.19991023 6
+ tgoto@NCURSES_TINFO_5.0.19991023 6
+ tigetflag@NCURSES_TINFO_5.0.19991023 6
+ tigetnum@NCURSES_TINFO_5.0.19991023 6
+ tigetstr@NCURSES_TINFO_5.0.19991023 6
+ tiparm@NCURSES_TINFO_5.8.20110226 6
+ tparm@NCURSES_TINFO_5.0.19991023 6
+ tputs@NCURSES_TINFO_5.0.19991023 6
+ ttytype@NCURSES_TINFO_5.0.19991023 6
+ typeahead@NCURSES_TINFO_5.0.19991023 6
+ unctrl@NCURSES_TINFO_5.0.19991023 6
+ use_env@NCURSES_TINFO_5.0.19991023 6
+ use_extended_names@NCURSES_TINFO_5.1.20000708 6
+ use_tioctl@NCURSES_TINFO_5.9.20150530 6
+ wtimeout@NCURSES_TINFO_5.0.19991023 6
diff --git a/debian/libtinfo6-udeb.install b/debian/libtinfo6-udeb.install
new file mode 100644
index 0000000..576962e
--- /dev/null
+++ b/debian/libtinfo6-udeb.install
@@ -0,0 +1 @@
+usr/lib/*/libtinfo.so.*
diff --git a/debian/libtinfo6.install.in b/debian/libtinfo6.install.in
new file mode 100644
index 0000000..b0b4373
--- /dev/null
+++ b/debian/libtinfo6.install.in
@@ -0,0 +1,2 @@
+usr/lib/${DEB_HOST_MULTIARCH}/libtinfo.so.* lib/${DEB_HOST_MULTIARCH}
+usr/lib/${DEB_HOST_MULTIARCH}/libtic.so.*
diff --git a/debian/libtinfo6.symbols b/debian/libtinfo6.symbols
new file mode 100644
index 0000000..fe03f7e
--- /dev/null
+++ b/debian/libtinfo6.symbols
@@ -0,0 +1,304 @@
+libtic.so.6 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: libncurses-dev
+ NCURSES6_TIC_5.0.19991023@NCURSES6_TIC_5.0.19991023 6
+ NCURSES6_TIC_5.1.20000708@NCURSES6_TIC_5.1.20000708 6
+ NCURSES6_TIC_5.5.20051010@NCURSES6_TIC_5.5.20051010 6
+ NCURSES6_TIC_5.7.20081102@NCURSES6_TIC_5.7.20081102 6
+ NCURSES6_TIC_5.9.20150530@NCURSES6_TIC_5.9.20150530 6
+ NCURSES6_TIC_6.1.20171230@NCURSES6_TIC_6.1.20171230 6.1
+ NCURSES6_TINFO_5.0.19991023@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TINFO_5.1.20000708@NCURSES6_TINFO_5.1.20000708 6
+ NCURSES6_TINFO_5.2.20001021@NCURSES6_TINFO_5.2.20001021 6
+ NCURSES6_TINFO_5.3.20021019@NCURSES6_TINFO_5.3.20021019 6
+ NCURSES6_TINFO_5.4.20040208@NCURSES6_TINFO_5.4.20040208 6
+ NCURSES6_TINFO_5.5.20051010@NCURSES6_TINFO_5.5.20051010 6
+ NCURSES6_TINFO_5.6.20061217@NCURSES6_TINFO_5.6.20061217 6
+ NCURSES6_TINFO_5.7.20081102@NCURSES6_TINFO_5.7.20081102 6
+ NCURSES6_TINFO_5.8.20110226@NCURSES6_TINFO_5.8.20110226 6
+ NCURSES6_TINFO_5.9.20150530@NCURSES6_TINFO_5.9.20150530 6
+ NCURSES6_TINFO_6.1.20171230@NCURSES6_TINFO_6.1.20171230 6.1
+ NCURSES6_TINFO_6.1.current@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ NCURSESW6_5.1.20000708@NCURSESW6_5.1.20000708 6
+ NCURSESW6_5.3.20021019@NCURSESW6_5.3.20021019 6
+ NCURSESW6_5.4.20040208@NCURSESW6_5.4.20040208 6
+ NCURSESW6_5.5.20051010@NCURSESW6_5.5.20051010 6
+ NCURSESW6_5.6.20061217@NCURSESW6_5.6.20061217 6
+ NCURSESW6_5.7.20081102@NCURSESW6_5.7.20081102 6
+ NCURSESW6_5.8.20110226@NCURSESW6_5.8.20110226 6
+ NCURSESW6_5.9.20150530@NCURSESW6_5.9.20150530 6
+ NCURSESW6_6.1.20171230@NCURSESW6_6.1.20171230 6.1
+ _nc_capcmp@NCURSES6_TIC_5.0.19991023 6
+ _nc_check_termtype2@NCURSES6_TIC_5.5.20051010 6
+ _nc_disable_period@NCURSES6_TIC_5.1.20000708 6
+ _nc_entry_match@NCURSES6_TIC_5.0.19991023 6
+ _nc_infotocap@NCURSES6_TIC_5.0.19991023 6
+ _nc_read_entry_source@NCURSES6_TIC_5.0.19991023 6
+ _nc_reset_input@NCURSES6_TIC_5.0.19991023 6
+ _nc_resolve_uses2@NCURSES6_TIC_5.5.20051010 6
+ _nc_set_writedir@NCURSES6_TIC_5.0.19991023 6
+ _nc_strict_bsd@NCURSES6_TIC_5.9.20150530 6
+ _nc_syntax@NCURSES6_TIC_5.0.19991023 6
+ _nc_tic_expand@NCURSES6_TIC_5.0.19991023 6
+ _nc_tic_written@NCURSES6_TIC_5.0.19991023 6
+ _nc_trans_string@NCURSES6_TIC_5.0.19991023 6
+ _nc_write_entry@NCURSES6_TIC_5.0.19991023 6
+ _nc_write_object@NCURSES6_TIC_6.1.20171230 6.1
+libtinfo.so.6 #PACKAGE# #MINVER#
+| #PACKAGE# #MINVER#, #PACKAGE# (<< 6.2~)
+* Build-Depends-Package: libncurses-dev
+ BC@NCURSES6_TINFO_5.0.19991023 6
+ COLS@NCURSES6_TINFO_5.0.19991023 6
+ LINES@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TIC_5.0.19991023@NCURSES6_TIC_5.0.19991023 6
+ NCURSES6_TIC_5.1.20000708@NCURSES6_TIC_5.1.20000708 6
+ NCURSES6_TIC_5.5.20051010@NCURSES6_TIC_5.5.20051010 6
+ NCURSES6_TIC_5.7.20081102@NCURSES6_TIC_5.7.20081102 6
+ NCURSES6_TIC_5.9.20150530@NCURSES6_TIC_5.9.20150530 6
+ NCURSES6_TIC_6.1.20171230@NCURSES6_TIC_6.1.20171230 6.1
+ NCURSES6_TINFO_5.0.19991023@NCURSES6_TINFO_5.0.19991023 6
+ NCURSES6_TINFO_5.1.20000708@NCURSES6_TINFO_5.1.20000708 6
+ NCURSES6_TINFO_5.2.20001021@NCURSES6_TINFO_5.2.20001021 6
+ NCURSES6_TINFO_5.3.20021019@NCURSES6_TINFO_5.3.20021019 6
+ NCURSES6_TINFO_5.4.20040208@NCURSES6_TINFO_5.4.20040208 6
+ NCURSES6_TINFO_5.5.20051010@NCURSES6_TINFO_5.5.20051010 6
+ NCURSES6_TINFO_5.6.20061217@NCURSES6_TINFO_5.6.20061217 6
+ NCURSES6_TINFO_5.7.20081102@NCURSES6_TINFO_5.7.20081102 6
+ NCURSES6_TINFO_5.8.20110226@NCURSES6_TINFO_5.8.20110226 6
+ NCURSES6_TINFO_5.9.20150530@NCURSES6_TINFO_5.9.20150530 6
+ NCURSES6_TINFO_6.1.20171230@NCURSES6_TINFO_6.1.20171230 6.1
+ NCURSES6_TINFO_6.1.current@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ NCURSESW6_5.1.20000708@NCURSESW6_5.1.20000708 6
+ NCURSESW6_5.3.20021019@NCURSESW6_5.3.20021019 6
+ NCURSESW6_5.4.20040208@NCURSESW6_5.4.20040208 6
+ NCURSESW6_5.5.20051010@NCURSESW6_5.5.20051010 6
+ NCURSESW6_5.6.20061217@NCURSESW6_5.6.20061217 6
+ NCURSESW6_5.7.20081102@NCURSESW6_5.7.20081102 6
+ NCURSESW6_5.8.20110226@NCURSESW6_5.8.20110226 6
+ NCURSESW6_5.9.20150530@NCURSESW6_5.9.20150530 6
+ NCURSESW6_6.1.20171230@NCURSESW6_6.1.20171230 6.1
+ PC@NCURSES6_TINFO_5.0.19991023 6
+ SP@NCURSES6_TINFO_5.0.19991023 6
+ TABSIZE@NCURSES6_TINFO_5.0.19991023 6
+ UP@NCURSES6_TINFO_5.0.19991023 6
+ _nc_access@NCURSES6_TINFO_5.0.19991023 6
+ _nc_add_to_try@NCURSES6_TINFO_5.0.19991023 6
+ _nc_align_termtype@NCURSES6_TINFO_5.1.20000708 6
+ _nc_basename@NCURSES6_TINFO_5.2.20001021 6
+ _nc_copy_termtype2@NCURSES6_TINFO_6.1.20171230 6.1
+ _nc_copy_termtype@NCURSES6_TINFO_5.0.19991023 6
+ _nc_curr_col@NCURSES6_TINFO_5.0.19991023 6
+ _nc_curr_line@NCURSES6_TINFO_5.0.19991023 6
+ _nc_doalloc@NCURSES6_TINFO_5.0.19991023 6
+ _nc_err_abort@NCURSES6_TINFO_5.0.19991023 6
+ _nc_export_termtype2@NCURSES6_TINFO_6.1.20171230 6.1
+ _nc_fallback2@NCURSES6_TINFO_6.1.20171230 6.1
+ _nc_fallback@NCURSES6_TINFO_5.0.19991023 6
+ _nc_find_entry@NCURSES6_TINFO_5.0.19991023 6
+ _nc_find_type_entry@NCURSES6_TINFO_5.0.19991023 6
+ _nc_find_user_entry@NCURSES6_TINFO_6.1.current 6.1+20190713 1
+ _nc_first_db@NCURSES6_TINFO_5.6.20061217 6
+ _nc_first_name@NCURSES6_TINFO_5.0.19991023 6
+ _nc_flush@NCURSES6_TINFO_5.1.20000708 6
+ _nc_flush_sp@NCURSES6_TINFO_5.8.20110226 6
+ _nc_free_entries@NCURSES6_TINFO_5.0.19991023 6
+ _nc_free_termtype2@NCURSES6_TINFO_6.1.20171230 6.1
+ _nc_free_termtype@NCURSES6_TINFO_5.0.19991023 6
+ _nc_get_alias_table@NCURSES6_TINFO_5.7.20081102 6
+ _nc_get_hash_table@NCURSES6_TINFO_5.0.19991023 6
+ _nc_get_locale@NCURSES6_TINFO_5.4.20040208 6
+ _nc_get_screensize@NCURSES6_TINFO_5.7.20081102 6
+ _nc_get_source@NCURSES6_TINFO_5.5.20051010 6
+ _nc_get_table@NCURSES6_TINFO_5.0.19991023 6
+ _nc_get_tty_mode@NCURSES6_TINFO_5.0.19991023 6
+ _nc_get_tty_mode_sp@NCURSES6_TINFO_5.8.20110226 6
+ _nc_get_type@NCURSES6_TINFO_5.0.19991023 6
+ _nc_getenv_num@NCURSES6_TINFO_5.0.19991023 6
+ _nc_globals@NCURSES6_TINFO_5.7.20081102 6
+ _nc_handle_sigwinch@NCURSES6_TINFO_5.6.20061217 6
+ _nc_head@NCURSES6_TINFO_5.0.19991023 6
+ _nc_home_terminfo@NCURSES6_TINFO_5.0.19991023 6
+ _nc_init_acs@NCURSES6_TINFO_5.0.19991023 6
+ _nc_init_acs_sp@NCURSES6_TINFO_5.8.20110226 6
+ _nc_init_termtype@NCURSES6_TINFO_5.9.20150530 6
+ _nc_is_abs_path@NCURSES6_TINFO_5.6.20061217 6
+ _nc_is_dir_path@NCURSES6_TINFO_5.6.20061217 6
+ _nc_is_file_path@NCURSES6_TINFO_5.6.20061217 6
+ _nc_keep_tic_dir@NCURSES6_TINFO_5.0.19991023 6
+ _nc_keypad@NCURSES6_TINFO_5.0.19991023 6
+ _nc_last_db@NCURSES6_TINFO_5.6.20061217 6
+ _nc_leaks_tinfo@NCURSES6_TINFO_5.7.20081102 6
+ _nc_locale_breaks_acs@NCURSES6_TINFO_5.4.20040208 6
+ _nc_name_match@NCURSES6_TINFO_5.0.19991023 6
+ _nc_next_db@NCURSES6_TINFO_5.6.20061217 6
+ _nc_outc_wrapper@NCURSES6_TINFO_5.8.20110226 6
+ _nc_outch@NCURSES6_TINFO_5.0.19991023 6
+ _nc_outch_sp@NCURSES6_TINFO_5.8.20110226 6
+ _nc_pathlast@NCURSES6_TINFO_5.4.20040208 6
+ _nc_prescreen@NCURSES6_TINFO_5.7.20081102 6
+ _nc_putchar@NCURSES6_TINFO_5.9.20150530 6
+ _nc_putchar_sp@NCURSES6_TINFO_5.9.20150530 6
+ _nc_putp@NCURSES6_TINFO_5.8.20110226 6
+ _nc_putp_flush_sp@NCURSES6_TINFO_5.8.20110226 6
+ _nc_putp_sp@NCURSES6_TINFO_5.8.20110226 6
+ _nc_read_entry2@NCURSES6_TIC_6.1.20171230 6.1
+ _nc_read_entry@NCURSES6_TINFO_5.0.19991023 6
+ _nc_read_file_entry@NCURSES6_TINFO_5.0.19991023 6
+ _nc_read_termtype@NCURSES6_TINFO_5.6.20061217 6
+ _nc_rootname@NCURSES6_TINFO_5.3.20021019 6
+ _nc_safe_strcat@NCURSES6_TINFO_5.2.20001021 6
+ _nc_safe_strcpy@NCURSES6_TINFO_5.2.20001021 6
+ _nc_screen_chain@NCURSES6_TINFO_5.0.19991023 6
+ _nc_screen_of@NCURSES6_TINFO_5.7.20081102 6
+ _nc_set_buffer@NCURSES6_TINFO_5.0.19991023 6
+ _nc_set_buffer_sp@NCURSES6_TINFO_5.8.20110226 6
+ _nc_set_no_padding@NCURSES6_TINFO_5.7.20081102 6
+ _nc_set_source@NCURSES6_TINFO_5.0.19991023 6
+ _nc_set_tty_mode@NCURSES6_TINFO_5.0.19991023 6
+ _nc_set_tty_mode_sp@NCURSES6_TINFO_5.8.20110226 6
+ _nc_set_type@NCURSES6_TINFO_5.0.19991023 6
+ _nc_setupterm@NCURSES6_TINFO_5.5.20051010 6
+ _nc_str_copy@NCURSES6_TINFO_5.2.20001021 6
+ _nc_str_init@NCURSES6_TINFO_5.2.20001021 6
+ _nc_str_null@NCURSES6_TINFO_5.2.20001021 6
+ _nc_suppress_warnings@NCURSES6_TINFO_5.0.19991023 6
+ _nc_syserr_abort@NCURSES6_TINFO_5.0.19991023 6
+ _nc_tail@NCURSES6_TINFO_5.0.19991023 6
+ _nc_tic_dir@NCURSES6_TINFO_5.0.19991023 6
+ _nc_timed_wait@NCURSES6_TINFO_5.0.19991023 6
+ _nc_tinfo_fkeys@NCURSES6_TINFO_5.1.20000708 6
+ _nc_tparm_analyze@NCURSES6_TINFO_5.4.20040208 6
+ _nc_tparm_err@NCURSES6_TINFO_5.3.20021019 6
+ _nc_tracing@NCURSES6_TINFO_5.0.19991023 6
+ _nc_trim_sgr0@NCURSES6_TINFO_5.5.20051010 6
+ _nc_unicode_locale@NCURSES6_TINFO_5.4.20040208 6
+ _nc_update_screensize@NCURSES6_TINFO_5.0.19991023 6
+ _nc_user_definable@NCURSES6_TINFO_5.1.20000708 6
+ _nc_visbuf2@NCURSES6_TINFO_5.0.19991023 6
+ _nc_visbuf@NCURSES6_TINFO_5.0.19991023 6
+ _nc_visbufn@NCURSES6_TINFO_5.3.20021019 6
+ _nc_warning@NCURSES6_TINFO_5.0.19991023 6
+ acs_map@NCURSES6_TINFO_5.0.19991023 6
+ baudrate@NCURSES6_TINFO_5.0.19991023 6
+ baudrate_sp@NCURSES6_TINFO_5.8.20110226 6
+ boolcodes@NCURSES6_TINFO_5.0.19991023 6
+ boolfnames@NCURSES6_TINFO_5.0.19991023 6
+ boolnames@NCURSES6_TINFO_5.0.19991023 6
+ cbreak@NCURSES6_TINFO_5.0.19991023 6
+ cbreak_sp@NCURSES6_TINFO_5.8.20110226 6
+ cur_term@NCURSES6_TINFO_5.0.19991023 6
+ curs_set@NCURSES6_TINFO_5.0.19991023 6
+ curs_set_sp@NCURSES6_TINFO_5.8.20110226 6
+ curscr@NCURSES6_TINFO_5.0.19991023 6
+ curses_version@NCURSES6_TINFO_5.0.19991023 6
+ def_prog_mode@NCURSES6_TINFO_5.0.19991023 6
+ def_prog_mode_sp@NCURSES6_TINFO_5.8.20110226 6
+ def_shell_mode@NCURSES6_TINFO_5.0.19991023 6
+ def_shell_mode_sp@NCURSES6_TINFO_5.8.20110226 6
+ define_key@NCURSES6_TINFO_5.0.19991023 6
+ define_key_sp@NCURSES6_TINFO_5.8.20110226 6
+ del_curterm@NCURSES6_TINFO_5.0.19991023 6
+ del_curterm_sp@NCURSES6_TINFO_5.8.20110226 6
+ delay_output@NCURSES6_TINFO_5.0.19991023 6
+ delay_output_sp@NCURSES6_TINFO_5.8.20110226 6
+ erasechar@NCURSES6_TINFO_5.0.19991023 6
+ erasechar_sp@NCURSES6_TINFO_5.8.20110226 6
+ flushinp@NCURSES6_TINFO_5.0.19991023 6
+ flushinp_sp@NCURSES6_TINFO_5.8.20110226 6
+ halfdelay@NCURSES6_TINFO_5.0.19991023 6
+ halfdelay_sp@NCURSES6_TINFO_5.8.20110226 6
+ has_ic@NCURSES6_TINFO_5.0.19991023 6
+ has_ic_sp@NCURSES6_TINFO_5.8.20110226 6
+ has_il@NCURSES6_TINFO_5.0.19991023 6
+ has_il_sp@NCURSES6_TINFO_5.8.20110226 6
+ has_key@NCURSES6_TINFO_5.0.19991023 6
+ has_key_sp@NCURSES6_TINFO_5.8.20110226 6
+ idcok@NCURSES6_TINFO_5.0.19991023 6
+ idlok@NCURSES6_TINFO_5.0.19991023 6
+ intrflush@NCURSES6_TINFO_5.0.19991023 6
+ intrflush_sp@NCURSES6_TINFO_5.8.20110226 6
+ key_defined@NCURSES6_TINFO_5.4.20040208 6
+ key_defined_sp@NCURSES6_TINFO_5.8.20110226 6
+ keybound@NCURSES6_TINFO_5.0.19991023 6
+ keybound_sp@NCURSES6_TINFO_5.8.20110226 6
+ keyname@NCURSES6_TINFO_5.0.19991023 6
+ keyname_sp@NCURSES6_TINFO_5.8.20110226 6
+ keyok@NCURSES6_TINFO_5.0.19991023 6
+ keyok_sp@NCURSES6_TINFO_5.8.20110226 6
+ keypad@NCURSES6_TINFO_5.0.19991023 6
+ killchar@NCURSES6_TINFO_5.0.19991023 6
+ killchar_sp@NCURSES6_TINFO_5.8.20110226 6
+ longname@NCURSES6_TINFO_5.0.19991023 6
+ longname_sp@NCURSES6_TINFO_5.8.20110226 6
+ meta@NCURSES6_TINFO_5.0.19991023 6
+ napms@NCURSES6_TINFO_5.0.19991023 6
+ napms_sp@NCURSES6_TINFO_5.8.20110226 6
+ new_prescr@NCURSES6_TINFO_5.8.20110226 6
+ newscr@NCURSES6_TINFO_5.0.19991023 6
+ nocbreak@NCURSES6_TINFO_5.0.19991023 6
+ nocbreak_sp@NCURSES6_TINFO_5.8.20110226 6
+ nodelay@NCURSES6_TINFO_5.0.19991023 6
+ noqiflush@NCURSES6_TINFO_5.0.19991023 6
+ noqiflush_sp@NCURSES6_TINFO_5.8.20110226 6
+ noraw@NCURSES6_TINFO_5.0.19991023 6
+ noraw_sp@NCURSES6_TINFO_5.8.20110226 6
+ notimeout@NCURSES6_TINFO_5.0.19991023 6
+ numcodes@NCURSES6_TINFO_5.0.19991023 6
+ numfnames@NCURSES6_TINFO_5.0.19991023 6
+ numnames@NCURSES6_TINFO_5.0.19991023 6
+ ospeed@NCURSES6_TINFO_5.0.19991023 6
+ putp@NCURSES6_TINFO_5.0.19991023 6
+ putp_sp@NCURSES6_TINFO_5.8.20110226 6
+ qiflush@NCURSES6_TINFO_5.0.19991023 6
+ qiflush_sp@NCURSES6_TINFO_5.8.20110226 6
+ raw@NCURSES6_TINFO_5.0.19991023 6
+ raw_sp@NCURSES6_TINFO_5.8.20110226 6
+ reset_prog_mode@NCURSES6_TINFO_5.0.19991023 6
+ reset_prog_mode_sp@NCURSES6_TINFO_5.8.20110226 6
+ reset_shell_mode@NCURSES6_TINFO_5.0.19991023 6
+ reset_shell_mode_sp@NCURSES6_TINFO_5.8.20110226 6
+ resetty@NCURSES6_TINFO_5.0.19991023 6
+ resetty_sp@NCURSES6_TINFO_5.8.20110226 6
+ savetty@NCURSES6_TINFO_5.0.19991023 6
+ savetty_sp@NCURSES6_TINFO_5.8.20110226 6
+ set_curterm@NCURSES6_TINFO_5.0.19991023 6
+ set_curterm_sp@NCURSES6_TINFO_5.8.20110226 6
+ set_tabsize@NCURSES6_TINFO_5.7.20081102 6
+ set_tabsize_sp@NCURSES6_TINFO_5.8.20110226 6
+ setupterm@NCURSES6_TINFO_5.0.19991023 6
+ stdscr@NCURSES6_TINFO_5.0.19991023 6
+ strcodes@NCURSES6_TINFO_5.0.19991023 6
+ strfnames@NCURSES6_TINFO_5.0.19991023 6
+ strnames@NCURSES6_TINFO_5.0.19991023 6
+ termname@NCURSES6_TINFO_5.0.19991023 6
+ termname_sp@NCURSES6_TINFO_5.8.20110226 6
+ tgetent@NCURSES6_TINFO_5.0.19991023 6
+ tgetent_sp@NCURSES6_TINFO_5.8.20110226 6
+ tgetflag@NCURSES6_TINFO_5.0.19991023 6
+ tgetflag_sp@NCURSES6_TINFO_5.8.20110226 6
+ tgetnum@NCURSES6_TINFO_5.0.19991023 6
+ tgetnum_sp@NCURSES6_TINFO_5.8.20110226 6
+ tgetstr@NCURSES6_TINFO_5.0.19991023 6
+ tgetstr_sp@NCURSES6_TINFO_5.8.20110226 6
+ tgoto@NCURSES6_TINFO_5.0.19991023 6
+ tigetflag@NCURSES6_TINFO_5.0.19991023 6
+ tigetflag_sp@NCURSES6_TINFO_5.8.20110226 6
+ tigetnum@NCURSES6_TINFO_5.0.19991023 6
+ tigetnum_sp@NCURSES6_TINFO_5.8.20110226 6
+ tigetstr@NCURSES6_TINFO_5.0.19991023 6
+ tigetstr_sp@NCURSES6_TINFO_5.8.20110226 6
+ tiparm@NCURSES6_TINFO_5.8.20110226 6
+ tparm@NCURSES6_TINFO_5.0.19991023 6
+ tputs@NCURSES6_TINFO_5.0.19991023 6
+ tputs_sp@NCURSES6_TINFO_5.8.20110226 6
+ ttytype@NCURSES6_TINFO_5.0.19991023 6
+ typeahead@NCURSES6_TINFO_5.0.19991023 6
+ typeahead_sp@NCURSES6_TINFO_5.8.20110226 6
+ unctrl@NCURSES6_TINFO_5.0.19991023 6
+ unctrl_sp@NCURSES6_TINFO_5.8.20110226 6
+ use_env@NCURSES6_TINFO_5.0.19991023 6
+ use_env_sp@NCURSES6_TINFO_5.8.20110226 6
+ use_extended_names@NCURSES6_TINFO_5.1.20000708 6
+ use_tioctl@NCURSES6_TINFO_5.9.20150530 6
+ use_tioctl_sp@NCURSES6_TINFO_5.9.20150530 6
+ wtimeout@NCURSES6_TINFO_5.0.19991023 6
diff --git a/debian/ncurses-base.dirs b/debian/ncurses-base.dirs
new file mode 100644
index 0000000..337f61f
--- /dev/null
+++ b/debian/ncurses-base.dirs
@@ -0,0 +1 @@
+usr/share/terminfo
diff --git a/debian/ncurses-base.install b/debian/ncurses-base.install
new file mode 100644
index 0000000..793907c
--- /dev/null
+++ b/debian/ncurses-base.install
@@ -0,0 +1,3 @@
+usr/share/tabset
+lib/terminfo
+etc/terminfo
diff --git a/debian/ncurses-base.lintian-overrides b/debian/ncurses-base.lintian-overrides
new file mode 100644
index 0000000..9eaa083
--- /dev/null
+++ b/debian/ncurses-base.lintian-overrides
@@ -0,0 +1,4 @@
+# The description refers to the terminfo entry which is lowercase.
+ncurses-base: capitalization-error-in-description linux Linux
+# Work around FTBFS bugs #804083, #804084
+ncurses-base: package-contains-empty-directory usr/share/terminfo/
diff --git a/debian/ncurses-bin.install b/debian/ncurses-bin.install
new file mode 100644
index 0000000..cbb4f11
--- /dev/null
+++ b/debian/ncurses-bin.install
@@ -0,0 +1,4 @@
+usr/bin
+usr/share/man/man1
+usr/share/man/man5
+usr/share/man/man7
diff --git a/debian/ncurses-doc.doc-base b/debian/ncurses-doc.doc-base
new file mode 100644
index 0000000..db2b3d3
--- /dev/null
+++ b/debian/ncurses-doc.doc-base
@@ -0,0 +1,20 @@
+Document: ncurses-doc
+Title: Writing Programs with Ncurses
+Author: Eric S. Raymond, Zeyd M. Ben-Halim, Thomas Dickey, Pradeep Padala
+Abstract: Programmer's Guide to Ncurses
+ This document contains an introduction to (n)curses programming aimed
+ at C application programmers. The API documentation is separated
+ into various manpages which are also available in HTML format.
+ .
+ Also included is a guide to the library's internals for people who
+ would like to hack on ncurses itself.
+Section: Programming
+
+Format: text
+Files: /usr/share/doc/ncurses-doc/ncurses-intro.doc.gz
+ /usr/share/doc/ncurses-doc/hackguide.doc.gz
+
+Format: HTML
+Index: /usr/share/doc/ncurses-doc/html/index.html
+Files: /usr/share/doc/ncurses-doc/html/*.html
+ /usr/share/doc/ncurses-doc/html/man/*.html
diff --git a/debian/ncurses-doc.docs b/debian/ncurses-doc.docs
new file mode 100644
index 0000000..30d29de
--- /dev/null
+++ b/debian/ncurses-doc.docs
@@ -0,0 +1 @@
+doc/*
diff --git a/debian/ncurses-doc.install b/debian/ncurses-doc.install
new file mode 100644
index 0000000..2ae7ac9
--- /dev/null
+++ b/debian/ncurses-doc.install
@@ -0,0 +1 @@
+usr/share/man/man3
diff --git a/debian/ncurses-doc.links b/debian/ncurses-doc.links
new file mode 100644
index 0000000..748942b
--- /dev/null
+++ b/debian/ncurses-doc.links
@@ -0,0 +1 @@
+usr/share/man/man3/ncurses.3ncurses usr/share/man/man3/curses.3ncurses
diff --git a/debian/ncurses-examples.install b/debian/ncurses-examples.install
new file mode 100644
index 0000000..fe0c8d2
--- /dev/null
+++ b/debian/ncurses-examples.install
@@ -0,0 +1 @@
+test/README usr/lib/ncurses/examples
diff --git a/debian/ncurses-examples.links b/debian/ncurses-examples.links
new file mode 100644
index 0000000..c110231
--- /dev/null
+++ b/debian/ncurses-examples.links
@@ -0,0 +1 @@
+usr/lib/ncurses/examples usr/share/doc/ncurses-examples/examples
diff --git a/debian/ncurses-examples.lintian-overrides b/debian/ncurses-examples.lintian-overrides
new file mode 100644
index 0000000..581de6a
--- /dev/null
+++ b/debian/ncurses-examples.lintian-overrides
@@ -0,0 +1,2 @@
+# This file describes the sample programs in its directory
+ncurses-examples: package-contains-documentation-outside-usr-share-doc usr/lib/ncurses/examples/README.gz
diff --git a/debian/ncurses-term.install b/debian/ncurses-term.install
new file mode 100644
index 0000000..337f61f
--- /dev/null
+++ b/debian/ncurses-term.install
@@ -0,0 +1 @@
+usr/share/terminfo
diff --git a/debian/ncurses-term.links b/debian/ncurses-term.links
new file mode 100644
index 0000000..6ee1b2a
--- /dev/null
+++ b/debian/ncurses-term.links
@@ -0,0 +1,6 @@
+lib/terminfo/c/cons25 usr/share/terminfo/c/cons25
+lib/terminfo/s/sun usr/share/terminfo/s/sun
+lib/terminfo/v/vt100 usr/share/terminfo/v/vt100
+lib/terminfo/v/vt220 usr/share/terminfo/v/vt220
+lib/terminfo/x/xterm-color usr/share/terminfo/x/xterm-color
+lib/terminfo/x/xterm-r6 usr/share/terminfo/x/xterm-r6
diff --git a/debian/patches/01-debian-no-ada-doc.diff b/debian/patches/01-debian-no-ada-doc.diff
new file mode 100644
index 0000000..79f7576
--- /dev/null
+++ b/debian/patches/01-debian-no-ada-doc.diff
@@ -0,0 +1,27 @@
+Description: link to Ada binding doc in separate package
+ The Ada binding is packaged separately, there is no need to duplicate
+ the documentation in ncurses-doc. Replace the internal link with a
+ hyperlink.
+Author: Nicolas Boulenguez <nicolas@debian.org>
+Bug-Debian: https://bugs.debian.org/757991
+Forwarded: not-needed
+Last-Update: 2017-07-02
+
+---
+ doc/html/index.html | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+--- a/doc/html/index.html
++++ b/doc/html/index.html
+@@ -55,8 +55,9 @@
+ <li>A <a href="hackguide.html">hackers guide</a> to
+ ncurses.</li>
+
+- <li>A description of the <a href="Ada95.html">Ada95
+- binding</a>, by J&uuml;rgen Pfeifer.</li>
++ <li>A description of the <a href="../../libncursesada-doc/Ada95.html">Ada95
++ binding</a>, by J&uuml;rgen Pfeifer (only available if you have installed
++ the libncursesada-doc Debian package).</li>
+
+ <li>A <a href="NCURSES-Programming-HOWTO.html">A short
+ tutorial</a>, by Pradeep Padala.</li>
diff --git a/debian/patches/02-debian-backspace.diff b/debian/patches/02-debian-backspace.diff
new file mode 100644
index 0000000..b419f70
--- /dev/null
+++ b/debian/patches/02-debian-backspace.diff
@@ -0,0 +1,32 @@
+Author: Daniel Jacobowitz <dan@debian.org>
+Author: Sven Joachim <svenjoac@gmx.de>
+Description: Fix backspace key description in some terminfo entries
+Bug-Debian: https://bugs.debian.org/237997
+Bug-Debian: https://bugs.debian.org/602300
+Forwarded: not-needed
+Last-Update: 2019-07-17
+
+---
+ misc/terminfo.src | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+--- a/misc/terminfo.src
++++ b/misc/terminfo.src
+@@ -6190,7 +6190,7 @@ Eterm|Eterm-color|Eterm with xterm-style
+ ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=\n,
+ is1=\E[?47l\E>\E[?1l,
+ is2=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l, kNXT@,
+- kPRV@, ka1=\E[7~, ka3=\E[5~, kb2=\EOu, kbeg=\EOu, kbs=^H,
++ kPRV@, ka1=\E[7~, ka3=\E[5~, kb2=\EOu, kbeg=\EOu, kbs=^?,
+ kc1=\E[8~, kc3=\E[6~, kent=\EOM, khlp=\E[28~, kmous=\E[M,
+ mc4=\E[4i, mc5=\E[5i, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O,
+ rmam=\E[?7l, rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, rmkx=,
+@@ -7255,7 +7255,7 @@ screen|VT 100/ANSI X3.64 virtual termina
+ dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K,
+ enacs=\E(B\E)0, flash=\Eg, home=\E[H, hpa=\E[%i%p1%dG,
+ ht=^I, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L,
+- ind=\n, indn=\E[%p1%dS, is2=\E)0, kbs=^H, kcbt=\E[Z,
++ ind=\n, indn=\E[%p1%dS, is2=\E)0, kbs=^?, kcbt=\E[Z,
+ kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA,
+ kdch1=\E[3~, kend=\E[4~, kf1=\EOP, kf10=\E[21~,
+ kf11=\E[23~, kf12=\E[24~, kf2=\EOQ, kf3=\EOR, kf4=\EOS,
diff --git a/debian/patches/02-debian-drop-rin-from-screen-256color.diff b/debian/patches/02-debian-drop-rin-from-screen-256color.diff
new file mode 100644
index 0000000..168e0b1
--- /dev/null
+++ b/debian/patches/02-debian-drop-rin-from-screen-256color.diff
@@ -0,0 +1,23 @@
+Author: Sven Joachim <svenjoac@gmx.de>
+Description: Remove "rin" from screen-256color
+ Some (many?) tmux users have set their TERM environment variable to
+ screen-256color, and tmux before version 3.0 does not deal with "rin"
+ correctly. So drop "rin" from screen-256color, at least until tmux
+ 3.0 is released.
+Bug-Debian: https://bugs.debian.org/933572
+Last-Update: 2019-08-07
+
+---
+ misc/terminfo.src | 1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/misc/terminfo.src
++++ b/misc/terminfo.src
+@@ -7302,6 +7302,7 @@ screen-16color-bce-s|GNU Screen with 16
+
+ screen-256color|GNU Screen with 256 colors,
+ use=xterm+256setaf, use=screen4,
++ rin@,
+
+ screen-256color-s|GNU Screen with 256 colors and status line,
+ use=xterm+256setaf, use=screen-s,
diff --git a/debian/patches/03-debian-ncursesconfig-omit-L.diff b/debian/patches/03-debian-ncursesconfig-omit-L.diff
new file mode 100644
index 0000000..258d3b6
--- /dev/null
+++ b/debian/patches/03-debian-ncursesconfig-omit-L.diff
@@ -0,0 +1,47 @@
+Author: Sven Joachim <svenjoac@gmx.de>
+Description: Omit -L part from ncurses6{w,}-config output
+ "ncurses6-config --libs" includes a "-L" part which is not needed
+ since the library is installed in a directory in the default linker
+ search path.
+ .
+ Upstream omits the -L part if $libdir is in a standard directory,
+ however the list of standard directories is determined at build time
+ and architecture dependent, breaking multiarch co-installability.
+ Until there is a way to obtain the multiarch path without running
+ dpkg-architecture our patch is not upstreamable.
+Bug-Debian: https://bugs.debian.org/638281
+Bug-Debian: https://bugs.debian.org/745479
+Forwarded: not-needed
+Last-Update: 2019-10-21
+
+---
+ misc/ncurses-config.in | 4 +---
+ 1 file changed, 1 insertion(+), 3 deletions(-)
+
+--- a/misc/ncurses-config.in
++++ b/misc/ncurses-config.in
+@@ -40,7 +40,6 @@ exec_prefix="@exec_prefix@"
+
+ bindir="@bindir@"
+ includedir="@includedir@"
+-libdir="@libdir@"
+ datarootdir="@datarootdir@"
+ datadir="@datadir@"
+ mandir="@mandir@"
+@@ -109,7 +108,7 @@ do
+ -L*)
+ [ -d ${opt##-L} ] || continue
+ case ${opt##-L} in
+- @LD_SEARCHPATH@) # skip standard libdir
++ *) # skip standard libdir
+ continue
+ ;;
+ *)
+@@ -231,7 +230,6 @@ ENDECHO
+ echo $INCS
+ ;;
+ --libdir)
+- echo "${libdir}"
+ ;;
+ --mandir)
+ echo "${mandir}"
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..7796701
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,4 @@
+01-debian-no-ada-doc.diff
+02-debian-backspace.diff
+02-debian-drop-rin-from-screen-256color.diff
+03-debian-ncursesconfig-omit-L.diff
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..cd720f1
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,563 @@
+#!/usr/bin/make -f
+# This file has gone through many maintainers. Mostly rewritten
+# by Daniel Jacobowitz.
+
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+ NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+ MAKEFLAGS += -j$(NUMJOBS) -Otarget
+endif
+
+export CFLAGS := $(shell DEB_BUILD_MAINT_OPTIONS=hardening=+bindnow dpkg-buildflags --get CFLAGS)
+export CPPFLAGS := $(shell DEB_BUILD_MAINT_OPTIONS=hardening=+bindnow dpkg-buildflags --get CPPFLAGS)
+export CXXFLAGS := $(shell DEB_BUILD_MAINT_OPTIONS=hardening=+bindnow dpkg-buildflags --get CXXFLAGS)
+export LDFLAGS := $(shell DEB_BUILD_MAINT_OPTIONS=hardening=+bindnow dpkg-buildflags --get LDFLAGS)
+export BUILD_CFLAGS := $(CFLAGS)
+export BUILD_CPPFLAGS := $(CPPFLAGS)
+export BUILD_LDFLAGS := $(LDFLAGS)
+
+ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+HOST_CC ?= $(DEB_HOST_GNU_TYPE)-gcc
+HOST_CXX ?= $(DEB_HOST_GNU_TYPE)-g++
+else
+HOST_CC ?= gcc
+HOST_CXX ?= g++
+endif
+
+# These are important since this is a library package
+soname=6
+sodepver = (>= 6.1)
+
+# Name our packages
+package-base=ncurses-base
+package-bin=ncurses-bin
+package-lib=libncurses$(soname)
+package-lib-32=lib32ncurses$(soname)
+package-lib-64=lib64ncurses$(soname)
+package-ti=libtinfo$(soname)
+package-ti-32=lib32tinfo$(soname)
+package-ti-64=lib64tinfo$(soname)
+package-libw=libncursesw$(soname)
+package-libw-32=lib32ncursesw$(soname)
+package-libw-64=lib64ncursesw$(soname)
+package-dev=libncurses5-dev
+package-dev-32=lib32ncurses-dev
+package-dev-64=lib64ncurses-dev
+package-devti=libtinfo-dev
+package-devw=libncursesw5-dev
+package-term=ncurses-term
+package-examples=ncurses-examples
+package-lib-legacy=libncurses5
+package-ti-legacy=libtinfo5
+package-libw-legacy=libncursesw5
+
+workdir=$(shell pwd)
+tempdir=debian/tmp
+fulltempdir=$(workdir)/$(tempdir)
+
+srcdir=$(shell pwd)
+relsrcdir=..
+objdir=$(srcdir)/obj
+objdir-static=$(srcdir)/obj-static
+objdir-32=$(srcdir)/obj-32
+objdir-64=$(srcdir)/obj-64
+wobjdir=$(srcdir)/obj-wide
+wobjdir-static=$(srcdir)/obj-wide-static
+wobjdir-32=$(srcdir)/obj-wide-32
+wobjdir-64=$(srcdir)/obj-wide-64
+objdir-test=$(srcdir)/obj-test
+objdir-legacy=$(srcdir)/obj-legacy
+wobjdir-legacy=$(srcdir)/obj-wide-legacy
+
+DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM)
+DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
+DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
+DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+
+autogen-files := debian/libncurses-dev.links debian/libncurses-dev.install \
+ debian/libncurses6.install debian/libncursesw6.install \
+ debian/libtinfo6.install debian/libtinfo5.install \
+ debian/libncurses5.install debian/libncursesw5.install \
+ debian/libtermcap.so
+
+ifeq ($(DEB_HOST_ARCH),i386)
+build_64_target = x86_64-$(DEB_HOST_GNU_SYSTEM)
+build_64 = build-64 build-wide-64
+endif
+
+ifeq ($(DEB_HOST_ARCH),powerpc)
+build_64_target = powerpc64-$(DEB_HOST_GNU_SYSTEM)
+build_64 = build-64 build-wide-64
+endif
+
+ifeq ($(DEB_HOST_ARCH),s390)
+build_64_target = s390x-$(DEB_HOST_GNU_SYSTEM)
+build_64 = build-64 build-wide-64
+endif
+
+ifeq ($(DEB_HOST_ARCH),sparc)
+build_64_target = sparc64-$(DEB_HOST_GNU_SYSTEM)
+build_64 = build-64 build-wide-64
+endif
+
+ifeq ($(DEB_HOST_ARCH),amd64)
+build_32_target = i486-$(DEB_HOST_GNU_SYSTEM)
+build_32 = build-32 build-wide-32
+endif
+
+ifeq ($(DEB_HOST_ARCH),ppc64)
+build_32_target = powerpc-$(DEB_HOST_GNU_SYSTEM)
+build_32 = build-32 build-wide-32
+endif
+
+ifneq (,$(filter nobiarch,$(DEB_BUILD_PROFILES)))
+override build_32=
+override build_64=
+endif
+
+ifeq (,$(filter pkg.ncurses.nolegacy,$(DEB_BUILD_PROFILES)))
+build_legacy = build-legacy build-wide-legacy
+endif
+
+ifeq (,$(filter pkg.ncurses.noexamples,$(DEB_BUILD_PROFILES)))
+build_examples = build-test
+endif
+
+ifeq ($(DEB_HOST_ARCH_OS),linux)
+with_mouse = --with-gpm
+else
+ifeq ($(DEB_HOST_ARCH_OS),kfreebsd)
+with_mouse = --without-sysmouse
+endif
+endif
+
+CONFARGS = --prefix=/usr \
+ --build=$(DEB_BUILD_GNU_TYPE) \
+ --with-shared \
+ --mandir=/usr/share/man \
+ --with-manpage-format=normal \
+ --without-profile --without-debug \
+ --disable-rpath --enable-echo \
+ --disable-stripping \
+ --enable-const \
+ --enable-pc-files \
+ --with-pkg-config-libdir=/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig \
+ --libdir=/usr/lib/$(DEB_HOST_MULTIARCH) \
+ --with-install-prefix=$(fulltempdir) \
+ --without-ada \
+ --without-tests \
+ --without-progs \
+ $(with_mouse) \
+ --enable-symlinks \
+ --disable-termcap \
+ --with-default-terminfo-dir=/etc/terminfo \
+ --with-terminfo-dirs="/etc/terminfo:/lib/terminfo:/usr/share/terminfo" \
+ --with-ticlib=tic \
+ --with-termlib=tinfo \
+ --with-versioned-syms \
+ --disable-wattr-macros \
+ --disable-relink \
+ --enable-overwrite \
+ --with-xterm-kbs=del
+
+CONFARGS-LEGACY = $(CONFARGS) \
+ --with-abi-version=5 \
+ --disable-lp64 \
+ --with-chtype='long' \
+ --with-mmask-t='long' \
+ --disable-overwrite \
+ --without-cxx-binding \
+ --without-normal
+
+CONFARGS-TEST = --prefix=/usr \
+ --build=$(DEB_BUILD_GNU_TYPE) \
+ --bindir=/usr/lib/ncurses/examples \
+ --datadir=/usr/share/ncurses-examples \
+ --disable-stripping \
+ --with-x11-rgb=/etc/X11/rgb.txt \
+ --with-ncursesw \
+ --with-curses-dir=$(wobjdir)
+
+ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+CONFARGS += --with-build-cc=gcc --host=$(DEB_HOST_GNU_TYPE)
+CONFARGS-LEGACY += --with-build-cc=gcc --host=$(DEB_HOST_GNU_TYPE)
+CONFARGS-TEST += --host=$(DEB_HOST_GNU_TYPE)
+endif
+
+# Files for /lib/terminfo.
+libterminfofiles=a/ansi c/cons25 c/cons25-debian c/cygwin d/dumb h/hurd l/linux \
+ m/mach m/mach-bold m/mach-color m/mach-gnu m/mach-gnu-color p/pcansi \
+ r/rxvt r/rxvt-basic r/rxvt-m r/rxvt-unicode r/rxvt-unicode-256color \
+ s/screen s/screen-256color s/screen-256color-bce s/screen-bce \
+ s/screen-s s/screen-w s/screen.xterm-256color s/sun t/tmux \
+ t/tmux-256color v/vt100 v/vt102 v/vt220 v/vt52 w/wsvt25 w/wsvt25m \
+ x/xterm x/xterm-256color x/xterm-color x/xterm-debian x/xterm-mono \
+ x/xterm-r5 x/xterm-r6 x/xterm-vt220 x/xterm-xfree86 E/Eterm \
+ E/Eterm-color
+
+# Blacklist terminfo entries shipped by other Debian packages so that we do
+# not begin shipping them by accident.
+badterminfo = 5/5250 f/fbterm i/iterm i/iterm-am i/iterm-color \
+ j/jfbterm k/kon k/kon2 l/linux-5250 s/stterm s/stterm-256color
+
+ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+# Force necessary configure checks which do not work when
+# cross compiling; all Debian platforms return unsigned char
+# and working poll for these configure checks.
+export cf_cv_type_of_bool=unsigned char
+export cf_cv_working_poll=yes
+export cf_cv_gpm_soname=libgpm.so.2
+endif
+
+config.guess-stamp:
+ dh_update_autotools_config
+ dh_autoreconf autoreconf-dickey -- -f -i
+ touch $@
+
+$(objdir)/config.status: config.guess-stamp
+ test -d $(objdir) || mkdir $(objdir)
+ cd $(objdir) && $(relsrcdir)/configure \
+ $(CONFARGS)
+
+$(objdir-static)/config.status: config.guess-stamp
+ test -d $(objdir-static) || mkdir $(objdir-static)
+ cd $(objdir-static) && $(relsrcdir)/configure \
+ $(CONFARGS) \
+ --without-shared \
+ --without-gpm
+
+$(objdir-32)/config.status: config.guess-stamp
+ test -d $(objdir-32) || mkdir $(objdir-32)
+
+ cf_cv_type_of_bool='unsigned char'; export cf_cv_type_of_bool; \
+ cf_cv_working_poll=yes; export cf_cv_working_poll; \
+ cd $(objdir-32) && CC="$(HOST_CC) -m32" \
+ BUILD_CC="gcc" CXX="$(HOST_CXX) -m32" \
+ $(relsrcdir)/configure \
+ $(CONFARGS) \
+ --host=$(build_32_target) \
+ --without-gpm \
+ --libdir=/usr/lib32
+
+$(objdir-64)/config.status: config.guess-stamp
+ test -d $(objdir-64) || mkdir $(objdir-64)
+
+ cf_cv_type_of_bool='unsigned char'; export cf_cv_type_of_bool; \
+ cf_cv_working_poll=yes; export cf_cv_working_poll; \
+ cd $(objdir-64) && CC="$(HOST_CC) -m64" \
+ BUILD_CC="gcc" CXX="$(HOST_CXX) -m64" \
+ $(relsrcdir)/configure \
+ $(CONFARGS) \
+ --host=$(build_64_target) \
+ --without-gpm \
+ --libdir=/usr/lib64
+
+$(wobjdir)/config.status: config.guess-stamp
+ test -d $(wobjdir) || mkdir $(wobjdir)
+ cd $(wobjdir) && $(relsrcdir)/configure \
+ $(CONFARGS) \
+ --with-progs \
+ --enable-widec
+
+$(wobjdir-static)/config.status: config.guess-stamp
+ test -d $(wobjdir-static) || mkdir $(wobjdir-static)
+ cd $(wobjdir-static) && $(relsrcdir)/configure \
+ $(CONFARGS) \
+ --without-shared \
+ --without-gpm \
+ --enable-widec
+
+$(wobjdir-32)/config.status: config.guess-stamp
+ test -d $(wobjdir-32) || mkdir $(wobjdir-32)
+
+ cf_cv_type_of_bool='unsigned char'; export cf_cv_type_of_bool; \
+ cf_cv_working_poll=yes; export cf_cv_working_poll; \
+ cd $(wobjdir-32) && CC="$(HOST_CC) -m32" \
+ BUILD_CC="gcc" CXX="$(HOST_CXX) -m32" \
+ $(relsrcdir)/configure \
+ $(CONFARGS) \
+ --host=$(build_32_target) \
+ --without-gpm \
+ --enable-widec \
+ --libdir=/usr/lib32
+
+$(wobjdir-64)/config.status: config.guess-stamp
+ test -d $(wobjdir-64) || mkdir $(wobjdir-64)
+
+ cf_cv_type_of_bool='unsigned char'; export cf_cv_type_of_bool; \
+ cf_cv_working_poll=yes; export cf_cv_working_poll; \
+ cd $(wobjdir-64) && CC="$(HOST_CC) -m64" \
+ BUILD_CC="gcc" CXX="$(HOST_CXX) -m64" \
+ $(relsrcdir)/configure \
+ $(CONFARGS) \
+ --host=$(build_64_target) \
+ --without-gpm \
+ --enable-widec \
+ --libdir=/usr/lib64
+
+$(objdir-legacy)/config.status: config.guess-stamp
+ test -d $(objdir-legacy) || mkdir $(objdir-legacy)
+ cd $(objdir-legacy) && $(relsrcdir)/configure \
+ $(CONFARGS-LEGACY)
+
+$(wobjdir-legacy)/config.status: config.guess-stamp
+ test -d $(wobjdir-legacy) || mkdir $(wobjdir-legacy)
+ cd $(wobjdir-legacy) && $(relsrcdir)/configure \
+ $(CONFARGS-LEGACY) \
+ --enable-widec
+
+$(objdir-test)/config.status: build-wide config.guess-stamp
+ test -d $(objdir-test) || mkdir $(objdir-test)
+ export LD_LIBRARY_PATH=$${LD_LIBRARY_PATH}:$(wobjdir)/lib && \
+ cd $(objdir-test) && \
+ PKG_CONFIG_LIBDIR=$(wobjdir)/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig \
+ $(relsrcdir)/test/configure $(CONFARGS-TEST)
+
+build-indep: build-normal build-wide
+ touch $@
+
+build-arch build: build-indep build-static build-wide-static $(build_examples) \
+ $(build_legacy) $(build_64) $(build_32)
+ touch build-arch build
+
+build-normal: $(objdir)/config.status
+ cd $(objdir) && $(MAKE)
+ touch $@
+
+build-static: $(objdir-static)/config.status
+ cd $(objdir-static) && $(MAKE)
+ touch $@
+
+build-32: $(objdir-32)/config.status
+ cd $(objdir-32) && $(MAKE) CC="$(HOST_CC) -m32" CXX="$(HOST_CXX) -m32"
+ touch $@
+
+build-64: $(objdir-64)/config.status
+ cd $(objdir-64) && $(MAKE) CC="$(HOST_CC) -m64" CXX="$(HOST_CXX) -m64"
+ touch $@
+
+build-wide: $(wobjdir)/config.status
+ cd $(wobjdir) && $(MAKE)
+ # needed for building the examples
+ $(MAKE) -C $(wobjdir) DESTDIR=$(wobjdir) install.libs
+ touch $@
+
+build-wide-static: $(wobjdir-static)/config.status
+ cd $(wobjdir-static) && $(MAKE)
+ touch $@
+
+build-wide-32: $(wobjdir-32)/config.status
+ cd $(wobjdir-32) && $(MAKE) CC="$(HOST_CC) -m32" CXX="$(HOST_CXX) -m32"
+ touch $@
+
+build-wide-64: $(wobjdir-64)/config.status
+ cd $(wobjdir-64) && $(MAKE) CC="$(HOST_CC) -m64" CXX="$(HOST_CXX) -m64"
+ touch $@
+
+build-legacy: $(objdir-legacy)/config.status
+ cd $(objdir-legacy) && $(MAKE)
+ touch $@
+
+build-wide-legacy: $(wobjdir-legacy)/config.status
+ cd $(wobjdir-legacy) && $(MAKE)
+ touch $@
+
+build-test: $(objdir-test)/config.status
+ cd $(objdir-test) && $(MAKE)
+ touch $@
+
+clean:
+ dh_testdir
+ rm -f build build-arch build-indep
+ rm -f build-normal build-static build-wide \
+ build-wide-static build-legacy build-wide-legacy build-test $(build_32) $(build_64)
+ rm -rf $(objdir)
+ rm -rf $(objdir-static)
+ rm -rf $(objdir-32)
+ rm -rf $(objdir-64)
+ rm -rf $(wobjdir)
+ rm -rf $(wobjdir-static)
+ rm -rf $(wobjdir-32)
+ rm -rf $(wobjdir-64)
+ rm -rf $(objdir-legacy)
+ rm -rf $(wobjdir-legacy)
+ rm -rf $(objdir-test)
+ rm -f $(autogen-files)
+ dh_autoreconf_clean
+ dh_clean
+
+install-indep: build-indep
+ dh_testdir
+ dh_testroot
+ dh_prep
+
+ # We need the tinfo and tic libraries from the wide build, so install the
+ # non-wide libraries first and overwrite their tinfo tic libraries later.
+ $(MAKE) -C $(objdir) install.libs
+ rm -f $(tempdir)/usr/lib/$(DEB_HOST_MULTIARCH)/libtinfo.so*
+ rm -f $(tempdir)/usr/lib/$(DEB_HOST_MULTIARCH)/libtic.so*
+ $(MAKE) -C $(wobjdir) install
+
+ # Move terminfo files to the right place.
+ mv $(tempdir)/etc/terminfo $(tempdir)/usr/share/terminfo
+
+ # Remove blacklisted terminal types and other stuff we don't install
+ cd $(tempdir)/usr/share/terminfo && rm -f $(badterminfo)
+ rm -f $(tempdir)/usr/lib/terminfo \
+ $(tempdir)/usr/lib/$(DEB_HOST_MULTIARCH)/libcurses.so \
+ $(tempdir)/usr/lib/$(DEB_HOST_MULTIARCH)/libtinfo.so
+
+ # Provide header file symlinks under usr/include/ncursesw
+ install -d $(fulltempdir)/usr/include/ncursesw
+ set -e; \
+ for file in $(tempdir)/usr/include/*.h; do \
+ ln -s ../$${file##*/} $(tempdir)/usr/include/ncursesw; \
+ done
+
+ # Compile Debian-specific terminfo entries before copying files
+ # into their packages. Hurd uses gsbom/grbom, so pass -x to tic.
+ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+ set -e; \
+ for ti in xterm hurd rxvt rxvt-unicode; do \
+ LD_LIBRARY_PATH=$${LD_LIBRARY_PATH}:$(fulltempdir)/usr/lib/$(DEB_HOST_MULTIARCH):$(fulltempdir)/lib/$(DEB_HOST_MULTIARCH) \
+ TERMINFO=$(fulltempdir)/usr/share/terminfo \
+ $(tempdir)/usr/bin/tic -x debian/$$ti.ti; \
+ done
+else
+ set -e; \
+ for ti in xterm hurd rxvt rxvt-unicode; do \
+ TERMINFO=$(fulltempdir)/usr/share/terminfo \
+ tic -x debian/$$ti.ti; \
+ done
+
+endif
+
+ # Move ncurses-base terminfo entries to /lib/terminfo.
+ set -e; \
+ for f in $(libterminfofiles); do \
+ dir=$(tempdir)/lib/terminfo/$$(dirname $$f); \
+ mkdir -p $$dir; \
+ mv $(tempdir)/usr/share/terminfo/$$f $$dir; \
+ done
+
+ # Create an empty /etc/terminfo for the sysadmin.
+ mkdir -p $(tempdir)/etc/terminfo
+ install --mode 644 debian/README.etc $(tempdir)/etc/terminfo/README
+
+install-arch: build-arch install-indep
+ install -m 644 -t $(fulltempdir)/usr/lib/$(DEB_HOST_MULTIARCH) $(objdir-static)/lib/*.a
+ install -m 644 -t $(fulltempdir)/usr/lib/$(DEB_HOST_MULTIARCH) $(wobjdir-static)/lib/*.a
+
+ # Always add -ltinfo when linking with -lncurses or -lnursesw
+ rm -f $(tempdir)/usr/lib/$(DEB_HOST_MULTIARCH)/libncurses.so
+ echo "INPUT(libncurses.so.6 -ltinfo)" > $(tempdir)/usr/lib/$(DEB_HOST_MULTIARCH)/libncurses.so
+ rm -f $(tempdir)/usr/lib/$(DEB_HOST_MULTIARCH)/libncursesw.so
+ echo "INPUT(libncursesw.so.6 -ltinfo)" > $(tempdir)/usr/lib/$(DEB_HOST_MULTIARCH)/libncursesw.so
+ifneq (,$(build_32))
+ mkdir -p $(tempdir)/usr/lib32
+ rm -f $(tempdir)/usr/lib32/libncurses.so
+ echo "INPUT(libncurses.so.6 -ltinfo)" > $(tempdir)/usr/lib32/libncurses.so
+ rm -f $(tempdir)/usr/lib32/libncursesw.so
+ echo "INPUT(libncursesw.so.6 -ltinfo)" > $(tempdir)/usr/lib32/libncursesw.so
+endif
+ifneq (,$(build_64))
+ mkdir -p $(tempdir)/usr/lib64
+ rm -f $(tempdir)/usr/lib64/libncurses.so
+ echo "INPUT(libncurses.so.6 -ltinfo)" > $(tempdir)/usr/lib64/libncurses.so
+ rm -f $(tempdir)/usr/lib64/libncursesw.so
+ echo "INPUT(libncursesw.so.6 -ltinfo)" > $(tempdir)/usr/lib64/libncursesw.so
+endif
+
+ifneq ($(build_examples),)
+ # Install the test programs, sparing the detour to debian/tmp.
+ $(MAKE) -C $(objdir-test) DESTDIR=$(workdir)/debian/$(package-examples) install
+ sed -i -e 's%^#!/usr/bin/env perl%#!/usr/bin/perl%' \
+ $(workdir)/debian/$(package-examples)/usr/lib/ncurses/examples/tracemunch
+endif
+
+debian/%: debian/%.in
+ sed -e 's/$${DEB_HOST_MULTIARCH}/$(DEB_HOST_MULTIARCH)/g' $< > $@
+
+binary: binary-arch binary-indep
+
+binary-arch: build-arch install-arch $(autogen-files)
+ dh_testdir
+ dh_testroot
+ dh_install -p$(package-bin) -Xncurses6-config -Xncursesw6-config
+ dh_install -a -N$(package-bin)
+ dh_installman -a
+ dh_installdocs -p$(package-ti) -p$(package-bin) -p$(package-examples) debian/FAQ
+ dh_installdocs -a -N$(package-bin) -N$(package-ti) -N$(package-examples) \
+ -N$(package-ti-legacy) -N$(package-lib-legacy) -N$(package-libw-legacy) \
+ -N$(package-lib-32) -N$(package-libw-32) -N$(package-dev-32) -N$(package-ti-32) \
+ -N$(package-lib-64) -N$(package-libw-64) -N$(package-dev-64) -N$(package-ti-64) \
+ --link-doc=$(package-ti)
+ dh_installdocs -p$(package-ti-legacy)
+ dh_installdocs -p$(package-lib-legacy) -p$(package-libw-legacy) \
+ --link-doc=$(package-ti-legacy)
+ifneq ($(build_32),)
+ dh_installdocs -p$(package-ti-32)
+ dh_installdocs -p$(package-lib-32) -p$(package-libw-32) -p$(package-dev-32) \
+ --link-doc=$(package-ti-32)
+endif
+ifneq ($(build_64),)
+ dh_installdocs -p$(package-ti-64)
+ dh_installdocs -p$(package-lib-64) -p$(package-libw-64) -p$(package-dev-64) \
+ --link-doc=$(package-ti-64)
+endif
+ dh_installchangelogs -a NEWS
+ dh_installdirs -a
+
+ # Strip the packages, shipping detached debugging symbols.
+ dh_dwz -a
+ dh_strip -a
+ dh_lintian -a
+ dh_link -a
+ dh_compress -p$(package-examples) usr/lib/ncurses/examples/README
+ dh_compress -a -N$(package-examples)
+ dh_fixperms -a
+ dh_missing -a --fail-missing
+ dh_makeshlibs -p$(package-ti) -V "$(package-ti) $(sodepver)" --add-udeb=$(package-ti)-udeb -- -c4
+ dh_makeshlibs -p$(package-lib) -V "$(package-lib) $(sodepver)" -- -c4
+ dh_makeshlibs -p$(package-libw) -V "$(package-libw) $(sodepver)" -- -c4
+ dh_makeshlibs -p$(package-ti-legacy) -V "$(package-ti-legacy) $(sodepver)" -- -c4
+ dh_makeshlibs -p$(package-lib-legacy) -V "$(package-lib-legacy) $(sodepver)" -- -c4
+ dh_makeshlibs -p$(package-libw-legacy) -V "$(package-libw-legacy) $(sodepver)" -- -c4
+ifneq ($(build_32),)
+ dh_makeshlibs -p$(package-ti-32) -V "$(package-ti-32) $(sodepver)" -- -c4
+ dh_makeshlibs -p$(package-lib-32) -V "$(package-lib-32) $(sodepver)" -- -c4
+ dh_makeshlibs -p$(package-libw-32) -V "$(package-libw-32) $(sodepver)" -- -c4
+endif
+ifneq ($(build_64),)
+ dh_makeshlibs -p$(package-ti-64) -V "$(package-ti-64) $(sodepver)" -- -c4
+ dh_makeshlibs -p$(package-lib-64) -V "$(package-lib-64) $(sodepver)" -- -c4
+ dh_makeshlibs -p$(package-libw-64) -V "$(package-libw-64) $(sodepver)" -- -c4
+endif
+ dh_shlibdeps -a
+ dh_gencontrol -a
+ dh_installdeb -a
+ # We don't install the tic library in the libtinfo6 udeb, adjust the shlibs file
+ sed -i '/^udeb: libtic /d' debian/$(package-ti)/DEBIAN/shlibs
+ dh_md5sums -a
+ dh_builddeb -a
+
+binary-indep: build-indep install-indep $(autogen-files)
+ dh_testdir
+ dh_testroot
+
+ dh_installdocs -i -Xhtml/Ada95.html -Xhtml/ada/
+ dh_installchangelogs -i NEWS
+ dh_install -i
+ dh_installdirs -i
+ dh_lintian -i
+ dh_link -i
+ dh_compress -i
+ dh_fixperms -i
+ dh_missing -i --fail-missing
+ dh_gencontrol -i
+ dh_installdeb -i
+ dh_md5sums -i
+ dh_builddeb -i
+
+.PHONY: binary binary-arch binary-indep clean install-indep install-arch
diff --git a/debian/rxvt-unicode.ti b/debian/rxvt-unicode.ti
new file mode 100644
index 0000000..35a0a3c
--- /dev/null
+++ b/debian/rxvt-unicode.ti
@@ -0,0 +1,192 @@
+# From: Thomas Dickey <dickey@clark.net> 04 Oct 1997
+# Updated: Özgür Kesim <kesim@math.fu-berlin.de> 02 Nov 1997
+# Updated: Marc Lehmann <schmorp@schmorp.de>, 17 Feb 2005
+# Updated: Marc Lehmann <schmorp@schmorp.de>, 04 Nov 2008: change init/reset sequences
+# Updated: Marc Lehmann <schmorp@schmorp.de>, 24 Nov 2014: implement cvvis as blinking cursor
+# Updated: Marc Lehmann <schmorp@schmorp.de>, 13 Dec 2014: removed superfluous 0 from sgr
+rxvt-unicode|rxvt-unicode terminal (X Window System),
+ am,
+ bce,
+ eo,
+ km,
+ msgr,
+ xenl,
+ hs,
+ cols#80,
+ it#8,
+ lines#24,
+ acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~-A.B+C\,D0EhFiG,
+ bel=^G,
+ blink=\E[5m,
+ bold=\E[1m,
+ clear=\E[H\E[2J,
+ civis=\E[?25l,
+ cnorm=\E[?12l\E[?25h,
+ cvvis=\E[?12;25h,
+ cr=^M,
+ csr=\E[%i%p1%d;%p2%dr,
+ cub=\E[%p1%dD,
+ cub1=^H,
+ cud=\E[%p1%dB,
+ cud1=^J,
+ cuf=\E[%p1%dC,
+ cuf1=\E[C,
+ cup=\E[%i%p1%d;%p2%dH,
+ cuu=\E[%p1%dA,
+ cuu1=\E[A,
+ dch=\E[%p1%dP,
+ dch1=\E[P,
+ dl=\E[%p1%dM,
+ dl1=\E[M,
+ ed=\E[J,
+ el=\E[K,
+ el1=\E[1K,
+ flash=\E[?5h$<20/>\E[?5l,
+ home=\E[H,
+ hpa=\E[%i%p1%dG,
+ ht=^I,
+ hts=\EH,
+ ich=\E[%p1%d@,
+ ich1=\E[@,
+ il=\E[%p1%dL,
+ il1=\E[L,
+ ind=^J,
+ is1=\E[\041p,
+ is2=\E[r\E[m\E[2J\E[?7;25h\E[?1;3;4;5;6;9;66;1000;1001;1049l\E[4l,
+ kDC=\E[3$,
+ kDC5=\E[3\^,
+ kDC6=\E[3@,
+ kDN=\E[b,
+ kDN5=\EOb,
+ kIC=\E[2$,
+ kIC5=\E[2\^,
+ kIC6=\E[2@,
+ kEND=\E[8$,
+ kEND5=\E[8\^,
+ kEND6=\E[8@,
+ kFND=\E[1$,
+ kFND5=\E[1\^,
+ kFND6=\E[1@,
+ kHOM=\E[7$,
+ kHOM5=\E[7\^,
+ kHOM6=\E[7@,
+ kLFT=\E[d,
+ kLFT5=\EOd,
+ kNXT=\E[6$,
+ kNXT5=\E[6\^,
+ kNXT6=\E[6@,
+ kPRV=\E[5$,
+ kPRV5=\E[5\^,
+ kPRV6=\E[5@,
+ kRIT=\E[c,
+ kRIT5=\EOc,
+ kUP=\E[a,
+ kUP5=\EOa,
+ kbs=\177,
+ ka1=\EOw,
+ ka3=\EOy,
+ kb2=\EOu,
+ kc1=\EOq,
+ kc3=\EOs,
+ kcbt=\E[Z,
+ kcub1=\E[D,
+ kcud1=\E[B,
+ kcuf1=\E[C,
+ kcuu1=\E[A,
+ kdch1=\E[3~,
+ kel=\E[8\^,
+ kend=\E[8~,
+ kent=\EOM,
+ kf1=\E[11~,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf13=\E[25~,
+ kf14=\E[26~,
+ kf15=\E[28~,
+ kf16=\E[29~,
+ kf17=\E[31~,
+ kf18=\E[32~,
+ kf19=\E[33~,
+ kf2=\E[12~,
+ kf20=\E[34~,
+ kf3=\E[13~,
+ kf4=\E[14~,
+ kf5=\E[15~,
+ kf6=\E[17~,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+ kfnd=\E[1~,
+ khome=\E[7~,
+ kich1=\E[2~,
+ kmous=\E[M,
+ knp=\E[6~,
+ kpp=\E[5~,
+ kslt=\E[4~,
+ rc=\E8,
+ rev=\E[7m,
+ ri=\EM,
+ rmso=\E[27m,
+ rmul=\E[24m,
+ rs1=\Ec,
+ rs2=\E[r\E[m\E[?7;25h\E[?1;3;4;5;6;9;66;1000;1001;1049l\E[4l,
+ sgr0=\E[m\E(B,
+ enacs=,
+ smacs=\E(0,
+ rmacs=\E(B,
+ smso=\E[7m,
+ smul=\E[4m,
+ tbc=\E[3g,
+ vpa=\E[%i%p1%dd,
+ colors#88,
+ pairs#7744,
+ btns#5,
+ lm#0,
+ ccc,
+ npc,
+ mc5i,
+ ncv#0,
+ mir,
+ xon,
+ bw,
+ ech=\E[%p1%dX,
+ mc0=\E[i,
+ mc4=\E[4i,
+ mc5=\E[5i,
+ sitm=\E[3m,
+ ritm=\E[23m,
+ smam=\E[?7h,
+ rmam=\E[?7l,
+ smir=\E[4h,
+ rmir=\E[4l,
+ smcup=\E[?1049h,
+ rmcup=\E[r\E[?1049l,
+ smkx=\E=,
+ rmkx=\E>,
+ indn=\E[%p1%dS,
+ rin=\E[%p1%dT,
+ sgr=\E[%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m%?%p9%t\E(0%e\E(B%;,
+ op=\E[39;49m,
+ setaf=\E[38;5;%p1%dm,
+ setab=\E[48;5;%p1%dm,
+ setf=%?%p1%{7}%>%t\E[38;5;%p1%dm%e\E[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m%;,
+ setb=%?%p1%{7}%>%t\E[48;5;%p1%dm%e\E[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m%;,
+ initc=\E]4;%p1%d;rgb\:%p2%{65535}%*%{1000}%/%4.4X/%p3%{65535}%*%{1000}%/%4.4X/%p4%{65535}%*%{1000}%/%4.4X\E\\,
+ sc=\E7,
+ s0ds=\E(B,
+ s1ds=\E(0,
+ s2ds=\E*B,
+ s3ds=\E+B,
+ u6=\E[%i%d;%dR,
+ u7=\E[6n,
+ u8=\E[?1;2c,
+ u9=\E[c,
+ tsl=\E]2;,
+ fsl=\007,
+ dsl=\E]2;\007,
+
+rxvt-unicode-256color|rxvt-unicode terminal with 256 colors (X Window System),
+ colors#256,
+ pairs#32767,
+ use=rxvt-unicode,
diff --git a/debian/rxvt.ti b/debian/rxvt.ti
new file mode 100644
index 0000000..021c4b7
--- /dev/null
+++ b/debian/rxvt.ti
@@ -0,0 +1,170 @@
+# From: Thomas Dickey <dickey@clark.net> 04 Oct 1997
+# Updated: Oezguer Kesim <kesim@math.fu-berlin.de> 02 Nov 1997
+# Notes:
+# rxvt 2.21b uses
+# smacs=\E(B\E)U^N, rmacs=\E(B\E)0^O,
+# but some applications don't work with that.
+# It also has an AIX extension
+# box2=lqkxjmwuvtn,
+# and
+# ech=\E[%p1%dX,
+# but the latter does not work correctly.
+#
+# The distributed terminfo says it implements hpa and vpa, but they are not
+# implemented correctly, using relative rather than absolute positioning.
+#
+# rxvt is normally configured to look for "xterm" or "xterm-color" as $TERM.
+# Since rxvt is not really compatible with xterm, it should be configured as
+# "rxvt" (monochrome) and "rxvt-color".
+#
+# removed dch/dch1 because they are inconsistent with bce/ech -TD
+#
+# Debian's changes:
+# Debian uses two termcap/terminfo entries:
+# rxvt for color displays
+# rxvt-m for monochrome displays
+# Debian also prefers ^? for kbs (backspace).
+#
+# These additional changes were added for the ncurses package:
+# Remove kf0 (wtf has F0 anyhow?) due to conflict with kf10.
+# Move hpa and vpa back to rxvt-basic, since they were fixed
+# to use absolute positioning long ago.
+# Use vt220+keypad after rxvt+pcfkeys, since rxvt uses \E[11~ for
+# F1 (\EOP is for KP_F1).
+# Use smkx instead of rmkx in rs2.
+rxvt-basic|rxvt-m|rxvt terminal base (X Window System),
+ OTbs, am, bce, eo, km, mir, msgr, xenl, xon,
+ cols#80, it#8, lines#24,
+ acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~,
+ bel=^G, blink=\E[5m, bold=\E[1m, civis=\E[?25l,
+ clear=\E[H\E[2J, cnorm=\E[?25h, cr=^M,
+ csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H,
+ cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C,
+ cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A,
+ dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K,
+ enacs=\E(B\E)0, flash=\E[?5h\E[?5l, home=\E[H, ht=^I,
+ hpa=\E[%i%p1%dG,
+ hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L,
+ ind=^J, is1=\E[?47l\E=\E[?1l,
+ is2=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l, kbs=^?,
+ kcbt=\E[Z, kmous=\E[M, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O,
+ rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, rmkx=\E>, rmso=\E[27m,
+ rmul=\E[24m,
+ rs1=\E>\E[1;3;4;5;6l\E[?7h\E[m\E[r\E[2J\E[H,
+ rs2=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l\E=\E[?1000l\E[?25h,
+ s0ds=\E(B, s1ds=\E(0, sc=\E7,
+ sgr=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;,
+ sgr0=\E[0m\017, smacs=^N, smcup=\E7\E[?47h, smir=\E[4h,
+ smkx=\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g,
+ vpa=\E[%i%p1%dd,
+ use=rxvt+pcfkeys, use=vt220+keypad,
+# Key Codes from rxvt reference:
+#
+# Note: Shift + F1-F10 generates F11-F20
+#
+# For the keypad, use Shift to temporarily override Application-Keypad
+# setting use Num_Lock to toggle Application-Keypad setting if Num_Lock
+# is off, escape sequences toggle Application-Keypad setting.
+# Also note that values of Home, End, Delete may have been compiled
+# differently on your system.
+#
+# Normal Shift Control Ctrl+Shift
+# Tab ^I ESC [ Z ^I ESC [ Z
+# BackSpace ^H ^? ^? ^?
+# Find ESC [ 1 ~ ESC [ 1 $ ESC [ 1 ^ ESC [ 1 @
+# Insert ESC [ 2 ~ paste ESC [ 2 ^ ESC [ 2 @
+# Execute ESC [ 3 ~ ESC [ 3 $ ESC [ 3 ^ ESC [ 3 @
+# Select ESC [ 4 ~ ESC [ 4 $ ESC [ 4 ^ ESC [ 4 @
+# Prior ESC [ 5 ~ scroll-up ESC [ 5 ^ ESC [ 5 @
+# Next ESC [ 6 ~ scroll-down ESC [ 6 ^ ESC [ 6 @
+# Home ESC [ 7 ~ ESC [ 7 $ ESC [ 7 ^ ESC [ 7 @
+# End ESC [ 8 ~ ESC [ 8 $ ESC [ 8 ^ ESC [ 8 @
+# Delete ESC [ 3 ~ ESC [ 3 $ ESC [ 3 ^ ESC [ 3 @
+# F1 ESC [ 11 ~ ESC [ 23 ~ ESC [ 11 ^ ESC [ 23 ^
+# F2 ESC [ 12 ~ ESC [ 24 ~ ESC [ 12 ^ ESC [ 24 ^
+# F3 ESC [ 13 ~ ESC [ 25 ~ ESC [ 13 ^ ESC [ 25 ^
+# F4 ESC [ 14 ~ ESC [ 26 ~ ESC [ 14 ^ ESC [ 26 ^
+# F5 ESC [ 15 ~ ESC [ 28 ~ ESC [ 15 ^ ESC [ 28 ^
+# F6 ESC [ 17 ~ ESC [ 29 ~ ESC [ 17 ^ ESC [ 29 ^
+# F7 ESC [ 18 ~ ESC [ 31 ~ ESC [ 18 ^ ESC [ 31 ^
+# F8 ESC [ 19 ~ ESC [ 32 ~ ESC [ 19 ^ ESC [ 32 ^
+# F9 ESC [ 20 ~ ESC [ 33 ~ ESC [ 20 ^ ESC [ 33 ^
+# F10 ESC [ 21 ~ ESC [ 34 ~ ESC [ 21 ^ ESC [ 34 ^
+# F11 ESC [ 23 ~ ESC [ 23 $ ESC [ 23 ^ ESC [ 23 @
+# F12 ESC [ 24 ~ ESC [ 24 $ ESC [ 24 ^ ESC [ 24 @
+# F13 ESC [ 25 ~ ESC [ 25 $ ESC [ 25 ^ ESC [ 25 @
+# F14 ESC [ 26 ~ ESC [ 26 $ ESC [ 26 ^ ESC [ 26 @
+# F15 (Help) ESC [ 28 ~ ESC [ 28 $ ESC [ 28 ^ ESC [ 28 @
+# F16 (Menu) ESC [ 29 ~ ESC [ 29 $ ESC [ 29 ^ ESC [ 29 @
+# F17 ESC [ 31 ~ ESC [ 31 $ ESC [ 31 ^ ESC [ 31 @
+# F18 ESC [ 32 ~ ESC [ 32 $ ESC [ 32 ^ ESC [ 32 @
+# F19 ESC [ 33 ~ ESC [ 33 $ ESC [ 33 ^ ESC [ 33 @
+# F20 ESC [ 34 ~ ESC [ 34 $ ESC [ 34 ^ ESC [ 34 @
+# Application
+# Up ESC [ A ESC [ a ESC O a ESC O A
+# Down ESC [ B ESC [ b ESC O b ESC O B
+# Right ESC [ C ESC [ c ESC O c ESC O C
+# Left ESC [ D ESC [ d ESC O d ESC O D
+# KP_Enter ^M ESC O M
+# KP_F1 ESC O P ESC O P
+# KP_F2 ESC O Q ESC O Q
+# KP_F3 ESC O R ESC O R
+# KP_F4 ESC O S ESC O S
+# XK_KP_Multiply * ESC O j
+# XK_KP_Add + ESC O k
+# XK_KP_Separator , ESC O l
+# XK_KP_Subtract - ESC O m
+# XK_KP_Decimal . ESC O n
+# XK_KP_Divide / ESC O o
+# XK_KP_0 0 ESC O p
+# XK_KP_1 1 ESC O q
+# XK_KP_2 2 ESC O r
+# XK_KP_3 3 ESC O s
+# XK_KP_4 4 ESC O t
+# XK_KP_5 5 ESC O u
+# XK_KP_6 6 ESC O v
+# XK_KP_7 7 ESC O w
+# XK_KP_8 8 ESC O x
+# XK_KP_9 9 ESC O y
+rxvt+pcfkeys|fragment for PC-style fkeys,
+ kDC=\E[3$, kEND=\E[8$, kHOM=\E[7$, kLFT=\E[d, kNXT=\E[6$,
+ kPRV=\E[5$, kRIT=\E[c, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C,
+ kcuu1=\E[A, kdch1=\E[3~, kel=\E[8\^, kend=\E[8~,
+ kf1=\E[11~, kf10=\E[21~, kf11=\E[23~, kf12=\E[24~,
+ kf13=\E[25~, kf14=\E[26~, kf15=\E[28~, kf16=\E[29~,
+ kf17=\E[31~, kf18=\E[32~, kf19=\E[33~, kf2=\E[12~,
+ kf20=\E[34~, kf21=\E[23$, kf22=\E[24$, kf23=\E[11\^,
+ kf24=\E[12\^, kf25=\E[13\^, kf26=\E[14\^, kf27=\E[15\^,
+ kf28=\E[17\^, kf29=\E[18\^, kf3=\E[13~, kf30=\E[19\^,
+ kf31=\E[20\^, kf32=\E[21\^, kf33=\E[23\^, kf34=\E[24\^,
+ kf35=\E[25\^, kf36=\E[26\^, kf37=\E[28\^, kf38=\E[29\^,
+ kf39=\E[31\^, kf4=\E[14~, kf40=\E[32\^, kf41=\E[33\^,
+ kf42=\E[34\^, kf43=\E[23@, kf44=\E[24@, kf5=\E[15~,
+ kf6=\E[17~, kf7=\E[18~, kf8=\E[19~, kf9=\E[20~, kfnd=\E[1~,
+ khome=\E[7~, kich1=\E[2~, knp=\E[6~, kpp=\E[5~, kslt=\E[4~,
+ kDN=\E[b, kDN5=\EOb, kDN6=\EOB, kLFT5=\EOd, kLFT6=\EOD,
+ kRIT5=\EOc, kRIT6=\EOC, kUP=\E[a, kUP5=\EOa, kUP6=\EOA,
+rxvt|rxvt terminal emulator (X Window System),
+ ncv@,
+ sgr0=\E[m\017,
+ use=rxvt-basic, use=ecma+color,
+rxvt-color|rxvt terminal emulator (X Window System),
+ use=rxvt,
+rxvt-256color|rxvt 2.7.9 with xterm 256-colors,
+ use=xterm+256color, use=rxvt,
+rxvt-88color|rxvt 2.7.9 with xterm 88-colors,
+ use=xterm+88color, use=rxvt,
+rxvt-xpm|rxvt terminal emulator (X Window System),
+ use=rxvt,
+rxvt-cygwin|rxvt terminal emulator (X Window System) on cygwin,
+ acsc=0\333+\257\,\256-\^`\004a\261f\370g\361h\260j\331k\277l\332m\300n\305o~p\304q\304r\304s_t\303u\264v\301w\302x\263y\363z\362{\343|\330}\234~\376,
+ use=rxvt,
+rxvt-cygwin-native|rxvt terminal emulator (native MS Window System port) on cygwin,
+ acsc=0\333+\257\,\256-\^`\004a\261f\370g\361h\260j\331k\277l\332m\300n\305o~p\304q\304r\304s_t\303u\264v\301w\302x\263y\363z\362{\343|\330~\376,
+ use=rxvt-cygwin,
+
+# This variant is supposed to work with rxvt 2.7.7 when compiled with
+# NO_BRIGHTCOLOR defined. rxvt needs more work...
+rxvt-16color|xterm with 16 colors like aixterm,
+ ncv#32, use=ibm+16color, use=rxvt,
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides
new file mode 100644
index 0000000..549d623
--- /dev/null
+++ b/debian/source/lintian-overrides
@@ -0,0 +1,4 @@
+# Those are all transitional packages pulling in the same binary
+# package, no point in describing them differently.
+ncurses source: duplicate-short-description libtinfo-dev libncurses5-dev libncursesw5-dev
+ncurses source: duplicate-long-description libtinfo-dev libncurses5-dev libncursesw5-dev
diff --git a/debian/upstream/signing-key.asc b/debian/upstream/signing-key.asc
new file mode 100644
index 0000000..9425bd6
--- /dev/null
+++ b/debian/upstream/signing-key.asc
@@ -0,0 +1,24 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1
+
+mQGiBD/4r7IRBADFuacEqf9fye+NQSm7xjNP705aq75VrUd2hJyPmSiFUIyQEfc4
+4GQXGdFg+/Apq4iq/50/8pR8YXOKwP5OE69emEp7IxjST41orGUk5ZwcnlSkaruN
+WLTe/lN3e0oOIVbYig1lUbU5IxZu03KfNg2DZ9JiZdNBlzlqx1+oFlWFLwCg3awg
+EfOUfbe4kVxNrsnxaCJYJ38EAMRVyUOfhkm9l0YuiC4ebOHrdmn9jFVW+XZPZDeb
+8DcyTBNrgvVTnEmrNzVJgOyZIW+uraBVitak+No1kwXvC/i0kZEzYqfG87EdJSfe
+OV7axIRisiTrcbZdRJ3CBDtGvLqJ9OuGFHPQmntnZfhiwJTR79hepndEQYyV5eQb
+oQ+aA/0bI+/odyRDefc9HF1EhOcz8E76QP+VlvUfIDUJrmwv/3gLZ968HACOe0DE
++bcUockLJxoNwQFwCQPjm5S2+Ba2uY4hRhOA+MResZWlPouoosay2ADfiU7pdBCx
+nbcLAuezgnZg4jcXvLl1QiAihxaEI2jqgZBnnierWzqRzRZM4LQrVGhvbWFzIERp
+Y2tleSA8ZGlja2V5QGludmlzaWJsZS1pc2xhbmQubmV0PoheBBMRAgAeBQI/+K+y
+AhsDBgsJCAcDAgMVAgMDFgIBAh4BAheAAAoJEHAjU+D35I7bejEAnRYLqlswwk+F
++pWcppXLnsskhTfSAKCrg23hTwzaaW9mlbmDavid+QQu3bkBDQQ/+K+0EAQAjTl1
+EeUt5EUq8tiGBq+KtFo3TxIdJKBtVFQ4btETdF23dkZ1o1642GmF7JJgn6PKUcJD
+UlHhUO4IEcpHABAiU4HweoWh8yT/yaA9AXqRKcJpMQ5bEGoooHBIg0Uh8ahG6Q1c
+HzgsGOaOK9YzFSvSIRXryMlrh1oITzvwEkXRfOcAAwcD/iRaNtGYaS05FwaaVvm0
+Eexhhw2JzSaRP6PY3r/BGmgPVG9Uk9huk+Yk/pdW9Pa3KRj37ANK2svfwHx9A077
+Ma9GoupZ/rjP01WO0ur8tzC7KsqCep9m33K9kdAeJZ0Ud+AwsnAEy/Q1XZin/jUU
+5L1lzko010LXY9CqdrmCXhaqiEkEGBECAAkFAj/4r7QCGwwACgkQcCNT4Pfkjtuu
+ngCg2es41JEYaarCcT+gFpyM0WCqAU8An3L0pkO4wtZ8SejpHa7WSR9M54xd
+=VWbi
+-----END PGP PUBLIC KEY BLOCK-----
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..7f48d3a
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,7 @@
+version=4
+
+# By default we check for releases only. If you want to
+# check/download weekly snapshots, use the watch.patchlevel file.
+
+opts=pgpsigurlmangle=s/$/.asc/ \
+ https://invisible-mirror.net/archives/ncurses/ncurses-(.*)\.tar\.gz
diff --git a/debian/watch.patchlevel b/debian/watch.patchlevel
new file mode 100644
index 0000000..6bd3719
--- /dev/null
+++ b/debian/watch.patchlevel
@@ -0,0 +1,7 @@
+version=4
+
+# Use this file for downloading weekly snapshots with uscan
+# i.e. "uscan --watchfile debian/watch.patchlevel"
+
+opts=uversionmangle=s/-/+/,pgpsigurlmangle=s/$/.asc/ \
+ https://invisible-mirror.net/archives/ncurses/current/ncurses-(.*)\.tgz
diff --git a/debian/xterm.ti b/debian/xterm.ti
new file mode 100644
index 0000000..3f3c898
--- /dev/null
+++ b/debian/xterm.ti
@@ -0,0 +1,2449 @@
+# $XTermId: terminfo,v 1.177 2017/12/25 21:08:55 tom Exp $
+#
+# Updates/notes/new entries (e.g., xterm-8bit, xterm-16color, xterm-256color)
+# - Thomas E. Dickey
+#
+#------------------------------------------------------------------------------
+# Copyright 1996-2016,2017 by Thomas E. Dickey
+#
+# All Rights Reserved
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+# IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
+# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#
+# Except as contained in this notice, the name(s) of the above copyright
+# holders shall not be used in advertising or otherwise to promote the
+# sale, use or other dealings in this Software without prior written
+# authorization.
+#------------------------------------------------------------------------------
+# format (ncurses 6.1): tic -W -1 -f -x terminfo
+#------------------------------------------------------------------------------
+#
+# Special Capabilities:
+# --------------------
+# ich has a corresponding capability that inserts a single blank. We could
+# have used ich1=\E[@, which works with ncurses, but that is not standard
+# behavior. If it is set, then SVr4 vi (e.g., Solaris 2.6) emits both
+# smir/rmir and ich1.
+# meml locks memory above the cursor; memu unlocks (ala HP terminals). This
+# is not recognized by some older (e.g., SVr3) tic programs, but none
+# do more than warn about it. Ignore the warning.
+# smcup clears memory before switching to the alternate screen. The older
+# (deprecated) \E[?47h did not do this, requiring applications to
+# embed a \E[2J in the rmcup string. However, that behavior cannot
+# be disabled via titeInhibit, making that resource not function as
+# intended on systems with terminfo.
+# rs2/is2 are shorter with XFree86 xterm because it supports DECSTR. We
+# use the shorter sequence for compatibility with the termcap, which
+# is trimmed to keep it shorter than 1023 characters. It (escape \E[!p)
+# replaces these in the conventional vt100 reset-string:
+# \E7 - save cursor (fixes origin-mode side-effect)
+# \E[r - reset scrolling margins
+# \E[m - reset SGR (including color)
+# \E[?7h - reset wraparound mode (DECAWM)
+# \E[?1l - reset application cursor keys (DECCKM)
+# \E[?6l - reset origin mode (DECOM)
+# \E8 - restore cursor
+# DECSTR is recognized by XFree86 xterm even in vt52 mode.
+#
+# Editing Keypad:
+# --------------
+# XFree86 xterm emulates vt220 if the decTerminalID resource is set to 200 or
+# higher. Otherwise it emulates a vt100 or vt52 depending on the value of the
+# resource. When emulating a vt220, we support the editing keypad. Sun and PC
+# keyboards have an editing keypad which is similar to the vt220:
+#
+# VT220 editing keypad
+# ----------------------------
+# Find Insert Remove
+# Select Prev Next
+# ----------------------------
+#
+# Sun/PC editing keypad
+# ----------------------------
+# Insert Home PageUp
+# Delete End PageDn
+# ----------------------------
+#
+# If the sunKeyboard resource is true, we map it this way (adjusting the values
+# of Home, End and Delete):
+# VT220 Sun/PC
+# ----------------------------
+# Find Home
+# Select End
+# Insert Insert
+# Remove Delete
+# Prev PageUp
+# Next PageDn
+# ----------------------------
+#
+# Note that all of the keys on the editing keypad transmit escape sequences. A
+# vt220 does this only when in vt220 mode; when emulating a vt100 the editing
+# keypad is inactive.
+#
+# Alternative keycodes:
+# --------------------
+# Several of the function keys have alternative names, depending on the type of
+# host which your xterm is connected to. DEC (i.e., the VMS system) uses F15
+# as the HELP key, F16 as the DO key. Unix applications generally do not do
+# this. Curses applications in particular, assign a unique keycode to each
+# capability string. These terminal descriptions do not have conflicting
+# definitions, to ensure that Unix curses applications use a consistent set of
+# keycodes. To get a VMS-bias, make these substitutions:
+# 1. change khome to kfnd
+# 2. change kend to kslt
+# The original xterm-r6 entry does in fact have a VMS bias.
+#
+# Some legacy applications using the termcap emulation may expect kll where
+# we have specified kend.
+#
+# Function keys with modifiers (Sun/PC):
+# -------------------------------------
+# Shift-Fx - kf{12+x}
+# Control-Fx - kf{24+x}
+# Shift-Control-Fx - kf{36+x}
+#
+# The terminfo defines some special keys which are documented as "shifted",
+# e.g., kDC is shifted-delete-character.
+#
+# Note however, that even though the terminfo says a key might be sent, there
+# may be conflicts which prevent this. For example, it is common to use
+# shifted pageup and pagedown for window manager functions. The default
+# translation for xterm since X11R4 has overridden shifted Insert, Select,
+# PageUp and PageDown, which correspond to terminfo kIC, kEND, kPRV and kNXT
+# respectively.
+#
+xterm-new|modern xterm terminal emulator,
+ npc,
+ indn=\E[%p1%dS,
+ kb2=\EOE,
+ kcbt=\E[Z,
+ kent=\EOM,
+ rin=\E[%p1%dT,
+# use=ansi+rep,
+ use=ecma+strikeout,
+ use=xterm+pcfkeys,
+ use=xterm+tmux,
+ use=xterm-basic,
+
+# These "ansi+XXX" blocks were added in ncurses 5.0:
+ansi+rep,
+ rep=%p1%c\E[%p2%{1}%-%db,
+
+ansi+enq|ncurses extension for ANSI ENQ,
+ u6=\E[%i%d;%dR,
+ u7=\E[6n,
+ u8=\E[?%[;0123456789]c,
+ u9=\E[c,
+
+# Encode modifiers using parameters (see "Xterm Control Sequences" ctlseqs.ms).
+# Note that this is unrelated to PCTERM.
+#
+# Some names are extensions allowed by ncurses, e.g.,
+# kDN, kDN5, kDN6, kLFT5, kLFT6, kRIT5, kRIT6, kUP, kUP5, kUP6
+#
+# The uppercase names are made up, since there are no standards that apply.
+# If they were limited to two characters, they could in principle be translated
+# to termcap. However, termcap sizes are limited to 1023 bytes, so there is
+# little point in ensuring that extended key names can be translated to
+# termcap. A terminfo file can be up to 4096 bytes; using all extended keys
+# that xterm can generate would in fact exceed that limit.
+#
+# The numbers correspond to the modifier parameters documented in Xterm
+# Control Sequences:
+#
+# 2 Shift
+# 3 Alt
+# 4 Shift + Alt
+# 5 Control
+# 6 Shift + Control
+# 7 Alt + Control
+# 8 Shift + Alt + Control
+#
+# X/Open Curses defines some shift combinations, which are also used here
+# where applicable. Since it does define some shift combinations, no number
+# (2) is used for suffixing the made-up names. Some combinations are not
+# useful, e.g., they may reboot your computer, or they may require too many
+# fingers. I stopped at modifier 7, just to keep things simple -TD
+#
+# XTerm resources:
+# ---------------
+# The xterm+pcfn, xterm+pcf0, xterm+pcf1, xterm+pcf2 and xterm+pcf3 fragments
+# correspond to default resource settings for xterm on a 104-key PC keyboard
+# with 12 function-keys:
+#
+# *sunKeyboard:false
+# *oldXtermFKeys:false
+# *modifyCursorKeys:2
+# *modifyFunctionKeys:2
+# *ctrlFKeys:10
+#
+# The key numbers are computed based on the modifiers:
+#
+# kf1-kf12 are F1-F12
+# kf13-kf24 are shift F1-F12
+# kf25-kf36 are control F1-F12
+# kf37-kf48 are control+shift F1-F12
+# kf49-kf60 are alt F1-F12
+# kf61-kf63 are shift-alt F1-F3
+#
+# Note that ncurses would allow definition of kf64 and beyond, if there were
+# an application that required it.
+#
+xterm+pcfkeys|fragment for PC-style keys,
+ use=xterm+app,
+ use=xterm+pcf2,
+ use=xterm+pce2,
+ use=xterm+pcc2,
+
+# This chunk is based on suggestions by Ailin Nemui and Nicholas Marriott, who
+# asked for some of xterm's advanced features to be added to its terminfo
+# entry. It defines extended capabilities not found in standard terminfo or
+# termcap. These are useful in tmux, for instance, hence the name.
+#
+# One caveat in adding extended capabilities in ncurses is that if the names
+# are longer than two characters, then they will not be visible through the
+# termcap interface.
+#
+# Ms modifies the selection/clipboard. Its parameters are
+# p1 = the storage unit (clipboard, selection or cut buffer)
+# p2 = the base64-encoded clipboard content.
+#
+# Ss is used to set the cursor style as described by the DECSCUSR
+# function to a block or underline.
+# Se resets the cursor style to the terminal power-on default.
+#
+# Cs and Ce set and reset the cursor colour.
+xterm+tmux|advanced xterm features used in tmux,
+ Cr=\E]112\007,
+ Cs=\E]12;%p1%s\007,
+ Ms=\E]52;%p1%s;%p2%s
+ \007,
+ Se=\E[2\sq,
+ Ss=\E[%p1%d\sq,
+#
+# The ctrlFKeys resource is only relevant to the xterm+pcfn and xterm+pcfN
+# entries, since the modifyFunctionKeys resource overrides ctrlFKeys when it is
+# positive. A different choice of ctrlFKeys would give a different set of
+# function-key strings.
+xterm+pcfn|fragment with modifyFunctionKeys:-1 and ctrlFKeys:10,
+ kf1=\EOP,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf13=\E[25~,
+ kf14=\E[26~,
+ kf15=\E[28~,
+ kf16=\E[29~,
+ kf17=\E[31~,
+ kf18=\E[32~,
+ kf19=\E[33~,
+ kf2=\EOQ,
+ kf20=\E[34~,
+ kf21=\E[42~,
+ kf22=\E[43~,
+ kf23=\E[44~,
+ kf24=\E[45~,
+ kf25=\E[46~,
+ kf26=\E[47~,
+ kf27=\E[48~,
+ kf28=\E[49~,
+ kf29=\E[50~,
+ kf3=\EOR,
+ kf30=\E[51~,
+ kf31=\E[52~,
+ kf32=\E[53~,
+ kf33=\E[54~,
+ kf34=\E[55~,
+ kf35=\E[56~,
+ kf36=\E[57~,
+ kf37=\E[58~,
+ kf38=\E[59~,
+ kf39=\E[60~,
+ kf4=\EOS,
+ kf40=\E[61~,
+ kf41=\E[62~,
+ kf42=\E[63~,
+ kf43=\E[64~,
+ kf44=\E[65~,
+ kf45=\E[66~,
+ kf46=\E[67~,
+ kf47=\E[68~,
+ kf48=\E[69~,
+ kf5=\E[15~,
+ kf6=\E[17~,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+
+# Changing ctrlFKeys to 12 would let us number the keys using just shift- and
+# control- modifiers:
+# kf1-kf12 are F1-F12
+# kf13-kf24 are shift F1-F12
+# kf25-kf36 are control F1-F12
+# kf37-kf48 are control+shift F1-F12
+xterm+pcfN|fragment with modifyFunctionKeys:-1 and ctrlFKeys:12,
+ kf1=\EOP,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf13=\E[25~,
+ kf14=\E[26~,
+ kf15=\E[28~,
+ kf16=\E[29~,
+ kf17=\E[31~,
+ kf18=\E[32~,
+ kf19=\E[33~,
+ kf2=\EOQ,
+ kf20=\E[34~,
+ kf21=\E[42~,
+ kf22=\E[43~,
+ kf23=\E[44~,
+ kf24=\E[45~,
+ kf25=\E[46~,
+ kf26=\E[47~,
+ kf27=\E[48~,
+ kf28=\E[49~,
+ kf29=\E[50~,
+ kf3=\EOR,
+ kf30=\E[51~,
+ kf31=\E[52~,
+ kf32=\E[53~,
+ kf33=\E[54~,
+ kf34=\E[55~,
+ kf35=\E[56~,
+ kf36=\E[57~,
+ kf37=\E[58~,
+ kf38=\E[59~,
+ kf39=\E[60~,
+ kf4=\EOS,
+ kf40=\E[61~,
+ kf41=\E[62~,
+ kf42=\E[63~,
+ kf43=\E[64~,
+ kf44=\E[65~,
+ kf45=\E[66~,
+ kf46=\E[67~,
+ kf47=\E[68~,
+ kf48=\E[69~,
+ kf5=\E[15~,
+ kf6=\E[17~,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+
+xterm+pcf0|fragment with modifyFunctionKeys:0,
+ kf1=\EOP,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf13=\EO2P,
+ kf14=\EO2Q,
+ kf15=\EO2R,
+ kf16=\EO2S,
+ kf17=\E[15;2~,
+ kf18=\E[17;2~,
+ kf19=\E[18;2~,
+ kf2=\EOQ,
+ kf20=\E[19;2~,
+ kf21=\E[20;2~,
+ kf22=\E[21;2~,
+ kf23=\E[23;2~,
+ kf24=\E[24;2~,
+ kf25=\EO5P,
+ kf26=\EO5Q,
+ kf27=\EO5R,
+ kf28=\EO5S,
+ kf29=\E[15;5~,
+ kf3=\EOR,
+ kf30=\E[17;5~,
+ kf31=\E[18;5~,
+ kf32=\E[19;5~,
+ kf33=\E[20;5~,
+ kf34=\E[21;5~,
+ kf35=\E[23;5~,
+ kf36=\E[24;5~,
+ kf37=\EO6P,
+ kf38=\EO6Q,
+ kf39=\EO6R,
+ kf4=\EOS,
+ kf40=\EO6S,
+ kf41=\E[15;6~,
+ kf42=\E[17;6~,
+ kf43=\E[18;6~,
+ kf44=\E[19;6~,
+ kf45=\E[20;6~,
+ kf46=\E[21;6~,
+ kf47=\E[23;6~,
+ kf48=\E[24;6~,
+ kf49=\EO3P,
+ kf5=\E[15~,
+ kf50=\EO3Q,
+ kf51=\EO3R,
+ kf52=\EO3S,
+ kf53=\E[15;3~,
+ kf54=\E[17;3~,
+ kf55=\E[18;3~,
+ kf56=\E[19;3~,
+ kf57=\E[20;3~,
+ kf58=\E[21;3~,
+ kf59=\E[23;3~,
+ kf6=\E[17~,
+ kf60=\E[24;3~,
+ kf61=\EO4P,
+ kf62=\EO4Q,
+ kf63=\EO4R,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+
+# This is almost the same as xterm+pcf2 because the unmodified keys all happen
+# to have a pattern that forces the modifier to the same position.
+xterm+pcf1|fragment with modifyFunctionKeys:1,
+ kf1=\EOP,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf13=\E[2P,
+ kf14=\E[2Q,
+ kf15=\E[2R,
+ kf16=\E[2S,
+ kf17=\E[15;2~,
+ kf18=\E[17;2~,
+ kf19=\E[18;2~,
+ kf2=\EOQ,
+ kf20=\E[19;2~,
+ kf21=\E[20;2~,
+ kf22=\E[21;2~,
+ kf23=\E[23;2~,
+ kf24=\E[24;2~,
+ kf25=\E[5P,
+ kf26=\E[5Q,
+ kf27=\E[5R,
+ kf28=\E[5S,
+ kf29=\E[15;5~,
+ kf3=\EOR,
+ kf30=\E[17;5~,
+ kf31=\E[18;5~,
+ kf32=\E[19;5~,
+ kf33=\E[20;5~,
+ kf34=\E[21;5~,
+ kf35=\E[23;5~,
+ kf36=\E[24;5~,
+ kf37=\E[6P,
+ kf38=\E[6Q,
+ kf39=\E[6R,
+ kf4=\EOS,
+ kf40=\E[6S,
+ kf41=\E[15;6~,
+ kf42=\E[17;6~,
+ kf43=\E[18;6~,
+ kf44=\E[19;6~,
+ kf45=\E[20;6~,
+ kf46=\E[21;6~,
+ kf47=\E[23;6~,
+ kf48=\E[24;6~,
+ kf49=\E[3P,
+ kf5=\E[15~,
+ kf50=\E[3Q,
+ kf51=\E[3R,
+ kf52=\E[3S,
+ kf53=\E[15;3~,
+ kf54=\E[17;3~,
+ kf55=\E[18;3~,
+ kf56=\E[19;3~,
+ kf57=\E[20;3~,
+ kf58=\E[21;3~,
+ kf59=\E[23;3~,
+ kf6=\E[17~,
+ kf60=\E[24;3~,
+ kf61=\E[4P,
+ kf62=\E[4Q,
+ kf63=\E[4R,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+
+xterm+pcf2|fragment with modifyFunctionKeys:2,
+ kf1=\EOP,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf13=\E[1;2P,
+ kf14=\E[1;2Q,
+ kf15=\E[1;2R,
+ kf16=\E[1;2S,
+ kf17=\E[15;2~,
+ kf18=\E[17;2~,
+ kf19=\E[18;2~,
+ kf2=\EOQ,
+ kf20=\E[19;2~,
+ kf21=\E[20;2~,
+ kf22=\E[21;2~,
+ kf23=\E[23;2~,
+ kf24=\E[24;2~,
+ kf25=\E[1;5P,
+ kf26=\E[1;5Q,
+ kf27=\E[1;5R,
+ kf28=\E[1;5S,
+ kf29=\E[15;5~,
+ kf3=\EOR,
+ kf30=\E[17;5~,
+ kf31=\E[18;5~,
+ kf32=\E[19;5~,
+ kf33=\E[20;5~,
+ kf34=\E[21;5~,
+ kf35=\E[23;5~,
+ kf36=\E[24;5~,
+ kf37=\E[1;6P,
+ kf38=\E[1;6Q,
+ kf39=\E[1;6R,
+ kf4=\EOS,
+ kf40=\E[1;6S,
+ kf41=\E[15;6~,
+ kf42=\E[17;6~,
+ kf43=\E[18;6~,
+ kf44=\E[19;6~,
+ kf45=\E[20;6~,
+ kf46=\E[21;6~,
+ kf47=\E[23;6~,
+ kf48=\E[24;6~,
+ kf49=\E[1;3P,
+ kf5=\E[15~,
+ kf50=\E[1;3Q,
+ kf51=\E[1;3R,
+ kf52=\E[1;3S,
+ kf53=\E[15;3~,
+ kf54=\E[17;3~,
+ kf55=\E[18;3~,
+ kf56=\E[19;3~,
+ kf57=\E[20;3~,
+ kf58=\E[21;3~,
+ kf59=\E[23;3~,
+ kf6=\E[17~,
+ kf60=\E[24;3~,
+ kf61=\E[1;4P,
+ kf62=\E[1;4Q,
+ kf63=\E[1;4R,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+
+xterm+pcf3|fragment with modifyFunctionKeys:3,
+ kf1=\EOP,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf13=\E[>1;2P,
+ kf14=\E[>1;2Q,
+ kf15=\E[>1;2R,
+ kf16=\E[>1;2S,
+ kf17=\E[>15;2~,
+ kf18=\E[>17;2~,
+ kf19=\E[>18;2~,
+ kf2=\EOQ,
+ kf20=\E[>19;2~,
+ kf21=\E[>20;2~,
+ kf22=\E[>21;2~,
+ kf23=\E[>23;2~,
+ kf24=\E[>24;2~,
+ kf25=\E[>1;5P,
+ kf26=\E[>1;5Q,
+ kf27=\E[>1;5R,
+ kf28=\E[>1;5S,
+ kf29=\E[>15;5~,
+ kf3=\EOR,
+ kf30=\E[>17;5~,
+ kf31=\E[>18;5~,
+ kf32=\E[>19;5~,
+ kf33=\E[>20;5~,
+ kf34=\E[>21;5~,
+ kf35=\E[>23;5~,
+ kf36=\E[>24;5~,
+ kf37=\E[>1;6P,
+ kf38=\E[>1;6Q,
+ kf39=\E[>1;6R,
+ kf4=\EOS,
+ kf40=\E[>1;6S,
+ kf41=\E[>15;6~,
+ kf42=\E[>17;6~,
+ kf43=\E[>18;6~,
+ kf44=\E[>19;6~,
+ kf45=\E[>20;6~,
+ kf46=\E[>21;6~,
+ kf47=\E[>23;6~,
+ kf48=\E[>24;6~,
+ kf49=\E[>1;3P,
+ kf5=\E[15~,
+ kf50=\E[>1;3Q,
+ kf51=\E[>1;3R,
+ kf52=\E[>1;3S,
+ kf53=\E[>15;3~,
+ kf54=\E[>17;3~,
+ kf55=\E[>18;3~,
+ kf56=\E[>19;3~,
+ kf57=\E[>20;3~,
+ kf58=\E[>21;3~,
+ kf59=\E[>23;3~,
+ kf6=\E[17~,
+ kf60=\E[>24;3~,
+ kf61=\E[>1;4P,
+ kf62=\E[>1;4Q,
+ kf63=\E[>1;4R,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+#
+# The "PC-style" modifier scheme was introduced in xterm patch #94 (1999/3/27)
+# and revised in patch #167 (2002/8/24).
+#
+# The original assignments from patch #94 for cursor-keys had some technical
+# issues:
+#
+# A parameter for a function-key to represent a modifier is just more
+# bits. But for a cursor-key it may change the behavior of the
+# application. For instance, emacs decodes the first parameter of a
+# cursor-key as a repeat count.
+#
+# A parameterized string should (really) not begin with SS3 (\EO).
+# Rather, CSI (\E[) should be used.
+#
+# For these reasons, the original assignments were deprecated. For
+# compatibility reasons, they are still available as a setting of xterm's
+# modifyCursorKeys resource. These fragments list the modified cursor-keys
+# that might apply to xterm+pcfkeys with different values of that resource.
+xterm+pcc3|fragment with modifyCursorKeys:3,
+ kLFT=\E[>1;2D,
+ kRIT=\E[>1;2C,
+ kind=\E[>1;2B,
+ kri=\E[>1;2A,
+ kDN=\E[>1;2B,
+ kDN3=\E[>1;3B,
+ kDN4=\E[>1;4B,
+ kDN5=\E[>1;5B,
+ kDN6=\E[>1;6B,
+ kDN7=\E[>1;7B,
+ kLFT3=\E[>1;3D,
+ kLFT4=\E[>1;4D,
+ kLFT5=\E[>1;5D,
+ kLFT6=\E[>1;6D,
+ kLFT7=\E[>1;7D,
+ kRIT3=\E[>1;3C,
+ kRIT4=\E[>1;4C,
+ kRIT5=\E[>1;5C,
+ kRIT6=\E[>1;6C,
+ kRIT7=\E[>1;7C,
+ kUP=\E[>1;2A,
+ kUP3=\E[>1;3A,
+ kUP4=\E[>1;4A,
+ kUP5=\E[>1;5A,
+ kUP6=\E[>1;6A,
+ kUP7=\E[>1;7A,
+
+xterm+pcc2|fragment with modifyCursorKeys:2,
+ kLFT=\E[1;2D,
+ kRIT=\E[1;2C,
+ kind=\E[1;2B,
+ kri=\E[1;2A,
+ kDN=\E[1;2B,
+ kDN3=\E[1;3B,
+ kDN4=\E[1;4B,
+ kDN5=\E[1;5B,
+ kDN6=\E[1;6B,
+ kDN7=\E[1;7B,
+ kLFT3=\E[1;3D,
+ kLFT4=\E[1;4D,
+ kLFT5=\E[1;5D,
+ kLFT6=\E[1;6D,
+ kLFT7=\E[1;7D,
+ kRIT3=\E[1;3C,
+ kRIT4=\E[1;4C,
+ kRIT5=\E[1;5C,
+ kRIT6=\E[1;6C,
+ kRIT7=\E[1;7C,
+ kUP=\E[1;2A,
+ kUP3=\E[1;3A,
+ kUP4=\E[1;4A,
+ kUP5=\E[1;5A,
+ kUP6=\E[1;6A,
+ kUP7=\E[1;7A,
+
+xterm+pcc1|fragment with modifyCursorKeys:1,
+ kLFT=\E[2D,
+ kRIT=\E[2C,
+ kind=\E[2B,
+ kri=\E[2A,
+ kDN=\E[2B,
+ kDN3=\E[3B,
+ kDN4=\E[4B,
+ kDN5=\E[5B,
+ kDN6=\E[6B,
+ kDN7=\E[7B,
+ kLFT3=\E[3D,
+ kLFT4=\E[4D,
+ kLFT5=\E[5D,
+ kLFT6=\E[6D,
+ kLFT7=\E[7D,
+ kRIT3=\E[3C,
+ kRIT4=\E[4C,
+ kRIT5=\E[5C,
+ kRIT6=\E[6C,
+ kRIT7=\E[7C,
+ kUP=\E[2A,
+ kUP3=\E[3A,
+ kUP4=\E[4A,
+ kUP5=\E[5A,
+ kUP6=\E[6A,
+ kUP7=\E[7A,
+
+xterm+pcc0|fragment with modifyCursorKeys:0,
+ kLFT=\EO2D,
+ kRIT=\EO2C,
+ kind=\EO2B,
+ kri=\EO2A,
+ kDN=\EO2B,
+ kDN3=\EO3B,
+ kDN4=\EO4B,
+ kDN5=\EO5B,
+ kDN6=\EO6B,
+ kDN7=\EO7B,
+ kLFT3=\EO3D,
+ kLFT4=\EO4D,
+ kLFT5=\EO5D,
+ kLFT6=\EO6D,
+ kLFT7=\EO7D,
+ kRIT3=\EO3C,
+ kRIT4=\EO4C,
+ kRIT5=\EO5C,
+ kRIT6=\EO6C,
+ kRIT7=\EO7C,
+ kUP=\EO2A,
+ kUP3=\EO3A,
+ kUP4=\EO4A,
+ kUP5=\EO5A,
+ kUP6=\EO6A,
+ kUP7=\EO7A,
+
+# The home/end keys on the editing keypad are also treated as cursor keys.
+xterm+pce3|fragment with modifyCursorKeys:3,
+ kDC=\E[>3;2~,
+ kEND=\E[>1;2F,
+ kHOM=\E[>1;2H,
+ kIC=\E[>2;2~,
+ kNXT=\E[>6;2~,
+ kPRV=\E[>5;2~,
+ kDC3=\E[>3;3~,
+ kDC4=\E[>3;4~,
+ kDC5=\E[>3;5~,
+ kDC6=\E[>3;6~,
+ kDC7=\E[>3;7~,
+ kEND3=\E[>1;3F,
+ kEND4=\E[>1;4F,
+ kEND5=\E[>1;5F,
+ kEND6=\E[>1;6F,
+ kEND7=\E[>1;7F,
+ kHOM3=\E[>1;3H,
+ kHOM4=\E[>1;4H,
+ kHOM5=\E[>1;5H,
+ kHOM6=\E[>1;6H,
+ kHOM7=\E[>1;7H,
+ kIC3=\E[>2;3~,
+ kIC4=\E[>2;4~,
+ kIC5=\E[>2;5~,
+ kIC6=\E[>2;6~,
+ kIC7=\E[>2;7~,
+ kNXT3=\E[>6;3~,
+ kNXT4=\E[>6;4~,
+ kNXT5=\E[>6;5~,
+ kNXT6=\E[>6;6~,
+ kNXT7=\E[>6;7~,
+ kPRV3=\E[>5;3~,
+ kPRV4=\E[>5;4~,
+ kPRV5=\E[>5;5~,
+ kPRV6=\E[>5;6~,
+ kPRV7=\E[>5;7~,
+ use=xterm+pce0,
+
+xterm+pce2|fragment with modifyCursorKeys:2,
+ kDC=\E[3;2~,
+ kEND=\E[1;2F,
+ kHOM=\E[1;2H,
+ kIC=\E[2;2~,
+ kNXT=\E[6;2~,
+ kPRV=\E[5;2~,
+ kDC3=\E[3;3~,
+ kDC4=\E[3;4~,
+ kDC5=\E[3;5~,
+ kDC6=\E[3;6~,
+ kDC7=\E[3;7~,
+ kEND3=\E[1;3F,
+ kEND4=\E[1;4F,
+ kEND5=\E[1;5F,
+ kEND6=\E[1;6F,
+ kEND7=\E[1;7F,
+ kHOM3=\E[1;3H,
+ kHOM4=\E[1;4H,
+ kHOM5=\E[1;5H,
+ kHOM6=\E[1;6H,
+ kHOM7=\E[1;7H,
+ kIC3=\E[2;3~,
+ kIC4=\E[2;4~,
+ kIC5=\E[2;5~,
+ kIC6=\E[2;6~,
+ kIC7=\E[2;7~,
+ kNXT3=\E[6;3~,
+ kNXT4=\E[6;4~,
+ kNXT5=\E[6;5~,
+ kNXT6=\E[6;6~,
+ kNXT7=\E[6;7~,
+ kPRV3=\E[5;3~,
+ kPRV4=\E[5;4~,
+ kPRV5=\E[5;5~,
+ kPRV6=\E[5;6~,
+ kPRV7=\E[5;7~,
+ use=xterm+pce0,
+
+xterm+pce1|fragment with modifyCursorKeys:1,
+ kDC=\E[3;2~,
+ kEND=\E[2F,
+ kHOM=\E[2H,
+ kIC=\E[2;2~,
+ kNXT=\E[6;2~,
+ kPRV=\E[5;2~,
+ kDC3=\E[3;3~,
+ kDC4=\E[3;4~,
+ kDC5=\E[3;5~,
+ kDC6=\E[3;6~,
+ kDC7=\E[3;7~,
+ kEND3=\E[3F,
+ kEND4=\E[4F,
+ kEND5=\E[5F,
+ kEND6=\E[6F,
+ kEND7=\E[7F,
+ kHOM3=\E[3H,
+ kHOM4=\E[4H,
+ kHOM5=\E[5H,
+ kHOM6=\E[6H,
+ kHOM7=\E[7H,
+ kIC3=\E[2;3~,
+ kIC4=\E[2;4~,
+ kIC5=\E[2;5~,
+ kIC6=\E[2;6~,
+ kIC7=\E[2;7~,
+ kNXT3=\E[6;3~,
+ kNXT4=\E[6;4~,
+ kNXT5=\E[6;5~,
+ kNXT6=\E[6;6~,
+ kNXT7=\E[6;7~,
+ kPRV3=\E[5;3~,
+ kPRV4=\E[5;4~,
+ kPRV5=\E[5;5~,
+ kPRV6=\E[5;6~,
+ kPRV7=\E[5;7~,
+ use=xterm+pce0,
+
+xterm+pce0|fragment with modifyCursorKeys:0,
+ kDC=\E[3;2~,
+ kEND=\EO2F,
+ kHOM=\EO2H,
+ kIC=\E[2;2~,
+ kNXT=\E[6;2~,
+ kPRV=\E[5;2~,
+ kDC3=\E[3;3~,
+ kDC4=\E[3;4~,
+ kDC5=\E[3;5~,
+ kDC6=\E[3;6~,
+ kDC7=\E[3;7~,
+ kEND3=\EO3F,
+ kEND4=\EO4F,
+ kEND5=\EO5F,
+ kEND6=\EO6F,
+ kEND7=\EO7F,
+ kHOM3=\EO3H,
+ kHOM4=\EO4H,
+ kHOM5=\EO5H,
+ kHOM6=\EO6H,
+ kHOM7=\EO7H,
+ kIC3=\E[2;3~,
+ kIC4=\E[2;4~,
+ kIC5=\E[2;5~,
+ kIC6=\E[2;6~,
+ kIC7=\E[2;7~,
+ kNXT3=\E[6;3~,
+ kNXT4=\E[6;4~,
+ kNXT5=\E[6;5~,
+ kNXT6=\E[6;6~,
+ kNXT7=\E[6;7~,
+ kPRV3=\E[5;3~,
+ kPRV4=\E[5;4~,
+ kPRV5=\E[5;5~,
+ kPRV6=\E[5;6~,
+ kPRV7=\E[5;7~,
+ use=xterm+edit,
+
+# This is an ncurses extension
+ecma+strikeout|ECMA-48 strikeout/crossed-out,
+ rmxx=\E[29m,
+ smxx=\E[9m,
+#
+# This chunk is used for building the VT220/Sun/PC keyboard variants.
+xterm-basic|modern xterm terminal emulator - common,
+ OTbs,
+ am,
+ bce,
+ km,
+ mc5i,
+ mir,
+ msgr,
+ xenl,
+ AX,
+ XT,
+ colors#8,
+ cols#80,
+ it#8,
+ lines#24,
+ pairs#64,
+ acsc=``aaffggiijjkkllmmnnooppqqr
+ rssttuuvvwwxxyyzz{{||}}~~,
+ bel=^G,
+ blink=\E[5m,
+ bold=\E[1m,
+ cbt=\E[Z,
+ civis=\E[?25l,
+ clear=\E[H\E[2J,
+ cnorm=\E[?12l\E[?25h,
+ cr=\r,
+ csr=\E[%i%p1%d;%p2%dr,
+ cub=\E[%p1%dD,
+ cub1=^H,
+ cud=\E[%p1%dB,
+ cud1=\n,
+ cuf=\E[%p1%dC,
+ cuf1=\E[C,
+ cup=\E[%i%p1%d;%p2%dH,
+ cuu=\E[%p1%dA,
+ cuu1=\E[A,
+ cvvis=\E[?12;25h,
+ dch=\E[%p1%dP,
+ dch1=\E[P,
+ dim=\E[2m,
+ dl=\E[%p1%dM,
+ dl1=\E[M,
+ ech=\E[%p1%dX,
+ ed=\E[J,
+ el=\E[K,
+ el1=\E[1K,
+ flash=\E[?5h$<100/>\E[?5l,
+ home=\E[H,
+ hpa=\E[%i%p1%dG,
+ ht=^I,
+ hts=\EH,
+ ich=\E[%p1%d@,
+ il=\E[%p1%dL,
+ il1=\E[L,
+ ind=\n,
+ invis=\E[8m,
+ is2=\E[!p\E[?3;4l\E[4l\E>,
+ kmous=\E[M,
+ mc0=\E[i,
+ mc4=\E[4i,
+ mc5=\E[5i,
+ meml=\El,
+ memu=\Em,
+ op=\E[39;49m,
+ rc=\E8,
+ rev=\E[7m,
+ ri=\EM,
+ ritm=\E[23m,
+ rmacs=\E(B,
+ rmam=\E[?7l,
+ rmir=\E[4l,
+ rmkx=\E[?1l\E>,
+ rmm=\E[?1034l,
+ rmso=\E[27m,
+ rmul=\E[24m,
+ rs1=\Ec,
+ rs2=\E[!p\E[?3;4l\E[4l\E>,
+ sc=\E7,
+ setab=\E[4%p1%dm,
+ setaf=\E[3%p1%dm,
+ setb=\E[4
+ %?
+ %p1%{1}%=
+ %t4
+ %e
+ %p1%{3}%=
+ %t6
+ %e
+ %p1%{4}%=
+ %t1
+ %e
+ %p1%{6}%=
+ %t3
+ %e
+ %p1%d
+ %;
+ m,
+ setf=\E[3
+ %?
+ %p1%{1}%=
+ %t4
+ %e
+ %p1%{3}%=
+ %t6
+ %e
+ %p1%{4}%=
+ %t1
+ %e
+ %p1%{6}%=
+ %t3
+ %e
+ %p1%d
+ %;
+ m,
+ sgr=
+ %?
+ %p9
+ %t\E(0
+ %e
+ \E(B
+ %;
+ \E[0
+ %?
+ %p6
+ %t;1
+ %;
+ %?
+ %p5
+ %t;2
+ %;
+ %?
+ %p2
+ %t;4
+ %;
+ %?
+ %p1%p3%|
+ %t;7
+ %;
+ %?
+ %p4
+ %t;5
+ %;
+ %?
+ %p7
+ %t;8
+ %;
+ m,
+ sgr0=\E(B\E[m,
+ sitm=\E[3m,
+ smacs=\E(0,
+ smam=\E[?7h,
+ smir=\E[4h,
+ smkx=\E[?1h\E=,
+ smm=\E[?1034h,
+ smso=\E[7m,
+ smul=\E[4m,
+ tbc=\E[3g,
+ vpa=\E[%i%p1%dd,
+ E3=\E[3J,
+ use=ansi+enq,
+ use=xterm+alt+title,
+ use=xterm+kbs,
+#
+# The xterm-new description has all of the features, but is not completely
+# compatible with vt220. If you are using a Sun or PC keyboard, set the
+# sunKeyboard resource to true:
+# + maps the editing keypad
+# + interprets control-function-key as a second array of keys, so a
+# 12-fkey keyboard can support vt220's 20-fkeys.
+# + maps numeric keypad "+" to ",".
+# + uses DEC-style control sequences for the application keypad.
+#
+# Some packagers modify xterm's resource definitions to provide extra function
+# keys by using the shift-modifier in the translations resource. However, that
+# interferes with the DECUDK functionality.
+#
+xterm-vt220|xterm emulating vt220,
+ ka1=\EOw,
+ ka3=\EOy,
+ kb2=\EOu,
+ kc1=\EOq,
+ kc3=\EOs,
+ kcbt=\E[Z,
+ kend=\E[4~,
+ kent=\EOM,
+ kf1=\EOP,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf13=\E[25~,
+ kf14=\E[26~,
+ kf15=\E[28~,
+ kf16=\E[29~,
+ kf17=\E[31~,
+ kf18=\E[32~,
+ kf19=\E[33~,
+ kf2=\EOQ,
+ kf20=\E[34~,
+ kf3=\EOR,
+ kf4=\EOS,
+ kf5=\E[15~,
+ kf6=\E[17~,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+ khome=\E[1~,
+ kich1=\E[2~,
+ knp=\E[6~,
+ kpp=\E[5~,
+ ka2=\EOx,
+ kb1=\EOt,
+ kb3=\EOv,
+ kc2=\EOr,
+ use=xterm+app,
+ use=xterm+edit,
+ use=xterm-basic,
+ rmm@,
+ smm@,
+#
+xterm-vt52|xterm emulating dec vt52,
+ cols#80,
+ it#8,
+ lines#24,
+ acsc=``aaffggjjkkllmmnnooppqqrrs
+ sttuuvvwwxxyyzz{{||}}~~,
+ bel=^G,
+ clear=\EH\EJ,
+ cr=\r,
+ cub1=\ED,
+ cud1=\EB,
+ cuf1=\EC,
+ cup=\EY%p1%'\s'%+%c%p2%'\s'%+%c,
+ cuu1=\EA,
+ ed=\EJ,
+ el=\EK,
+ home=\EH,
+ ht=^I,
+ ind=\n,
+ kcub1=\ED,
+ kcud1=\EB,
+ kcuf1=\EC,
+ kcuu1=\EA,
+ nel=\r\n,
+ ri=\EI,
+ rmacs=\EG,
+ smacs=\EF,
+ use=xterm+kbs,
+#
+# Sun does not number the function keys this way in their sparse termcap; their
+# terminal descriptions ignore the keypads. kb(7M) states that there are codes
+# reserved for 64 function keys, 16 each in left, right, top and bottom. Each
+# keyboard type has a different number of function keys in different
+# arrangements. Using xkeycaps for reference:
+#
+# Type 3: left 10, top 9, right 15
+# ------
+# kf1-kf9 are XK_F1-XK_F9
+# There is no kf10 on this keyboard type.
+# kf11-kf20 are keysyms XK_L1 through XK_L10.
+# kf31-kf45 are keysyms XK_R1 through XK_R15.
+#
+# However, X's keysymdef.h is hard-coded to make
+# XK_L1==XK_F11 and
+# XK_R1==XK_F21,
+# by someone who was unfamiliar with terminal types other than Sun's. So
+# xterm uses the internal X keysymbols, but the terminfo entry uses the Sun
+# numbering scheme.
+#
+# Type 4: left 11, top 12, right 15
+# ------
+# The left-keypad contains an unnumbered Help-key.
+# The right-keypad also contains NumLock, Ins, Del, Enter, + and - keys which
+# do not appear to be part of the R-sequence.
+#
+# Type 5: left 9, top 12, right (more than one keypad)
+# ------
+# These keyboards do not use the same naming convention, look like a hybrid of
+# the type 4 and IBM keyboards.
+#
+# XTerm resources:
+# ---------------
+# Set the modifyFunctionKeys resource to negative (-1) to make it simple to
+# enter the higher function-key values using shift- and control-modifiers.
+#
+xterm-sun|xterm with sun function keys,
+ kb2=\E[218z,
+ kcpy=\E[197z,
+ kcub1=\EOD,
+ kcud1=\EOB,
+ kcuf1=\EOC,
+ kcuu1=\EOA,
+ kdch1=\E[3z,
+ kend=\E[220z,
+ kent=\EOM,
+ kf1=\E[224z,
+ kf10=\E[233z,
+ kf11=\E[192z,
+ kf12=\E[193z,
+ kf13=\E[194z,
+ kf14=\E[195z,
+ kf15=\E[196z,
+ kf17=\E[198z,
+ kf18=\E[199z,
+ kf19=\E[200z,
+ kf2=\E[225z,
+ kf20=\E[201z,
+ kf3=\E[226z,
+ kf31=\E[208z,
+ kf32=\E[209z,
+ kf33=\E[210z,
+ kf34=\E[211z,
+ kf35=\E[212z,
+ kf36=\E[213z,
+ kf38=\E[215z,
+ kf4=\E[227z,
+ kf40=\E[217z,
+ kf42=\E[219z,
+ kf44=\E[221z,
+ kf45=\E[222z,
+ kf46=\E[234z,
+ kf47=\E[235z,
+ kf5=\E[228z,
+ kf6=\E[229z,
+ kf7=\E[230z,
+ kf8=\E[231z,
+ kf9=\E[232z,
+ kfnd=\E[200z,
+ khlp=\E[196z,
+ khome=\E[214z,
+ kich1=\E[2z,
+ knp=\E[222z,
+ kpp=\E[216z,
+ kund=\E[195z,
+ use=xterm-basic,
+#
+xterm-hp|xterm with hpterm function keys,
+ kclr=\EJ,
+ kcub1=\ED,
+ kcud1=\EB,
+ kcuf1=\EC,
+ kcuu1=\EA,
+ kdch1=\EP,
+ kend=\EF,
+ kf1=\Ep,
+ kf2=\Eq,
+ kf3=\Er,
+ kf4=\Es,
+ kf5=\Et,
+ kf6=\Eu,
+ kf7=\Ev,
+ kf8=\Ew,
+ khome=\Eh,
+ kich1=\EQ,
+ knp=\ES,
+ kpp=\ET,
+ use=xterm-basic,
+#
+# scoterm implements 48 function-keys using shift- and control-modifiers to
+# multiple 12 function-keys. X has a hard-coded limit of 35 function-keys,
+# but xterm can represent larger values.
+#
+# XTerm resources:
+# ---------------
+# Set the modifyFunctionKeys resource to negative (-1) to make it simple to
+# enter the higher function-key values using shift- and control-modifiers.
+#
+# Also, set ctrlFKeys resource to 12 (the default is 10) to make xterm see 48
+# function-keys on a keyboard with 12 function-keys and 4 control/shift
+# modifier combinations.
+#
+xterm-sco|xterm with SCO function keys,
+ kbeg=\E[E,
+ kdch1=^?,
+ kf1=\E[M,
+ kf10=\E[V,
+ kf11=\E[W,
+ kf12=\E[X,
+ kf13=\E[Y,
+ kf14=\E[Z,
+ kf15=\E[a,
+ kf16=\E[b,
+ kf17=\E[c,
+ kf18=\E[d,
+ kf19=\E[e,
+ kf2=\E[N,
+ kf20=\E[f,
+ kf21=\E[g,
+ kf22=\E[h,
+ kf23=\E[i,
+ kf24=\E[j,
+ kf25=\E[k,
+ kf26=\E[l,
+ kf27=\E[m,
+ kf28=\E[n,
+ kf29=\E[o,
+ kf3=\E[O,
+ kf30=\E[p,
+ kf31=\E[q,
+ kf32=\E[r,
+ kf33=\E[s,
+ kf34=\E[t,
+ kf35=\E[u,
+ kf36=\E[v,
+ kf37=\E[w,
+ kf38=\E[x,
+ kf39=\E[y,
+ kf4=\E[P,
+ kf40=\E[z,
+ kf41=\E[@,
+ kf42=\E[[,
+ kf43=\E[\\,
+ kf44=\E[],
+ kf45=\E[\^,
+ kf46=\E[_,
+ kf47=\E[`,
+ kf48=\E[{,
+ kf5=\E[Q,
+ kf6=\E[R,
+ kf7=\E[S,
+ kf8=\E[T,
+ kf9=\E[U,
+ kich1=\E[L,
+ kmous=\E[>M,
+ knp=\E[G,
+ kpp=\E[I,
+ use=xterm+noapp,
+ use=xterm-basic,
+#
+# Other variants (these are all very old entries, from X11R5):
+xterm-24|xterms|vs100|xterm terminal emulator (X Window System),
+ lines#24,
+ use=xterm-old,
+xterm-65|xterm with tall window 65x80 (X Window System),
+ lines#65,
+ use=xterm-old,
+xterm-bold|xterm with bold instead of underline (X Window System),
+ sgr=
+ %?
+ %p9
+ %t\016
+ %e
+ \017
+ %;
+ B\E[0
+ %?
+ %p6
+ %t;1
+ %;
+ %?
+ %p2
+ %t;1
+ %;
+ %?
+ %p1%p3%|
+ %t;7
+ %;
+ m,
+ smso=\E[7m,
+ smul=\E[1m,
+ use=xterm-old,
+xterm-boldso|xterm with bold for standout (X Window System),
+ rmso=\E[m,
+ smso=\E[1m,
+ use=xterm-old,
+xterm-mono|monochrome xterm,
+ bce@,
+ colors@,
+ ncv@,
+ pairs@,
+ op@,
+ setab@,
+ setaf@,
+ setb@,
+ setf@,
+ sgr@,
+ use=xterm-old,
+#
+# VTxxx terminals are usually set up so that full-screen applications will use
+# the cursor application mode strings. This is good for full-screen
+# applications, including legacy applications which may have hard-coded
+# behavior, but bad for interactive shells (e.g., tcsh, bash) which use arrow
+# keys to scroll through a history of command strings.
+#
+# To see the difference between normal/application modes, consider this example:
+# + In normal (non-application) mode, the terminal transmits a down-arrow
+# as \E[C, which happens to echo as a down-arrow.
+# + In application mode the terminal transmits \EOC, which echoes as C.
+# That is because the \EO is the SS3 control, which says to use the
+# character from the G3 character set for the next cell.
+#
+# One example of hard-coded behavior would be for applications written to work
+# with VT52 and VT100 terminals. If the application's parser ignores 'O' and
+# '?' characters after the escape, then the cursor and keypad strings for the
+# two terminals are the same. (Indeed, one of the first curses applications
+# which I used did something like this to cover "ANSI" terminals -TD).
+#
+# To make this work (leaving the cursor keys in normal mode), we have to adjust
+# the terminal initialization sequences:
+#
+# smkx/rmkx set/reset the cursor and keypad application modes. We retain
+# the latter (otherwise many applications fail).
+#
+# smcup/rmcup set/restore cursor-addressing mode for full-screen
+# applications. For xterm, this normally means the alternate
+# screen, which is not compatible with interactive shells. Some
+# programs are "smart" and disable these.
+#
+xterm-noapp|xterm with cursor keys in normal mode,
+ rmcup@,
+ rmkx=\E>,
+ smcup@,
+ smkx=\E=,
+ use=xterm+noapp,
+ use=xterm,
+
+xterm+noapp|fragment with cursor keys in normal mode,
+ kcub1=\E[D,
+ kcud1=\E[B,
+ kcuf1=\E[C,
+ kcuu1=\E[A,
+ use=xterm+noapp+pc,
+
+xterm+app|fragment with cursor keys in application mode,
+ kcub1=\EOD,
+ kcud1=\EOB,
+ kcuf1=\EOC,
+ kcuu1=\EOA,
+ use=xterm+app+pc,
+
+xterm+noapp+pc|fragment for noapp pc-style home/end,
+ kend=\E[F,
+ khome=\E[H,
+
+xterm+app+pc|fragment for app pc-style home/end,
+ kend=\EOF,
+ khome=\EOH,
+
+xterm+edit|fragment for 6-key editing-keypad,
+ kdch1=\E[3~,
+ kich1=\E[2~,
+ knp=\E[6~,
+ kpp=\E[5~,
+ use=xterm+pc+edit,
+
+xterm+decedit|fragment for vt220 6-key editing-keypad,
+ kdch1=\E[3~,
+ kich1=\E[2~,
+ knp=\E[6~,
+ kpp=\E[5~,
+ use=xterm+vt+edit,
+
+xterm+pc+edit|fragment for pc-style editing keypad,
+ kend=\E[4~,
+ khome=\E[1~,
+
+xterm+vt+edit|fragment for vt220-style editing keypad,
+ kfnd=\E[1~,
+ kslt=\E[4~,
+
+xterm+noalt|xterm without altscreen,
+ rmcup@,
+ smcup@,
+
+xterm+alt1049|xterm 90 feature,
+ rmcup=\E[?1049l,
+ smcup=\E[?1049h,
+
+xterm+titlestack|xterm 251 feature,
+ rmcup=\E[23;0;0t,
+ smcup=\E[22;0;0t,
+
+xterm+alt+title|xterm 90 and 251 features combined,
+ rmcup=\E[?1049l\E[23;0;0t,
+ smcup=\E[?1049h\E[22;0;0t,
+#
+# This should work for the commonly used "color xterm" variations (XFree86
+# xterm, color_xterm, nxterm, rxvt). Note that it does not set 'bce', so for
+# XFree86 and and rxvt, some applications that use colors will be less
+# efficient, and in a few special cases (with "smart" optimization) the wrong
+# color will be painted in spots.
+xterm-color|generic "ANSI" color xterm (X Window System),
+ colors#8,
+ ncv@,
+ pairs#64,
+ op=\E[m,
+ setab=\E[4%p1%dm,
+ setaf=\E[3%p1%dm,
+ use=xterm-r6,
+#
+# vi may work better with this entry, because vi
+# doesn't use insert mode much
+xterm-ic|xterm-vi|xterm with insert character instead of insert mode,
+ mir@,
+ ich=\E[%p1%d@,
+ ich1=\E[@,
+ rmir@,
+ smir@,
+ use=xterm,
+#
+# This is used only for testing (it's not relevant to DEC VTxxx terminals, but
+# to ncurses).
+xterm-xmc|xterm with magic-cookie glitch,
+ xmc#1,
+ use=xterm-new,
+#
+# This one also is primarily for testing ncurses; while the ISO 6429 defines
+# the REP control, none of the DEC VTxxx terminals (VT52 through VT420) support
+# it.
+xterm-rep|xterm with repeat-character control,
+ rep=%p1%c\E[%p2%{1}%-%db,
+ use=xterm-new,
+#
+# This is mainly for testing xterm; the real VT220 will not let you switch
+# character sets without first altering the keyboard language in the setup
+# screen. Some emulators allow this anyway. (Note that these strings are
+# normally used only for printers). The parameter to csnm and scs is the same
+# in both cases: the keyboard language parameter returned by CSI ? 2 6 n.
+xterm-nrc|xterm with VT220 national replacement character sets,
+ csnm=
+ %?
+ %p1%{1}%=
+ %tNorth\sAmerican
+ %e
+ %p1%{2}%=
+ %tBritish
+ %e
+ %p1%{3}%=
+ %tFlemish
+ %e
+ %p1%{4}%=
+ %tFrench\sCanadian
+ %e
+ %p1%{5}%=
+ %tDanish
+ %e
+ %p1%{6}%=
+ %tFinnish
+ %e
+ %p1%{7}%=
+ %tGerman
+ %e
+ %p1%{8}%=
+ %tDutch
+ %e
+ %p1%{9}%=
+ %tItalian
+ %e
+ %p1%{10}%=
+ %tSwiss\s(French)
+ %e
+ %p1%{11}%=
+ %tSwiss\s(German)
+ %e
+ %p1%{12}%=
+ %tSwedish
+ %e
+ %p1%{13}%=
+ %tNorwegian
+ %e
+ %p1%{14}%=
+ %tFrench/Belgian
+ %e
+ %p1%{15}%=
+ %tSpanish
+ %;,
+ scs=
+ %?
+ %p1%{1}%=
+ %t\E(B
+ %e
+ %p1%{2}%=
+ %t\E(A
+ %e
+ %p1%{3}%=
+ %t\E(R
+ %e
+ %p1%{4}%=
+ %t\E(9
+ %e
+ %p1%{5}%=
+ %t\E(E
+ %e
+ %p1%{6}%=
+ %t\E(5
+ %e
+ %p1%{7}%=
+ %t\E(K
+ %e
+ %p1%{8}%=
+ %t\E(4
+ %e
+ %p1%{9}%=
+ %t\E(Y
+ %e
+ %p1%{10}%=
+ %t\E(=
+ %e
+ %p1%{11}%=
+ %t\E(=
+ %e
+ %p1%{12}%=
+ %t\E(7
+ %e
+ %p1%{13}%=
+ %t\E(E
+ %e
+ %p1%{14}%=
+ %t\E(R
+ %e
+ %p1%{15}%=
+ %t\E(Z
+ %;,
+ use=xterm-new,
+#
+# Foreground 0-15 maps (with toggles) into 30-37 & 90-97
+# Background 0-15 maps (with toggles) into 40-47 & 100-107
+#
+# Originally I suppressed setaf/setab, since ANSI specifies only 8 colors, but
+# Stephen Marley persuaded me to allow the "ANSI" color controls to extend to
+# 16 colors. (Note that ncurses 4.2 uses setf/setb from this description;
+# however 5.0 selects either according to their availability). - T.Dickey
+#
+# SVr4 curses does not use more than 8 colors anyway, so using 16 colors is
+# either for terminfo-level applications or via ncurses.
+xterm-16color|xterm with 16 colors,
+ colors#16,
+ pairs#0x100,
+ setab=\E[
+ %?
+ %p1%{8}%<
+ %t%p1%{40}%+
+ %e
+ %p1%{92}%+
+ %;
+ %dm,
+ setaf=\E[
+ %?
+ %p1%{8}%<
+ %t%p1%{30}%+
+ %e
+ %p1%{82}%+
+ %;
+ %dm,
+ setb=
+ %p1%{8}%/%{6}%*%{4}%+\E[%d%p1%{8}%m%Pa
+ %?%ga%{1}%=
+ %t4
+ %e%ga%{3}%=
+ %t6
+ %e%ga%{4}%=
+ %t1
+ %e%ga%{6}%=
+ %t3
+ %e%ga%d
+ %;
+ m,
+ setf=
+ %p1%{8}%/%{6}%*%{3}%+\E[%d%p1%{8}%m%Pa
+ %?%ga%{1}%=
+ %t4
+ %e%ga%{3}%=
+ %t6
+ %e%ga%{4}%=
+ %t1
+ %e%ga%{6}%=
+ %t3
+ %e%ga%d
+ %;
+ m,
+ use=xterm+256color,
+ use=xterm-new,
+
+# "indexed color" is mentioned without definition in ISO 8613-6 (ITU T.416).
+#
+# This implementation uses a 256-element color map where the first 16 entries
+# are shared with the aixterm-compatible colors (and in turn the first 8 are
+# shared with the ANSI colors). The three levels (256, 16, 8) account for the
+# use of a conditional expression in setaf/setab which reduces the number of
+# characters sent to the screen for typical applications.
+#
+# 256 colors should give 65536 pairs, but SVr4 (legacy) terminfo stores numbers
+# in a signed short. Most people will not notice problems with only 32767
+# pairs. With ncurses 6.1, numbers are stored in a signed integer (at least
+# 32-bits), and the inconsistency regarding pairs is eliminated.
+xterm+256color|xterm 256-color feature,
+ ccc,
+ colors#0x100,
+ pairs#0x10000,
+ initc=\E]4;
+ %p1%d;rgb\:%p2%{255}%*%{1000}%/%2.2X/%p3%{255}%*%{1000}%/%2.2X/%p4%{255}%*%{1000}%/%2.2X\E\\,
+ oc=\E]104\007,
+ rs1=\Ec\E]104\007,
+ setab=\E[
+ %?
+ %p1%{8}%<
+ %t4%p1%d
+ %e
+ %p1%{16}%<
+ %t10%p1%{8}%-%d
+ %e48;5;
+ %p1%d
+ %;
+ m,
+ setaf=\E[
+ %?
+ %p1%{8}%<
+ %t3%p1%d
+ %e
+ %p1%{16}%<
+ %t9%p1%{8}%-%d
+ %e38;5;
+ %p1%d
+ %;
+ m,
+ setb@,
+ setf@,
+xterm-256color|xterm with 256 colors,
+ use=xterm+256color,
+ use=xterm-new,
+xterm-88color|xterm with 88 colors,
+ colors#88,
+ pairs#7744,
+ use=xterm-256color,
+
+# "direct color" is mentioned without definition in ISO 8613-6 (ITU T.416).
+#
+# This is a particular implementation which assume 8-bit values for red, green,
+# and blue. Other encodings are possible; none are addressed by that standard.
+#
+# The "RGB" flag is an ncurses 6.1 extension which tells the library how to
+# quickly compute the color-content for a given color value.
+#
+# Like xterm+256color, this uses a conditional expression. But it does that
+# for a different reason: to make it readily usable for applications which
+# print text but also use RGB colors, it uses a color map for the usual ANSI
+# colors (0-7) and RGB colors for the remaining range of the color value.
+xterm+direct|xterm with direct-color indexing,
+ RGB,
+ colors#0x1000000,
+ pairs#0x10000,
+ initc@,
+ op=\E[39;49m,
+ setab=\E[
+ %?
+ %p1%{8}%<
+ %t4%p1%d
+ %e48\:2\:\:
+ %p1%{65536}%/%d\:%p1%{256}%/%{255}%&%d\:%p1%{255}%&%d
+ %;
+ m,
+ setaf=\E[
+ %?
+ %p1%{8}%<
+ %t3%p1%d
+ %e38\:2\:\:
+ %p1%{65536}%/%d\:%p1%{256}%/%{255}%&%d\:%p1%{255}%&%d
+ %;
+ m,
+ setb@,
+ setf@,
+xterm-direct|xterm with direct-color indexing,
+ use=xterm+direct,
+ use=xterm,
+#
+# This is an 8-bit version of xterm, which emulates DEC vt220 with ANSI color.
+# To use it, your decTerminalID resource must be set to 200 or above, and the
+# sunKeyboard resource set to true.
+#
+# HTS \E H \210
+# RI \E M \215
+# SS3 \E O \217
+# CSI \E [ \233
+#
+xterm-8bit|xterm terminal emulator with 8-bit controls (X Window System),
+ OTbs,
+ am,
+ bce,
+ km,
+ mc5i,
+ mir,
+ msgr,
+ npc,
+ xenl,
+ AX,
+ colors#8,
+ cols#80,
+ it#8,
+ lines#24,
+ pairs#64,
+ acsc=``aaffggiijjkkllmmnnooppqqr
+ rssttuuvvwwxxyyzz{{||}}~~,
+ bel=^G,
+ blink=\2335m,
+ bold=\2331m,
+ cbt=\233Z,
+ civis=\233?25l,
+ clear=\233H\2332J,
+ cnorm=\233?25l\233?25h,
+ cr=\r,
+ csr=\233%i%p1%d;%p2%dr,
+ cub=\233%p1%dD,
+ cub1=^H,
+ cud=\233%p1%dB,
+ cud1=\n,
+ cuf=\233%p1%dC,
+ cuf1=\233C,
+ cup=\233%i%p1%d;%p2%dH,
+ cuu=\233%p1%dA,
+ cuu1=\233A,
+ cvvis=\233?12;25h,
+ dch=\233%p1%dP,
+ dch1=\233P,
+ dl=\233%p1%dM,
+ dl1=\233M,
+ ech=\233%p1%dX,
+ ed=\233J,
+ el=\233K,
+ el1=\2331K,
+ flash=\233?5h$<100/>\233?5l,
+ home=\233H,
+ hpa=\233%i%p1%dG,
+ ht=^I,
+ hts=\210,
+ ich=\233%p1%d@,
+ il=\233%p1%dL,
+ il1=\233L,
+ ind=\n,
+ invis=\2338m,
+ is2=\E[62"p\E\sG\233m\233?7h\E>
+ \E7\233?1;3;4;6l\2334l\233r
+ \E8,
+ ka1=\217w,
+ ka3=\217u,
+ kb2=\217y,
+ kbeg=\217E,
+ kc1=\217q,
+ kc3=\217s,
+ kcbt=\233Z,
+ kcub1=\217D,
+ kcud1=\217B,
+ kcuf1=\217C,
+ kcuu1=\217A,
+ kdch1=\2333~,
+ kend=\2334~,
+ kent=\217M,
+ kf1=\23311~,
+ kf10=\23321~,
+ kf11=\23323~,
+ kf12=\23324~,
+ kf13=\23325~,
+ kf14=\23326~,
+ kf15=\23328~,
+ kf16=\23329~,
+ kf17=\23331~,
+ kf18=\23332~,
+ kf19=\23333~,
+ kf2=\23312~,
+ kf20=\23334~,
+ kf3=\23313~,
+ kf4=\23314~,
+ kf5=\23315~,
+ kf6=\23317~,
+ kf7=\23318~,
+ kf8=\23319~,
+ kf9=\23320~,
+ khome=\2331~,
+ kich1=\2332~,
+ kmous=\233M,
+ knp=\2336~,
+ kpp=\2335~,
+ mc0=\233i,
+ mc4=\2334i,
+ mc5=\2335i,
+ meml=\El,
+ memu=\Em,
+ op=\23339;49m,
+ rc=\E8,
+ rev=\2337m,
+ ri=\215,
+ rmacs=\E(B,
+ rmam=\233?7l,
+ rmcup=\233?1049l,
+ rmir=\2334l,
+ rmkx=\233?1l\E>,
+ rmso=\23327m,
+ rmul=\23324m,
+ rs1=\Ec,
+ rs2=\E[62"p\E\sG\233m\233?7h\E>
+ \E7\233?1;3;4;6l\2334l\233r
+ \E8,
+ sc=\E7,
+ setab=\2334%p1%dm,
+ setaf=\2333%p1%dm,
+ setb=\2334
+ %?
+ %p1%{1}%=
+ %t4
+ %e
+ %p1%{3}%=
+ %t6
+ %e
+ %p1%{4}%=
+ %t1
+ %e
+ %p1%{6}%=
+ %t3
+ %e
+ %p1%d
+ %;
+ m,
+ setf=\2333
+ %?
+ %p1%{1}%=
+ %t4
+ %e
+ %p1%{3}%=
+ %t6
+ %e
+ %p1%{4}%=
+ %t1
+ %e
+ %p1%{6}%=
+ %t3
+ %e
+ %p1%d
+ %;
+ m,
+ sgr=\2330
+ %?
+ %p6
+ %t;1
+ %;
+ %?
+ %p2
+ %t;4
+ %;
+ %?
+ %p1%p3%|
+ %t;7
+ %;
+ %?
+ %p4
+ %t;5
+ %;
+ %?
+ %p7
+ %t;8
+ %;
+ m
+ %?
+ %p9
+ %t\E(0
+ %e
+ \E(B
+ %;,
+ sgr0=\2330m\E(B,
+ smacs=\E(0,
+ smam=\233?7h,
+ smcup=\233?1049h,
+ smir=\2334h,
+ smkx=\233?1h\E=,
+ smso=\2337m,
+ smul=\2334m,
+ tbc=\2333g,
+ u6=\233[%i%d;%dR,
+ u7=\E[6n,
+ u8=\233[?%[;0123456789]c,
+ u9=\E[c,
+ vpa=\233%i%p1%dd,
+ use=xterm+kbs,
+#
+xterm-xf86-v44|xterm terminal emulator (XFree86 4.4 Window System),
+ OTbs,
+ am,
+ bce,
+ km,
+ mc5i,
+ mir,
+ msgr,
+ npc,
+ xenl,
+ AX,
+ XT,
+ colors#8,
+ cols#80,
+ it#8,
+ lines#24,
+ pairs#64,
+ acsc=``aaffggiijjkkllmmnnooppqqr
+ rssttuuvvwwxxyyzz{{||}}~~,
+ bel=^G,
+ blink=\E[5m,
+ bold=\E[1m,
+ cbt=\E[Z,
+ civis=\E[?25l,
+ clear=\E[H\E[2J,
+ cnorm=\E[?12l\E[?25h,
+ cr=\r,
+ csr=\E[%i%p1%d;%p2%dr,
+ cub=\E[%p1%dD,
+ cub1=^H,
+ cud=\E[%p1%dB,
+ cud1=\n,
+ cuf=\E[%p1%dC,
+ cuf1=\E[C,
+ cup=\E[%i%p1%d;%p2%dH,
+ cuu=\E[%p1%dA,
+ cuu1=\E[A,
+ cvvis=\E[?12;25h,
+ dch=\E[%p1%dP,
+ dch1=\E[P,
+ dl=\E[%p1%dM,
+ dl1=\E[M,
+ ech=\E[%p1%dX,
+ ed=\E[J,
+ el=\E[K,
+ el1=\E[1K,
+ enacs=\E(B\E)0,
+ flash=\E[?5h$<100/>\E[?5l,
+ home=\E[H,
+ hpa=\E[%i%p1%dG,
+ ht=^I,
+ hts=\EH,
+ ich=\E[%p1%d@,
+ il=\E[%p1%dL,
+ il1=\E[L,
+ ind=\n,
+ indn=\E[%p1%dS,
+ invis=\E[8m,
+ is2=\E[!p\E[?3;4l\E[4l\E>,
+ kDC=\E[3;2~,
+ kEND=\E[1;2F,
+ kHOM=\E[1;2H,
+ kIC=\E[2;2~,
+ kLFT=\E[1;2D,
+ kNXT=\E[6;2~,
+ kPRV=\E[5;2~,
+ kRIT=\E[1;2C,
+ kb2=\EOE,
+ kcbt=\E[Z,
+ kcub1=\EOD,
+ kcud1=\EOB,
+ kcuf1=\EOC,
+ kcuu1=\EOA,
+ kdch1=\E[3~,
+ kend=\EOF,
+ kent=\EOM,
+ kf1=\EOP,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf13=\EO2P,
+ kf14=\EO2Q,
+ kf15=\EO2R,
+ kf16=\EO2S,
+ kf17=\E[15;2~,
+ kf18=\E[17;2~,
+ kf19=\E[18;2~,
+ kf2=\EOQ,
+ kf20=\E[19;2~,
+ kf21=\E[20;2~,
+ kf22=\E[21;2~,
+ kf23=\E[23;2~,
+ kf24=\E[24;2~,
+ kf25=\EO5P,
+ kf26=\EO5Q,
+ kf27=\EO5R,
+ kf28=\EO5S,
+ kf29=\E[15;5~,
+ kf3=\EOR,
+ kf30=\E[17;5~,
+ kf31=\E[18;5~,
+ kf32=\E[19;5~,
+ kf33=\E[20;5~,
+ kf34=\E[21;5~,
+ kf35=\E[23;5~,
+ kf36=\E[24;5~,
+ kf37=\EO6P,
+ kf38=\EO6Q,
+ kf39=\EO6R,
+ kf4=\EOS,
+ kf40=\EO6S,
+ kf41=\E[15;6~,
+ kf42=\E[17;6~,
+ kf43=\E[18;6~,
+ kf44=\E[19;6~,
+ kf45=\E[20;6~,
+ kf46=\E[21;6~,
+ kf47=\E[23;6~,
+ kf48=\E[24;6~,
+ kf5=\E[15~,
+ kf6=\E[17~,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+ khome=\EOH,
+ kich1=\E[2~,
+ kmous=\E[M,
+ knp=\E[6~,
+ kpp=\E[5~,
+ mc0=\E[i,
+ mc4=\E[4i,
+ mc5=\E[5i,
+ meml=\El,
+ memu=\Em,
+ op=\E[39;49m,
+ rc=\E8,
+ rev=\E[7m,
+ ri=\EM,
+ rin=\E[%p1%dT,
+ rmacs=^O,
+ rmam=\E[?7l,
+ rmir=\E[4l,
+ rmkx=\E[?1l\E>,
+ rmso=\E[27m,
+ rmul=\E[24m,
+ rs1=\Ec,
+ rs2=\E[!p\E[?3;4l\E[4l\E>,
+ sc=\E7,
+ setab=\E[4%p1%dm,
+ setaf=\E[3%p1%dm,
+ setb=\E[4
+ %?
+ %p1%{1}%=
+ %t4
+ %e
+ %p1%{3}%=
+ %t6
+ %e
+ %p1%{4}%=
+ %t1
+ %e
+ %p1%{6}%=
+ %t3
+ %e
+ %p1%d
+ %;
+ m,
+ setf=\E[3
+ %?
+ %p1%{1}%=
+ %t4
+ %e
+ %p1%{3}%=
+ %t6
+ %e
+ %p1%{4}%=
+ %t1
+ %e
+ %p1%{6}%=
+ %t3
+ %e
+ %p1%d
+ %;
+ m,
+ sgr=\E[0
+ %?
+ %p6
+ %t;1
+ %;
+ %?
+ %p2
+ %t;4
+ %;
+ %?
+ %p1%p3%|
+ %t;7
+ %;
+ %?
+ %p4
+ %t;5
+ %;
+ %?
+ %p7
+ %t;8
+ %;
+ m
+ %?
+ %p9
+ %t\016
+ %e
+ \017
+ %;,
+ sgr0=\E[m\017,
+ smacs=^N,
+ smam=\E[?7h,
+ smir=\E[4h,
+ smkx=\E[?1h\E=,
+ smso=\E[7m,
+ smul=\E[4m,
+ tbc=\E[3g,
+ u6=\E[%i%d;%dR,
+ u7=\E[6n,
+ u8=\E[?1;2c,
+ u9=\E[c,
+ vpa=\E[%i%p1%dd,
+ ka2=\EOx,
+ kb1=\EOt,
+ kb3=\EOv,
+ kc2=\EOr,
+ use=xterm+alt1049,
+ use=xterm+kbs,
+xterm-xfree86|xterm terminal emulator (XFree86 4.4 Window System),
+ use=xterm-xf86-v44,
+#
+# Compatible with the R6 xterm, with the following changes:
+# + added acsc (perhaps some versions of tic assume the standard vt100
+# alternate character set)
+# + added u6, u7, u8, u9 strings for Daniel Weaver's tack program.
+# + added kmous string for ncurses.
+# + added khome/kend strings (which conflict with kfnd/kslt, see note).
+xterm-r6|xterm X11R6 version,
+ OTbs,
+ am,
+ km,
+ mir,
+ msgr,
+ xenl,
+ cols#80,
+ it#8,
+ lines#24,
+ acsc=``aaffggiijjkkllmmnnooppqqr
+ rssttuuvvwwxxyyzz{{||}}~~,
+ bel=^G,
+ bold=\E[1m,
+ clear=\E[H\E[2J,
+ cr=\r,
+ csr=\E[%i%p1%d;%p2%dr,
+ cub=\E[%p1%dD,
+ cub1=^H,
+ cud=\E[%p1%dB,
+ cud1=\n,
+ cuf=\E[%p1%dC,
+ cuf1=\E[C,
+ cup=\E[%i%p1%d;%p2%dH,
+ cuu=\E[%p1%dA,
+ cuu1=\E[A,
+ dch=\E[%p1%dP,
+ dch1=\E[P,
+ dl=\E[%p1%dM,
+ dl1=\E[M,
+ ed=\E[J,
+ el=\E[K,
+ enacs=\E)0,
+ home=\E[H,
+ ht=^I,
+ hts=\EH,
+ il=\E[%p1%dL,
+ il1=\E[L,
+ ind=\n,
+ is2=\E[m\E[?7h\E[4l\E>\E7\E[r\E[
+ ?1;3;4;6l\E8,
+ kcub1=\EOD,
+ kcud1=\EOB,
+ kcuf1=\EOC,
+ kcuu1=\EOA,
+ kdch1=\E[3~,
+ kf1=\E[11~,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf13=\E[25~,
+ kf14=\E[26~,
+ kf15=\E[28~,
+ kf16=\E[29~,
+ kf17=\E[31~,
+ kf18=\E[32~,
+ kf19=\E[33~,
+ kf2=\E[12~,
+ kf20=\E[34~,
+ kf3=\E[13~,
+ kf4=\E[14~,
+ kf5=\E[15~,
+ kf6=\E[17~,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+ kmous=\E[M,
+ meml=\El,
+ memu=\Em,
+ rc=\E8,
+ rev=\E[7m,
+ ri=\EM,
+ rmacs=^O,
+ rmcup=\E[2J\E[?47l\E8,
+ rmir=\E[4l,
+ rmkx=\E[?1l\E>,
+ rmso=\E[m,
+ rmul=\E[m,
+ rs2=\E[m\E[?7h\E[4l\E>\E7\E[r\E[
+ ?1;3;4;6l\E8,
+ sc=\E7,
+ sgr0=\E[m,
+ smacs=^N,
+ smcup=\E7\E[?47h,
+ smir=\E[4h,
+ smkx=\E[?1h\E=,
+ smso=\E[7m,
+ smul=\E[4m,
+ tbc=\E[3g,
+ u6=\E[%i%d;%dR,
+ u7=\E[6n,
+ u8=\E[?1;2c,
+ u9=\E[c,
+ use=xterm+kbs,
+ use=xterm+decedit,
+xterm-old|antique xterm version,
+ use=xterm-r6,
+#
+# Compatible with the R5 xterm, with the following changes:
+# + changed 'blink=@', to 'blink@' (the former meant that "@" would start
+# a blink, the latter that it is not supported).
+# + changed kf1 through kf4 to correspond with actual usage. Though X
+# supports keypad symbols for PF1 to PF4, and xterm interprets these
+# correctly, the F1 to F4 codes are commonly (but incorrectly) used.
+# + moved reset string from rs1 to rs2, to correlate better with termcap.
+# + make khome consistent with other entries.
+# + use rmul/smul, rmir/smir from termcap, but not rmcup/smcup because
+# not everyone wants the alternate screen.
+# + added u6, u7, u8, u9 strings for Daniel Weaver's tack program.
+# + added kmous string for ncurses.
+xterm-r5|xterm R5 version,
+ OTbs,
+ am,
+ km,
+ msgr,
+ xenl,
+ cols#80,
+ it#8,
+ lines#24,
+ bel=^G,
+ bold=\E[1m,
+ clear=\E[H\E[2J,
+ cr=\r,
+ csr=\E[%i%p1%d;%p2%dr,
+ cub=\E[%p1%dD,
+ cub1=^H,
+ cud=\E[%p1%dB,
+ cud1=\n,
+ cuf=\E[%p1%dC,
+ cuf1=\E[C,
+ cup=\E[%i%p1%d;%p2%dH,
+ cuu=\E[%p1%dA,
+ cuu1=\E[A,
+ dch=\E[%p1%dP,
+ dch1=\E[P,
+ dl=\E[%p1%dM,
+ dl1=\E[M,
+ ed=\E[J,
+ el=\E[K,
+ home=\E[H,
+ ht=^I,
+ hts=\EH,
+ ich=\E[%p1%d@,
+ ich1=\E[@,
+ il=\E[%p1%dL,
+ il1=\E[L,
+ ind=\n,
+ kcub1=\EOD,
+ kcud1=\EOB,
+ kcuf1=\EOC,
+ kcuu1=\EOA,
+ kdch1=\E[3~,
+ kdl1=\E[31~,
+ kel=\E[8~,
+ kend=\E[4~,
+ kf0=\EOq,
+ kf1=\E[11~,
+ kf10=\E[21~,
+ kf11=\E[23~,
+ kf12=\E[24~,
+ kf2=\E[12~,
+ kf3=\E[13~,
+ kf4=\E[14~,
+ kf5=\E[15~,
+ kf6=\E[17~,
+ kf7=\E[18~,
+ kf8=\E[19~,
+ kf9=\E[20~,
+ khome=\E[1~,
+ kich1=\E[2~,
+ kil1=\E[30~,
+ kmous=\E[M,
+ knp=\E[6~,
+ kpp=\E[5~,
+ rc=\E8,
+ rev=\E[7m,
+ ri=\EM,
+ rmir=\E[4l,
+ rmkx=\E[?1l\E>,
+ rmso=\E[m,
+ rmul=\E[m,
+ rs2=\E>\E[?1;3;4;5;6l\E[4l\E[?7h
+ \E[m\E[r\E[2J\E[H,
+ sc=\E7,
+ sgr=\E[
+ %?
+ %p1
+ %t;7
+ %;
+ %?
+ %p2
+ %t;4
+ %;
+ %?
+ %p3
+ %t;7
+ %;
+ %?
+ %p4
+ %t;5
+ %;
+ %?
+ %p6
+ %t;1
+ %;
+ m,
+ sgr0=\E[m,
+ smir=\E[4h,
+ smkx=\E[?1h\E=,
+ smso=\E[7m,
+ smul=\E[4m,
+ tbc=\E[3g,
+ u6=\E[%i%d;%dR,
+ u7=\E[6n,
+ u8=\E[?1;2c,
+ u9=\E[c,
+ use=xterm+kbs,
+#
+#
+# Customization begins here.
+#
+# This is the only entry which you should have to customize, since "xterm"
+# is widely used for a variety of incompatible terminal emulations including
+# color_xterm and rxvt.
+xterm|xterm-debian|X11 terminal emulator,
+ use=xterm-new,
+# use=xterm-r6,
+
+# This fragment is for people who cannot agree on what the backspace key
+# should send.
+xterm+kbs|fragment for backspace key,
+ kbs=\177,
+# kbs=^?,