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