c73763
%global revision 20210508
c73763
Summary: Ncurses support utilities
c73763
Name: ncurses
c73763
Version: 6.2
c73763
Release: 8.%{revision}%{?dist}
c73763
License: MIT
c73763
URL: https://invisible-island.net/ncurses/ncurses.html
c73763
Source0: https://invisible-mirror.net/archives/ncurses/current/ncurses-%{version}-%{revision}.tgz
c73763
Source1: https://invisible-mirror.net/archives/ncurses/current/ncurses-%{version}-%{revision}.tgz.asc
c73763
Source2: https://invisible-island.net/public/dickey-invisible-island.txt
c73763
c73763
Patch8: ncurses-config.patch
c73763
Patch9: ncurses-libs.patch
c73763
Patch11: ncurses-urxvt.patch
c73763
Patch12: ncurses-kbs.patch
c73763
BuildRequires: gcc gcc-c++ gpm-devel gnupg2 make pkgconfig
c73763
c73763
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
c73763
c73763
%description
c73763
The curses library routines are a terminal-independent method of
c73763
updating character screens with reasonable optimization.  The ncurses
c73763
(new curses) library is a freely distributable replacement for the
c73763
discontinued 4.4 BSD classic curses library.
c73763
c73763
This package contains support utilities, including a terminfo compiler
c73763
tic, a decompiler infocmp, clear, tput, tset, and a termcap conversion
c73763
tool captoinfo.
c73763
c73763
%package libs
c73763
Summary: Ncurses libraries
c73763
Requires: %{name}-base = %{version}-%{release}
c73763
c73763
%description libs
c73763
The curses library routines are a terminal-independent method of
c73763
updating character screens with reasonable optimization.  The ncurses
c73763
(new curses) library is a freely distributable replacement for the
c73763
discontinued 4.4 BSD classic curses library.
c73763
c73763
This package contains the ncurses libraries.
c73763
c73763
%package compat-libs
c73763
Summary: Ncurses compatibility libraries
c73763
Requires: %{name}-base = %{version}-%{release}
c73763
c73763
%description compat-libs
c73763
The curses library routines are a terminal-independent method of
c73763
updating character screens with reasonable optimization.  The ncurses
c73763
(new curses) library is a freely distributable replacement for the
c73763
discontinued 4.4 BSD classic curses library.
c73763
c73763
This package contains the ABI version 5 of the ncurses libraries for
c73763
compatibility.
c73763
c73763
%package c++-libs
c73763
Summary: Ncurses C++ bindings
c73763
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
c73763
c73763
%description c++-libs
c73763
The curses library routines are a terminal-independent method of
c73763
updating character screens with reasonable optimization.  The ncurses
c73763
(new curses) library is a freely distributable replacement for the
c73763
discontinued 4.4 BSD classic curses library.
c73763
c73763
This package contains C++ bindings of the ncurses ABI version 6 libraries.
c73763
c73763
%package base
c73763
Summary: Descriptions of common terminals
c73763
# rxvt-unicode-256color entry used to be in rxvt-unicode and briefly
c73763
# in rxvt-unicode-terminfo
c73763
Conflicts: rxvt-unicode < 9.22-15
c73763
Obsoletes: rxvt-unicode-terminfo < 9.22-18
c73763
BuildArch: noarch
c73763
c73763
%description base
c73763
This package contains descriptions of common terminals. Other terminal
c73763
descriptions are included in the ncurses-term package.
c73763
c73763
%package term
c73763
Summary: Terminal descriptions
c73763
Requires: %{name}-base = %{version}-%{release}
c73763
BuildArch: noarch
c73763
c73763
%description term
c73763
This package contains additional terminal descriptions not found in
c73763
the ncurses-base package.
c73763
c73763
%package devel
c73763
Summary: Development files for the ncurses library
c73763
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
c73763
Requires: %{name}-c++-libs%{?_isa} = %{version}-%{release}
c73763
Requires: pkgconfig
c73763
c73763
%description devel
c73763
The header files and libraries for developing applications that use
c73763
the ncurses terminal handling library.
c73763
c73763
Install the ncurses-devel package if you want to develop applications
c73763
which will use ncurses.
c73763
c73763
%package static
c73763
Summary: Static libraries for the ncurses library
c73763
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
c73763
c73763
%description static
c73763
The ncurses-static package includes static libraries of the ncurses library.
c73763
c73763
%prep
c73763
%{gpgverify} --keyring=%{SOURCE2} --signature=%{SOURCE1} --data=%{SOURCE0}
c73763
c73763
%setup -q -n %{name}-%{version}-%{revision}
c73763
c73763
%patch8 -p1 -b .config
c73763
%patch9 -p1 -b .libs
c73763
%patch11 -p1 -b .urxvt
c73763
%patch12 -p1 -b .kbs
c73763
c73763
for f in ANNOUNCE; do
c73763
    iconv -f iso8859-1 -t utf8 -o ${f}{_,} &&
c73763
        touch -r ${f}{,_} && mv -f ${f}{_,}
c73763
done
c73763
c73763
%build
c73763
common_options="\
c73763
    --enable-colorfgbg \
c73763
    --enable-hard-tabs \
c73763
    --enable-overwrite \
c73763
    --enable-pc-files \
c73763
    --enable-xmc-glitch \
c73763
    --disable-stripping \
c73763
    --disable-wattr-macros \
c73763
    --with-cxx-shared \
c73763
    --with-ospeed=unsigned \
c73763
    --with-pkg-config-libdir=%{_libdir}/pkgconfig \
c73763
    --with-shared \
c73763
    --with-terminfo-dirs=%{_sysconfdir}/terminfo:%{_datadir}/terminfo \
c73763
    --with-termlib=tinfo \
c73763
    --with-ticlib=tic \
c73763
    --with-xterm-kbs=DEL \
c73763
    --without-ada"
c73763
abi5_options="--with-chtype=long"
c73763
c73763
for abi in 5 6; do
c73763
    for char in narrowc widec; do
c73763
        mkdir $char$abi
c73763
        pushd $char$abi
c73763
        ln -s ../configure .
c73763
c73763
        [ $abi = 6 -a $char = widec ] && progs=yes || progs=no
c73763
c73763
        %configure $(
c73763
            echo $common_options --with-abi-version=$abi
c73763
            [ $abi = 5 ] && echo $abi5_options
c73763
            [ $char = widec ] && echo --enable-widec
c73763
            [ $progs = yes ] || echo --without-progs
c73763
        )
