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