c73763
c73763
        %make_build libs
c73763
        [ $progs = yes ] && %make_build -C progs
c73763
c73763
        popd
c73763
    done
c73763
done
c73763
c73763
%install
c73763
make -C narrowc5 DESTDIR=$RPM_BUILD_ROOT install.libs
c73763
rm ${RPM_BUILD_ROOT}%{_libdir}/lib{tic,tinfo}.so.5*
c73763
make -C widec5 DESTDIR=$RPM_BUILD_ROOT install.libs
c73763
make -C narrowc6 DESTDIR=$RPM_BUILD_ROOT install.libs
c73763
rm ${RPM_BUILD_ROOT}%{_libdir}/lib{tic,tinfo}.so.6*
c73763
make -C widec6 DESTDIR=$RPM_BUILD_ROOT install.{libs,progs,data,includes,man}
c73763
c73763
chmod 755 ${RPM_BUILD_ROOT}%{_libdir}/lib*.so.*.*
c73763
chmod 644 ${RPM_BUILD_ROOT}%{_libdir}/lib*.a
c73763
c73763
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/terminfo
c73763
c73763
baseterms=
c73763
c73763
# prepare -base and -term file lists
c73763
for termname in \
c73763
    alacritty ansi dumb linux vt100 vt100-nav vt102 vt220 vt52 \
c73763
    Eterm\* aterm bterm cons25 cygwin eterm\* gnome gnome-256color hurd jfbterm \
c73763
    kitty konsole konsole-256color mach\* mlterm mrxvt nsterm putty{,-256color} pcansi \
c73763
    rxvt{,-\*} screen{,-\*color,.[^mlp]\*,.linux,.mlterm\*,.putty{,-256color},.mrxvt} \
c73763
    st{,-\*color} sun teraterm teraterm2.3 tmux{,-\*} vte vte-256color vwmterm \
c73763
    wsvt25\* xfce xterm xterm-\*
c73763
do
c73763
    for i in $RPM_BUILD_ROOT%{_datadir}/terminfo/?/$termname; do
c73763
        for t in $(find $RPM_BUILD_ROOT%{_datadir}/terminfo -samefile $i); do
c73763
            baseterms="$baseterms $(basename $t)"
c73763
        done
c73763
    done
c73763
done 2> /dev/null
c73763
for t in $baseterms; do
c73763
    echo "%dir %{_datadir}/terminfo/${t::1}"
c73763
    echo %{_datadir}/terminfo/${t::1}/$t
c73763
done 2> /dev/null | sort -u > terms.base
c73763
find $RPM_BUILD_ROOT%{_datadir}/terminfo \! -type d | \
c73763
    sed "s|^$RPM_BUILD_ROOT||" | while read t
c73763
do
c73763
    echo "%dir $(dirname $t)"
c73763
    echo $t
c73763
done 2> /dev/null | sort -u | comm -2 -3 - terms.base > terms.term
c73763
c73763
# can't replace directory with symlink (rpm bug), symlink all headers
c73763
mkdir $RPM_BUILD_ROOT%{_includedir}/ncurses{,w}
c73763
for l in $RPM_BUILD_ROOT%{_includedir}/*.h; do
c73763
    ln -s ../$(basename $l) $RPM_BUILD_ROOT%{_includedir}/ncurses
c73763
    ln -s ../$(basename $l) $RPM_BUILD_ROOT%{_includedir}/ncursesw
c73763
done
c73763
c73763
# don't require -ltinfo when linking with --no-add-needed
c73763
for l in $RPM_BUILD_ROOT%{_libdir}/libncurses{,w}.so; do
c73763
    soname=$(basename $(readlink $l))
c73763
    rm -f $l
c73763
    echo "INPUT($soname -ltinfo)" > $l
c73763
done
c73763
c73763
rm -f $RPM_BUILD_ROOT%{_libdir}/libcurses{,w}.so
c73763
echo "INPUT(-lncurses)" > $RPM_BUILD_ROOT%{_libdir}/libcurses.so
c73763
echo "INPUT(-lncursesw)" > $RPM_BUILD_ROOT%{_libdir}/libcursesw.so
c73763
c73763
echo "INPUT(-ltinfo)" > $RPM_BUILD_ROOT%{_libdir}/libtermcap.so
c73763
c73763
rm -f $RPM_BUILD_ROOT%{_bindir}/ncurses*5-config
c73763
rm -f $RPM_BUILD_ROOT%{_libdir}/terminfo
c73763
rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/*_g.pc
c73763
c73763
xz NEWS
c73763
c73763
%ldconfig_scriptlets libs
c73763
c73763
%ldconfig_scriptlets c++-libs
c73763
c73763
%ldconfig_scriptlets compat-libs
c73763
c73763
%files
c73763
%doc ANNOUNCE AUTHORS NEWS.xz README TO-DO
c73763
%{_bindir}/[cirt]*
c73763
%{_mandir}/man1/[cirt]*
c73763
%{_mandir}/man5/*
c73763
%{_mandir}/man7/*
c73763
c73763
%files libs
c73763
%exclude %{_libdir}/libncurses++*.so.6*
c73763
%{_libdir}/lib*.so.6*
c73763
c73763
%files compat-libs
c73763
%{_libdir}/lib*.so.5*
c73763
c73763
%files c++-libs
c73763
%{_libdir}/libncurses++*.so.6*
c73763
c73763
%files base -f terms.base
c73763
%license COPYING
c73763
%doc README
c73763
%dir %{_sysconfdir}/terminfo
c73763
%{_datadir}/tabset
c73763
%dir %{_datadir}/terminfo
c73763
c73763
%files term -f terms.term
c73763
c73763
%files devel
c73763
%doc doc/html/hackguide.html
c73763
%doc doc/html/ncurses-intro.html
c73763
%doc c++/README*
c73763
%doc misc/ncurses.supp
c73763
%{_bindir}/ncurses*-config
c73763
%{_libdir}/lib*.so
c73763
%{_libdir}/pkgconfig/*.pc
c73763
%dir %{_includedir}/ncurses
c73763
%dir %{_includedir}/ncursesw
c73763
%{_includedir}/ncurses/*.h
c73763
%{_includedir}/ncursesw/*.h
c73763
%{_includedir}/*.h
c73763
%{_mandir}/man1/ncurses*-config*
c73763
%{_mandir}/man3/*
c73763
c73763
%files static
c73763
%{_libdir}/lib*.a
c73763
c73763
%changelog
c73763
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 6.2-8.20210508
c73763
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
c73763
  Related: rhbz#1991688
c73763
c73763
* Mon May 10 2021 Miroslav Lichvar <mlichvar@redhat.com> 6.2-7.20210508
c73763
- update to 6.2-20210508
c73763
c73763
* Tue May 04 2021 Miroslav Lichvar <mlichvar@redhat.com> 6.2-6.20210501
c73763
- update to 6.2-20210501
c73763
c73763
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 6.2-5.20200222
c73763
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
c73763
c73763
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.2-4.20200222
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
c73763
- Use make macros
c73763
- Remove %license definition
c73763
- Add BuildRequires: make
c73763
c73763
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.2-3.20200222
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
c73763
c73763
* Tue Jun 23 2020 Miroslav Lichvar <mlichvar@redhat.com> 6.2-2.20200222
c73763
- move alacritty and kitty entries to -base (#1849974)
c73763
c73763
* Wed Feb 26 2020 Miroslav Lichvar <mlichvar@redhat.com> 6.2-1.20200222
c73763
- update to 6.2-20200222
c73763
c73763
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.1-15.20191109
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
c73763
c73763
* Tue Nov 12 2019 Miroslav Lichvar <mlichvar@redhat.com> 6.1-14.20191109
c73763
- update to 6.1-20191109
c73763
- remove LDFLAGS from pkgconfig files and ncurses-config scripts (#1771137)
c73763
c73763
* Thu Oct 31 2019 Miroslav Lichvar <mlichvar@redhat.com> 6.1-13.20191026
c73763
- update to 6.1-20191026 (CVE-2019-17594 CVE-2019-17595)
c73763
- restore rxvt-unicode-256color terminfo (Robbie Harwood) (#1430935)
c73763
- conflict/obsolete rxvt-unicode (sub)packages with terminfo (#1430935)
c73763
- drop old obsoletes and conflicts
c73763
c73763
* Wed Aug 07 2019 Miroslav Lichvar <mlichvar@redhat.com> 6.1-12.20190803
c73763
- update to 6.1-20190803
c73763
- verify upstream signatures
c73763
- compress NEWS by xz
c73763
c73763
* Wed Jul 24 2019 Miroslav Lichvar <mlichvar@redhat.com> 6.1-11.20190720
c73763
- update to 6.1-20190720
c73763
c73763
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.1-10.20180923
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
c73763
c73763
* Wed Jan 16 2019 Miroslav Lichvar <mlichvar@redhat.com> 6.1-9.20180923
c73763
- disable stripping on program installation
c73763
c73763
* Mon Sep 24 2018 Miroslav Lichvar <mlichvar@redhat.com> 6.1-8.20180923
c73763
- update to 6.1-20180923
c73763
c73763
* Mon Jul 16 2018 Miroslav Lichvar <mlichvar@redhat.com> 6.1-7.20180714
c73763
- update to 6.1-20180714
c73763
- add gcc-c++ to build requirements
c73763
c73763
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.1-6.20180224
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
c73763
c73763
* Wed May 09 2018 Miroslav Lichvar <mlichvar@redhat.com> 6.1-5.20180224
c73763
- fix crash in parsing of terminfo use capability (CVE-2018-10754)
c73763
c73763
* Mon Feb 26 2018 Miroslav Lichvar <mlichvar@redhat.com> 6.1-4.20180224
c73763
- update to 6.1-20180224
c73763
- add gcc to build requirements
c73763
c73763
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.1-3.20180129
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c73763
c73763
* Tue Jan 30 2018 Miroslav Lichvar <mlichvar@redhat.com> 6.1-2.20180129
c73763
- update to 6.1-20180129
c73763
- use macro for ldconfig scriptlets
c73763
c73763
* Mon Jan 29 2018 Miroslav Lichvar <mlichvar@redhat.com> 6.1-1.20180127
c73763
- update to 6.1-20180127
c73763
c73763
* Thu Nov 30 2017 Miroslav Lichvar <mlichvar@redhat.com> 6.0-15.20171125
c73763
- update to 6.0-20171125 (CVE-2017-16879)
c73763
c73763
* Wed Sep 20 2017 Miroslav Lichvar <mlichvar@redhat.com> 6.0-14.20170916
c73763
- update to 6.0-20170916 (CVE-2017-13728 CVE-2017-13729 CVE-2017-13730
c73763
  CVE-2017-13731 CVE-2017-13732 CVE-2017-13733 CVE-2017-13734)
c73763
c73763
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-13.20170722
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c73763
c73763
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 6.0-12.20170722
c73763
- Rebuild with binutils fix for ppc64le (#1475636)
c73763
c73763
* Wed Jul 26 2017 Miroslav Lichvar <mlichvar@redhat.com> 6.0-11.20170722
c73763
- update to 6.0-20170722 (CVE-2017-10684 CVE-2017-10685 CVE-2017-11112
c73763
  CVE-2017-11113)
c73763
c73763
* Mon May 29 2017 Miroslav Lichvar <mlichvar@redhat.com> 6.0-10.20170520
c73763
- fix compatibility between libtinfo and libncurses (#1456340)
c73763
c73763
* Fri May 26 2017 Miroslav Lichvar <mlichvar@redhat.com> 6.0-9.20170520
c73763
- update to 6.0-20170520
c73763
c73763
* Tue Feb 14 2017 Miroslav Lichvar <mlichvar@redhat.com> 6.0-8.20170212
c73763
- update to 6.0-20170212
c73763
c73763
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-7.20160709
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c73763
c73763
* Tue Jul 19 2016 Miroslav Lichvar <mlichvar@redhat.com> 6.0-6.20160709
c73763
- update to 6.0-20160709
c73763
c73763
* Fri Apr 08 2016 Yaakov Selkowitz <yselkowi@redhat.com> 6.0-5.20160116
c73763
- separate ncurses-c++-libs subpackage (#1324575)
c73763
c73763
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-4.20160116
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c73763
c73763
* Tue Jan 26 2016 Miroslav Lichvar <mlichvar@redhat.com> 6.0-3.20160116
c73763
- make installed ncurses.h compatible with narrow-char libncurses (#1270534)
c73763
c73763
* Mon Jan 18 2016 Miroslav Lichvar <mlichvar@redhat.com> 6.0-2.20160116
c73763
- update to 6.0-20160116
c73763
c73763
* Thu Aug 13 2015 Miroslav Lichvar <mlichvar@redhat.com> 6.0-1.20150810
c73763
- update to 6.0-20150810
c73763
- build ABI 5 and ABI 6 libraries
c73763
- add compat-libs subpackage for ABI 5 libraries
c73763
- update rxvt-unicode terminfo
c73763
- don't include tests in devel documentation
c73763
c73763
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.9-21.20150214
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c73763
c73763
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 5.9-20.20150214
c73763
- Rebuilt for GCC 5 C++11 ABI change
c73763
c73763
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 5.9-19.20150214
c73763
- Rebuilt for Fedora 23 Change
c73763
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
c73763
c73763
* Fri Feb 20 2015 Miroslav Lichvar <mlichvar@redhat.com> 5.9-18.20150214
c73763
- update to 5.9-20150214
c73763
c73763
* Fri Sep 12 2014 Miroslav Lichvar <mlichvar@redhat.com> 5.9-17.20140906
c73763
- update to 5.9-20140906
c73763
c73763
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.9-16.20140323
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c73763
c73763
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 5.9-15.20140323
c73763
- fix license handling
c73763
c73763
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.9-14.20140323
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c73763
c73763
* Wed Mar 26 2014 Miroslav Lichvar <mlichvar@redhat.com> 5.9-13.20140323
c73763
- update to 20140323
c73763
c73763
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.9-12.20130511
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c73763
c73763
* Mon May 13 2013 Miroslav Lichvar <mlichvar@redhat.com> 5.9-11.20130511
c73763
- update to 20130511
c73763
c73763
* Mon Apr 15 2013 Miroslav Lichvar <mlichvar@redhat.com> 5.9-10.20130413
c73763
- update to 20130413
c73763
c73763
* Mon Mar 18 2013 Miroslav Lichvar <mlichvar@redhat.com> 5.9-9.20130316
c73763
- update to 20130316
c73763
- include shared ncurses C++ libraries (#911540)
c73763
c73763
* Wed Jan 30 2013 Miroslav Lichvar <mlichvar@redhat.com> 5.9-8.20130126
c73763
- update to 20130126
c73763
- clear scrollback buffer in clear (#815790)
c73763
- make -base and -term subpackages noarch
c73763
- make some dependencies arch-specific
c73763
c73763
* Thu Oct 18 2012 Miroslav Lichvar <mlichvar@redhat.com> 5.9-7.20121017
c73763
- update to 20121017
c73763
c73763
* Mon Oct 15 2012 Miroslav Lichvar <mlichvar@redhat.com> 5.9-6.20121013
c73763
- update to 20121013
c73763
- move st entries to -base
c73763
- remove obsolete macros
c73763
c73763
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.9-5.20120204
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c73763
c73763
* Wed Feb 08 2012 Miroslav Lichvar <mlichvar@redhat.com> 5.9-4.20120204
c73763
- move libs and terms to /usr
c73763
- update to patch 20120204
c73763
c73763
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.9-3.20110716
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c73763
c73763
* Mon Jul 18 2011 Miroslav Lichvar <mlichvar@redhat.com> 5.9-2.20110716
c73763
- update to patch 20110716
c73763
- update rxvt-unicode entry
c73763
c73763
* Tue Apr 05 2011 Miroslav Lichvar <mlichvar@redhat.com> 5.9-1
c73763
- update to 5.9
c73763
c73763
* Tue Mar 22 2011 Miroslav Lichvar <mlichvar@redhat.com> 5.8-2.20110319
c73763
- update to patch 20110319
c73763
c73763
* Wed Mar 02 2011 Miroslav Lichvar <mlichvar@redhat.com> 5.8-1
c73763
- update to 5.8
c73763
c73763
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.7-11.20101211
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c73763
c73763
* Mon Dec 13 2010 Miroslav Lichvar <mlichvar@redhat.com> 5.7-10.20101211
c73763
- update to patch 20101211
c73763
c73763
* Mon Nov 29 2010 Miroslav Lichvar <mlichvar@redhat.com> 5.7-9.20101128
c73763
- update to patch 20101128
c73763
- update rxvt-unicode entry (#653081)
c73763
c73763
* Wed Jul 14 2010 Miroslav Lichvar <mlichvar@redhat.com> 5.7-8.20100703
c73763
- update to patch 20100703
c73763
- add README to base subpackage
c73763
c73763
* Wed Feb 03 2010 Miroslav Lichvar <mlichvar@redhat.com> 5.7-7.20100130
c73763
- update to patch 20100130
c73763
- fix ncursesw5-config and pc files to use correct tinfo
c73763
c73763
* Mon Jan 25 2010 Miroslav Lichvar <mlichvar@redhat.com> 5.7-6.20100123
c73763
- update to patch 20100123
c73763
- remove AS_NEEDED from linker scripts
c73763
c73763
* Wed Jan 20 2010 Miroslav Lichvar <mlichvar@redhat.com> 5.7-5.20100116
c73763
- fix narrow/wide libtinfo compatibility
c73763
- fix wattrset macro to not produce warning with current gcc (#556645)
c73763
c73763
* Mon Jan 18 2010 Miroslav Lichvar <mlichvar@redhat.com> 5.7-4.20100116
c73763
- update to patch 20100116
c73763
- don't require -ltinfo when linking with --no-add-needed
c73763
c73763
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.7-3.20090207
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c73763
c73763
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.7-2.20090207
c73763
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c73763
c73763
* Tue Feb 10 2009 Miroslav Lichvar <mlichvar@redhat.com> 5.7-1.20090207
c73763
- update to 5.7, patch 20090207
c73763
- use default pcf in xterm description
c73763
- include NEWS
c73763
c73763
* Thu Oct 02 2008 Miroslav Lichvar <mlichvar@redhat.com> 5.6-20.20080927
c73763
- update to patch 20080927
c73763
c73763
* Wed Jul 23 2008 Miroslav Lichvar <mlichvar@redhat.com> 5.6-19.20080628
c73763
- rebuild with new gpm
c73763
c73763
* Mon Jul 07 2008 Miroslav Lichvar <mlichvar@redhat.com> 5.6-18.20080628
c73763
- update to patch 20080628
c73763
- move mlterm and screen.* entries to -base
c73763
- change kbs to ^? in rxvt and screen entries
c73763
c73763
* Mon May 26 2008 Miroslav Lichvar <mlichvar@redhat.com> 5.6-17.20080524
c73763
- update to patch 20080524
c73763
- force installing wide libtinfo
c73763
c73763
* Fri Mar 07 2008 Miroslav Lichvar <mlichvar@redhat.com> 5.6-16.20080301
c73763
- update to patch 20080301
c73763
- provide libtermcap.so (#428898)
c73763
- move all headers to /usr/include
c73763
- move libncursesw out of /usr
c73763
- make examples in documentation compilable (#436355)
c73763
c73763
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 5.6-15.20080112
c73763
- Autorebuild for GCC 4.3
c73763
c73763
* Tue Jan 15 2008 Miroslav Lichvar <mlichvar@redhat.com> 5.6-14.20080112
c73763
- obsolete libtermcap-devel (#428898)
c73763
c73763
* Mon Jan 14 2008 Miroslav Lichvar <mlichvar@redhat.com> 5.6-13.20080112
c73763
- update to patch 20080112
c73763
- make -libs, -base, -term subpackages
c73763
- obsolete termcap and libtermcap
c73763
- update urxvt entry
c73763
c73763
* Tue Oct 16 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-12.20070812
c73763
- allocate additional working buffers in new_field (#310071)
c73763
c73763
* Wed Oct 10 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-11.20070812
c73763
- don't write beyond field buffer in form driver (#310071)
c73763
c73763
* Thu Oct 04 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-10.20070812
c73763
- fix comp_hash string output
c73763
- avoid comparing padding in cchar_t structure
c73763
- remove gawk from buildrequires
c73763
c73763
* Thu Aug 23 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-9.20070812
c73763
- rebuild
c73763
- buildrequire gawk
c73763
c73763
* Mon Aug 13 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-8.20070812
c73763
- update to patch 20070812
c73763
c73763
* Wed Jun 13 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-7.20070612
c73763
- update to patch 20070612
c73763
c73763
* Thu Mar 08 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-6.20070303
c73763
- update to patch 20070303
c73763
- use one libtinfo for both libncurses and libncursesw
c73763
- shorten -devel description
c73763
c73763
* Mon Feb 19 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-5.20070217
c73763
- update to patch 20070217
c73763
- replace libcurses.so symlink with linker script (#228891)
c73763
c73763
* Mon Feb 12 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-4.20070210
c73763
- update to patch 20070210
c73763
- generate separate terminfo library
c73763
- move static libraries to -static subpackage
c73763
- avoid unnecessary linking with libdl 
c73763
c73763
* Tue Feb 06 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-3.20070203
c73763
- update to patch 20070203
c73763
- spec cleanup (#226188)
c73763
c73763
* Sun Jan 21 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-2.20070120
c73763
- update to patch 20070120
c73763
- don't depend on bash, drop resetall script
c73763
- include rxvt-unicode description
c73763
c73763
* Wed Jan 10 2007 Miroslav Lichvar <mlichvar@redhat.com> 5.6-1.20070106
c73763
- update to 5.6, patch 20070106
c73763
c73763
* Mon Dec 11 2006 Miroslav Lichvar <mlichvar@redhat.com> 5.5-27.20061209
c73763
- update to patch 20061209
c73763
- strip large tables from shared libraries, reduce number of relocations
c73763
- package utils linked with libncurses instead of libncursesw
c73763
- package only wide-character headers
c73763
c73763
* Thu Nov 30 2006 Miroslav Lichvar <mlichvar@redhat.com> 5.5-26.20060715
c73763
- move also hardlinked entries (#217750)
c73763
- search /etc/terminfo for local terminfo entries
c73763
c73763
* Mon Nov 27 2006 Miroslav Lichvar <mlichvar@redhat.com> 5.5-25.20060715
c73763
- move libncurses and some terminfo entries out of /usr
c73763
- drop console symlink and sparc terminfo entries
c73763
c73763
* Thu Aug 31 2006 Miroslav Lichvar <mlichvar@redhat.com> 5.5-24.20060715
c73763
- modify tgetstr to make screen happy (#202480)
c73763
- use CFLAGS when linking (#199369)
c73763
- change BuildRoot tag to comply with Fedora packaging guidelines
c73763
c73763
* Wed Aug 16 2006 Miroslav Lichvar <mlichvar@redhat.com> 5.5-23.20060715
c73763
- fix another crash in tgetent (#202480)
c73763
c73763
* Mon Jul 17 2006 Miroslav Lichvar <mlichvar@redhat.com> 5.5-22.20060715
c73763
- update to patch 20060715
c73763
- fix package summary (#197655)
c73763
c73763
* Sat Jul 08 2006 Miroslav Lichvar <mlichvar@redhat.com> 5.5-21
c73763
- fix crash in tgetent (#198032)
c73763
c73763
* Fri Jul 07 2006 Miroslav Lichvar <mlichvar@redhat.com> 5.5-20
c73763
- update to patch 20060701
c73763
- don't strip libraries, chmod +x them
c73763
- move .so links to devel package
c73763
- add gpm-devel to buildrequires
c73763
- spec cleanup
c73763
c73763
* Mon Feb 27 2006 Miroslav Lichvar <mlichvar@redhat.com> - 5.5-19
c73763
- avoid comparing padding in cchar_t structure (#182024)
c73763
c73763
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 5.5-18.2
c73763
- bump again for double-long bug on ppc(64)
c73763
c73763
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 5.5-18.1
c73763
- rebuilt for new gcc4.1 snapshot and glibc changes
c73763
c73763
* Tue Jan 31 2006 Jindrich Novy <jnovy@redhat.com> 5.5-18
c73763
- add --with-chtype=long to avoid type clashes on x86_64 (#178824)
c73763
- spec cleanup
c73763
c73763
* Fri Jan 27 2006 Petr Raszyk <praszyk@redhat.com> 5.5-17
c73763
- Rebuild.
c73763
c73763
* Fri Jan 27 2006 Petr Raszyk <praszyk@redhat.com> 5.5-11
c73763
- According Henrik Nordstrom (hno@squid-cache.org)
c73763
  Diff between the two versions of curses.h on x86_64
c73763
  Patch ncurses-5.5-chtypeaslong2.patch
c73763
  See #178824
c73763
c73763
* Fri Dec 23 2005 Petr Raszyk <praszyk@redhat.com> 5.5-10
c73763
- Rebuild.
c73763
c73763
* Thu Dec 22 2005 Jindrich Novy <jnovy@redhat.com> 5.5-9
c73763
- helped Petr to strip libs. 
c73763
c73763
* Thu Dec 22 2005 Petr Raszyk <praszyk@redhat.com> 5.5-8
c73763
- Strip *.so libs.
c73763
c73763
* Wed Dec 21 2005 Petr Raszyk <praszyk@redhat.com> 5.5-1
c73763
- Upgrade to ncurses 5.5
c73763
c73763
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
c73763
- rebuilt for new gcj
c73763
c73763
* Thu Dec 1 2005 Petr Raszyk <praszyk@redhat.com> 5.4-23
c73763
- Rebuild.
c73763
c73763
* Thu Dec 1 2005 Petr Raszyk <praszyk@redhat.com> 5.4-22
c73763
- Rebuild.
c73763
c73763
* Thu Dec 1 2005 Petr Raszyk <praszyk@redhat.com> 5.4-21
c73763
- Clear window after: filter()+'terminal-resizing'+endwin()
c73763
  doupdate()+endwin()
c73763
  See bug #174498, patch ncurses-5.4-endwinfilter.patch
c73763
c73763
* Fri Nov 18 2005 Bill Nottingham <notting@redhat.com> 5.4-20
c73763
- fix location for resize in ncurses-resetall.sh
c73763
c73763
* Fri Sep 30 2005 5.4-19 <praszyk@redhat.com> 5.4-19
c73763
- Clear window after: filter()+initscr()+endwin()+refresh()
c73763
  See bug #2966, patch ncurses-5.4-filter.patch
c73763
c73763
* Wed Aug 03 2005 Karsten Hopp <karsten@redhat.de> 5.4-18
c73763
- rebuild with new rpm
c73763
c73763
* Wed Apr 27 2005 Petr Rockai <prockai@redhat.com> - 5.4-17
c73763
- apply patch from Hans de Goede, fixing BR142659 [The
c73763
  terminfo data for kbs changed from \177 to ^H]
c73763
c73763
* Sun Mar 06 2005 Petr Rockai <prockai@redhat.com>
c73763
- rebuild
c73763
c73763
* Thu Jan 27 2005 Adrian Havill <havill@redhat.com> 5.4-15
c73763
- update to newest jumbo monthly patch + weeklies, fixing
c73763
  new line cursor move problem (#140326)
c73763
c73763
* Thu Oct 21 2004 Adrian Havill <havill@redhat.com> 5.4-14
c73763
- escape rpm macros in the changelog (#135408)
c73763
c73763
* Tue Aug 31 2004 Adrian Havill <havill@redhat.com> 5.4-13
c73763
- term.sh can't detect CJK environment; revert
c73763
- gt 2.7 behaves better with xterm-new
c73763
c73763
* Tue Aug  3 2004 Adrian Havill <havill@redhat.com> 5.4-12
c73763
- make xterm same as xterm-r6
c73763
- detect for "dumb" in term.sh
c73763
c73763
* Thu Jul 29 2004 Adrian Havill <havill@redhat.com> 5.4-11
c73763
- add latest rollup patches and weekly patches
c73763
- remove home/end patch, which is now included in latest
c73763
  terminfo.src and termcap.src
c73763
- add term.sh to /etc/profile.d, reference in /etc/bashrc
c73763
- modify term.sh to support rxvt (#122815 comment 93)
c73763
c73763
* Thu Jul 08 2004 Adrian Havill <havill@redhat.com> 5.4-10
c73763
- add home/end mappings to gnome definition (#122815)
c73763
c73763
* Tue Jul 06 2004 Adrian Havill <havill@redhat.com> 5.4-9.fc3
c73763
- n-v-r
c73763
c73763
* Tue Jul 06 2004 Adrian Havill <havill@redhat.com> 5.4-9.fc2
c73763
- n-v-r
c73763
c73763
* Tue Jul 06 2004 Adrian Havill <havill@redhat.com> 5.4-9
c73763
- remove terminfo try-to-please-all xterm hackery; it's now ptty
c73763
  and profile's job to point to the correct terminal. (#122815)
c73763
c73763
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
c73763
- rebuilt
c73763
c73763
* Sun May 30 2004 Florian La Roche <Florian.LaRoche@redhat.de>
c73763
- remove ncurses-c++-devel rpm, all files are also part of ncurses-devel
c73763
c73763
* Sat May 29 2004 Joe Orton <jorton@redhat.com> 5.4-6
c73763
- fix xterm terminfo entry (Hans de Geode, #122815)
c73763
c73763
* Thu May 06 2004 Adrian Havill <havill@redhat.com> 5.4-5
c73763
- remove --with-gpm from configure, as it adds a pkg
c73763
  dependency (#122336) and causes too many problems vs its benefits
c73763
c73763
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
c73763
- rebuilt
c73763
c73763
* Thu Feb 26 2004 Adrian Havill <havill@redhat.com> 5.4-3
c73763
- xterm-color is wrong for rh; inverted bs/del (#115499)
c73763
c73763
* Wed Feb 25 2004 Adrian Havill <havill@redhat.com> 5.4-3
c73763
- link "xterm" to "xterm-color" as temp fix for escape problem (#115448)
c73763
- remove old zcat for PATCH1
c73763
c73763
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
c73763
- rebuilt
c73763
c73763
* Tue Feb 10 2004 Adrian Havill <havill@redhat.com> 5.4-1
c73763
- version update to 5.4
c73763
c73763
* Thu Jan 29 2004 Adrian Havill <havill@redhat.com> 5.3-10
c73763
- add /usr/include/ncursesw (#112979)
c73763
- allow for non-gzipped man pages during the build process
c73763
c73763
* Sun Sep 21 2003 Matt Wilson <msw@redhat.com> 5.3-9.3
c73763
- remove the elf32/elf64 provides/obsoletes
c73763
c73763
* Wed Sep 17 2003 Matt Wilson <msw@redhat.com> 5.3-9.2
c73763
- rebuild to fix gzipped file md5sums (#91211)
c73763
c73763
* Thu Sep 11 2003 Adrian Havill <havill@redhat.com> 5.3-9.1
c73763
- RHEL bump
c73763
c73763
* Thu Sep 11 2003 Adrian Havill <havill@redhat.com> 5.3-9
c73763
- remove not-so safe-sprintf configure option because the code does
c73763
  not appear to be stable enough for some apps. (#103790)
c73763
c73763
* Wed Aug 20 2003 Adrian Havill <havill@redhat.com> 5.3-8.1
c73763
- RHEL bump
c73763
c73763
* Wed Aug 20 2003 Adrian Havill <havill@redhat.com> 5.3-8
c73763
- multilib patch (#91211)
c73763
c73763
* Mon Aug 11 2003 Adrian Havill <havill@redhat.com> 5.3-7
c73763
- fixed the safe sprintf code that was enabled in the previous release
c73763
  by the configure parameter. (#101486)
c73763
c73763
* Mon Jun 16 2003 Elliot Lee <sopwith@redhat.com> 5.3-6.1
c73763
- Fix ac25 patch, make it easy to turn off GPM support
c73763
c73763
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
c73763
- rebuilt
c73763
c73763
* Thu May 22 2003 Adrian Havill <havill@redhat.com> 5.3-5
c73763
- added latest rollup patch with widec/UTF8 centric weekly (20030517)
c73763
- added --enable-widec to configure (#86311)
c73763
  original work done by Mr. Sam <sam@email-scan.com>
c73763
- require sharutils (#86605)
c73763
- add gpm, xmc support
c73763
- add debug syms back into package
c73763
- updated autoconf/configure patch
c73763
c73763
* Thu Feb  6 2003 Bill Nottingham <notting@redhat.com> 5.3-4
c73763
- fix debuginfo package
c73763
c73763
* Fri Jan 31 2003 Adrian Havill <havill@redhat.com> 5.3-3
c73763
- remunged xterm changes from 5.2 patch for 5.3
c73763
- updated screen entry (#82951)
c73763
- fixed ka3, kb2 and kf0 entries (#77506)
c73763
c73763
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
c73763
- rebuilt
c73763
c73763
* Wed Jan 22 2003 Adrian Havill <havill@redhat.com> 5.3-1
c73763
- upgrade to 5.3 for sake of utf-8, wide chars (#77585 ...)
c73763
- spec file summary/desc grammar (#73583)
c73763
- add Requires: for c++ devel subpkg (#74002)
c73763
- terminfo.src patches no longer needed
c73763
- adjust autoconf patch
c73763
c73763
* Thu Dec 05 2002 Elliot Lee <sopwith@redhat.com> 5.2-29
c73763
- Merge in multilib fixes
c73763
c73763
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
c73763
- automated rebuild
c73763
c73763
* Thu May 23 2002 Tim Powers <timp@redhat.com>
c73763
- automated rebuild
c73763
c73763
* Mon Apr  8 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-26
c73763
- Remove duplicated files (#62752)
c73763
- Don't strip libraries (#60398)
c73763
- Remove cbt capability from xterm description (#61077)
c73763
c73763
* Mon Feb 25 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-25
c73763
- Remove bogus man pages
c73763
- Remove bool hack, it breaks make menuconfig
c73763
c73763
* Fri Feb 22 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-24
c73763
- Rebuild for glibc 2.3/gcc 3.1
c73763
c73763
* Fri Feb 22 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-23
c73763
- Put the bool type back in for !c++, but leave TRUE/FALSE out
c73763
c73763
* Thu Feb 21 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-21
c73763
- Don't define TRUE/FALSE etc., we don't care about SVR4 compliance and
c73763
  it breaks building gdb
c73763
c73763
* Thu Feb 21 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-20
c73763
- Rebuild for glibc 2.3/gcc 3.1
c73763
c73763
* Thu Feb 21 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-19
c73763
- Patchlevel 20020218
c73763
- Re-add %%{_includedir}/ncurses.h (#60169)
c73763
c73763
* Tue Feb 12 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-18
c73763
- Add C++ bindings (#59751)
c73763
c73763
* Tue Feb 12 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-17
c73763
- Patchlevel 20020209
c73763
- Fix zero-substitution of cf_cv_type_of_bool (#59450)
c73763
- Fix rebuilding of configure script with autoconf 2.5x
c73763
c73763
* Thu Jan 31 2002 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-16
c73763
- Patchlevel 20020127
c73763
c73763
* Tue Nov 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-14
c73763
- Patchlevel 20011124
c73763
c73763
* Thu Sep 13 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-13
c73763
- Sync with patchlevel 20010908
c73763
c73763
* Fri Jul 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-12
c73763
- Sync terminfo with termcap 11.0.1-10
c73763
c73763
* Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-11
c73763
- Update to patchlevel 20010623, fixes some lynx issues
c73763
c73763
* Mon Jun 18 2001 Helge Deller <hdeller@redhat.de>
c73763
- fixed tput -S segfaulting bug (#44669)
c73763
- use _tmppath for BuildRoot:
c73763
- Copyright -> License
c73763
c73763
* Sun Apr 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- Update to patchlevel 20010407
c73763
c73763
* Tue Mar  6 2001 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- Fix up some terminfo entries containing includes to
c73763
  "/var/tmp/ncurses-root/something" (#30771)
c73763
c73763
* Thu Feb 22 2001 Harald Hoyer <harald@redhat.de>
c73763
- fixed rxvt backspace setting
c73763
c73763
* Fri Feb  9 2001 Yukihiro Nakai <ynakai@redhat.com>
c73763
- Update Japanese kterm patch
c73763
c73763
* Mon Jan 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- Update
c73763
- Add japanese patch from termcap
c73763
- Fix ospeed handling
c73763
c73763
* Mon Jan  1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- Add libcurses.a -> libncurses.a symlink (RFE #23023)
c73763
c73763
* Tue Dec 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- Use --with-ospeed='unsigned int'
c73763
c73763
* Fri Nov 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- Fix alpha and ia64
c73763
- Rebuild with gcc 2.96-64
c73763
c73763
* Thu Nov  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- 5.2
c73763
- Fix typo in man page (Bug #20205)
c73763
- update the "screen" terminfo entries to the version supplied with
c73763
  screen 3.9.8
c73763
c73763
* Mon Oct  9 2000 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- Update (fixes the "make menuconfig" bug introduced by the security fix)
c73763
c73763
* Tue Oct  3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- Fix security problem (possible buffer overrun)
c73763
c73763
* Fri Aug  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- Add the bugfix patches from the ncurses maintainer
c73763
c73763
* Thu Jul 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- 5.1
c73763
c73763
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
c73763
- automatic rebuild
c73763
c73763
* Mon Jun  5 2000 Matt Wilson <msw@redhat.com>
c73763
- *don't ship symlinks from lib*.so.5 to lib*.so.4!
c73763
- use FHS macros
c73763
c73763
* Fri Jun  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- rebuild for 7.0
c73763
- /usr/share/man
c73763
- update URL for patches
c73763
- misc. fixes to spec file
c73763
c73763
* Mon Mar 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- use the real library version number
c73763
- update to 20000319
c73763
c73763
* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
c73763
- rebuild for sparc baud rates > 38400.
c73763
c73763
* Fri Feb 18 2000 Preston Brown <pbrown@redhat.com>
c73763
- xterm terminfo entries from XFree86 3.3.6
c73763
- final round of xterm fixes, follow debian policy.
c73763
c73763
* Sat Feb  5 2000 Bernhard Rosenkränzer <bero@redhat.com>
c73763
- strip libraries
c73763
c73763
* Thu Feb  3 2000 Bernhard Rosenkränzer <bero@redhat.com>
c73763
- More xterm fixes (Bug #9087)
c73763
c73763
* Thu Jan 27 2000 Bernhard Rosenkränzer <bero@redhat.com>
c73763
- More xterm fixes from Hans de Goede (Bug #8633)
c73763
c73763
* Sat Jan 15 2000 Bernhard Rosenkränzer <bero@redhat.com>
c73763
- remove some broken symlinks (leftovers from libncurses.so.5)
c73763
- Use %%configure (Bug #8484)
c73763
c73763
* Tue Jan 11 2000 Bernhard Rosenkränzer <bero@redhat.com>
c73763
- Add xterm patch from Hans de Goede <hans@highrise.nl>
c73763
- Patch 20000108, this fixes a problem with a header file.
c73763
c73763
* Wed Jan  5 2000 Bernhard Rosenkränzer <bero@redhat.com>
c73763
- Add 20000101 patch, hopefully finally fixing the xterm description
c73763
c73763
* Wed Dec 22 1999 Cristian Gafton <gafton@redhat.com>
c73763
- revert to the old major number - because the ABI is not changed (and we
c73763
  should be handling the changes via symbol versioning anyway)
c73763
c73763
* Fri Nov 12 1999 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- Fix a typo in spec
c73763
- Add the 19991006 patch, fixing some C++ STL compatibility problems.
c73763
- get rid of profiling and debugging versions - we need to save space...
c73763
c73763
* Thu Nov  4 1999 Bernhard Rosenkraenzer <bero@redhat.com>
c73763
- 5.0
c73763
- some spec cleanups to make updating easier
c73763
- add links *.so.5 to *.so.4 - they are fully binary compatible.
c73763
  (Why did they change the invocation number???)
c73763
c73763
* Wed Sep 22 1999 Cristian Gafton <gafton@redhat.com>
c73763
- make clean in the test dir - don't ship any binaries at all.
c73763
c73763
* Mon Sep 13 1999 Preston Brown <pbrown@redhat.com>
c73763
- fixed stripping of test programs.
c73763
c73763
* Sun Aug 29 1999 Preston Brown <pbrown@redhat.com>
c73763
- removed 'flash' capability for xterm; see bug #2820 for details.
c73763
c73763
* Fri Aug 27 1999 Cristian Gafton <gafton@redhat.com>
c73763
- add the resetall script from Marc Merlin <marc@merlins.org>
c73763
c73763
* Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
c73763
- added iris-ansi-net as alias for iris-ansi (bug #2561)
c73763
c73763
* Fri Jul 30 1999 Michael K. Johnson <johnsonm@redhat.com>
c73763
- added ncurses-intro.hmtl and hackguide.html to -devel package [bug #3929]
c73763
c73763
* Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
c73763
- make sure ALL binaries are stripped (incl. test binaries)
c73763
c73763
* Thu Mar 25 1999 Preston Brown <pbrown@redhat.com>
c73763
- made xterm terminfo stuff MUCH better.
c73763
c73763
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
c73763
- auto rebuild in the new build environment (release 16)
c73763
c73763
* Sat Mar 13 1999 Cristian Gafton <gafton@redhat.com>
c73763
- fixed header for C++ compiles
c73763
c73763
* Fri Mar 12 1999 Jeff Johnson <jbj@redhat.com>
c73763
- add terminfo entries for linux/linux-m on sparc (obsolete termfile_sparc).
c73763
c73763
* Thu Feb 18 1999 Cristian Gafton <gafton@redhat.com>
c73763
- updated patchset from original site
c73763
c73763
* Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
c73763
- don't build the C++ demo code
c73763
- update patch set to the current as of today (redid all the individual
c73763
  patches in a single one)
c73763
c73763
* Wed Oct 14 1998 Cristian Gafton <gafton@redhat.com>
c73763
- make sure to strip the binaries
c73763
c73763
* Wed Sep 23 1998 Cristian Gafton <gafton@redhat.com>
c73763
- added another zillion of patches. The spec file *is* ugly
c73763
- defattr
c73763
c73763
* Mon Jul 20 1998 Cristian Gafton <gafton@redhat.com>
c73763
- added lots of patches. This spec file is starting to look ugly
c73763
c73763
* Wed Jul 01 1998 Alan Cox <alan@redhat.com>
c73763
- Fix setuid trusting. Open termcap/info files as the real user.
c73763
c73763
* Wed May 06 1998 Cristian Gafton <gafton@redhat.com>
c73763
- added terminfo entry for the poor guys using lat1 and/or lat-2 on their
c73763
  consoles... Enjoy linux-lat ! Thanks, Erik !
c73763
c73763
* Tue Apr 21 1998 Cristian Gafton <gafton@redhat.com>
c73763
- new patch to get xterm-color and nxterm terminfo entries
c73763
- aliased them to rxvt, as that seems to satisfy everybody
c73763
c73763
* Sun Apr 12 1998 Cristian Gafton <gafton@redhat.com>
c73763
- added %%clean section
c73763
c73763
* Tue Apr 07 1998 Cristian Gafton <gafton@redhat.com>
c73763
- removed /usr/lib/terminfo symlink - we shouldn't need that
c73763
c73763
* Mon Apr 06 1998 Cristian Gafton <gafton@redhat.com>
c73763
- updated to 4.2 + patches
c73763
- added BuildRoot
c73763
c73763
* Sat Apr 04 1998 Cristian Gafton <gafton@redhat.com>
c73763
- rebuilt with egcs on alpha
c73763
c73763
* Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
c73763
- version 7 didn't rebuild properly on the Alpha somehow -- no real changes
c73763
  are in this version
c73763
c73763
* Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
c73763
- TIOCGWINSZ wasn't used properly
c73763
c73763
* Tue Jul 08 1997 Erik Troan <ewt@redhat.com>
c73763
- built against glibc, linked shared libs against -lc
c73763