Blame SPECS/slang.spec

c2aa0d
%if 0%{?fedora:1}
c2aa0d
%bcond_without oniguruma
c2aa0d
%else
c2aa0d
%bcond_with oniguruma
c2aa0d
%endif
c2aa0d
c2aa0d
Summary:	The shared library for the S-Lang extension language
c2aa0d
Name:		slang
c2aa0d
Version:	2.3.2
c2aa0d
Release:	3%{?dist}
c2aa0d
License:	GPLv2+
c2aa0d
URL:		https://www.jedsoft.org/slang/
c2aa0d
Source:		https://www.jedsoft.org/releases/%{name}/%{name}-%{version}.tar.bz2
c2aa0d
# don't use memcpy() on overlapping buffers
c2aa0d
Patch1:		slang-getkey-memmove.patch
c2aa0d
# disable test that fails with SIGHUP ignored (e.g. in koji)
c2aa0d
Patch2:		slang-sighuptest.patch
c2aa0d
BuildRequires:	gcc libpng-devel pcre-devel zlib-devel
c2aa0d
%{?with_oniguruma:BuildRequires: oniguruma-devel}
c2aa0d
# static removed in 2.3.1a-3
c2aa0d
Obsoletes:	 slang-static < 2.3.1a-3
c2aa0d
c2aa0d
%description
c2aa0d
S-Lang is an interpreted language and a programming library.  The
c2aa0d
S-Lang language was designed so that it can be easily embedded into
c2aa0d
a program to provide the program with a powerful extension language.
c2aa0d
The S-Lang library, provided in this package, provides the S-Lang
c2aa0d
extension language.  S-Lang's syntax resembles C, which makes it easy
c2aa0d
to recode S-Lang procedures in C if you need to.
c2aa0d
c2aa0d
%package slsh
c2aa0d
Summary:	Interpreter for S-Lang scripts
c2aa0d
Requires:	%{name}%{?_isa} = %{version}-%{release}
c2aa0d
c2aa0d
%description slsh
c2aa0d
slsh (slang-shell) is a program for interpreting S-Lang scripts. 
c2aa0d
It supports dynamic loading of S-Lang modules and includes a readline
c2aa0d
interface for interactive use.
c2aa0d
c2aa0d
This package also includes S-Lang modules that are distributed with
c2aa0d
the S-Lang distribution.
c2aa0d
c2aa0d
%package devel
c2aa0d
Summary:	Development files for the S-Lang extension language
c2aa0d
Requires:	%{name}%{?_isa} = %{version}-%{release}
c2aa0d
c2aa0d
%description devel
c2aa0d
This package contains files which you'll need if you want to
c2aa0d
develop S-Lang based applications.  Documentation which may help
c2aa0d
you write S-Lang based applications is also included.
c2aa0d
c2aa0d
Install the slang-devel package if you want to develop applications
c2aa0d
based on the S-Lang extension language.
c2aa0d
c2aa0d
%prep
c2aa0d
%setup -q
c2aa0d
%patch1 -p1 -b .getkey-memmove
c2aa0d
%patch2 -p1 -b .sighuptest
c2aa0d
c2aa0d
# fix permissions of installed modules
c2aa0d
sed -i '/^INSTALL_MODULE=/s/_DATA//' configure
c2aa0d
c2aa0d
# disable test failing on 32-bit archs
c2aa0d
sed -i '/TEST_SCRIPTS_SLC = /s/array //' src/test/Makefile
c2aa0d
c2aa0d
%build
c2aa0d
%configure \
c2aa0d
	--with-{pcre,png,z}lib=%{_libdir} \
c2aa0d
	--with-{pcre,png,z}inc=%{_includedir} \
c2aa0d
%if %{with oniguruma}
c2aa0d
	--with-oniglib=%{_libdir} \
c2aa0d
	--with-oniginc=%{_includedir} \
c2aa0d
%endif
c2aa0d
;
c2aa0d
c2aa0d
# fails with %{?_smp_mflags}
c2aa0d
# install_doc_dir sets SLANG_DOC_DIR macro
c2aa0d
make RPATH="" install_doc_dir=%{_pkgdocdir} all
c2aa0d
c2aa0d
%install
c2aa0d
make install-all INSTALL="install -p" RPATH="" DESTDIR=$RPM_BUILD_ROOT
c2aa0d
rm -rf $RPM_BUILD_ROOT%{_docdir}/{slang,slsh}
c2aa0d
rm -f $RPM_BUILD_ROOT%{_libdir}/libslang.a
c2aa0d
c2aa0d
mkdir $RPM_BUILD_ROOT%{_includedir}/slang
c2aa0d
for h in slang.h slcurses.h; do
c2aa0d
	ln -s ../$h $RPM_BUILD_ROOT%{_includedir}/slang/$h
c2aa0d
done
c2aa0d
c2aa0d
%check
c2aa0d
make check
c2aa0d
c2aa0d
%ldconfig_scriptlets
c2aa0d
c2aa0d
%files
c2aa0d
%{!?_licensedir:%global license %%doc}
c2aa0d
%license COPYING
c2aa0d
%doc NEWS
c2aa0d
%{_libdir}/libslang*.so.2*
c2aa0d
c2aa0d
%files slsh
c2aa0d
%doc slsh/doc/html/slsh*.html
c2aa0d
%config(noreplace) %{_sysconfdir}/slsh.rc
c2aa0d
%{_bindir}/slsh
c2aa0d
%{_libdir}/slang
c2aa0d
%{_mandir}/man1/slsh.1*
c2aa0d
%{_datadir}/slsh
c2aa0d
c2aa0d
%files devel
c2aa0d
%doc doc/*/cslang*.txt doc/*/cref.txt doc/README doc/*/slang*.txt doc/*.txt
c2aa0d
%{_libdir}/libslang*.so
c2aa0d
%{_libdir}/pkgconfig/slang.pc
c2aa0d
%{_includedir}/sl*.h
c2aa0d
%{_includedir}/slang
c2aa0d
c2aa0d
%changelog
c2aa0d
* Fri Jul 27 2018 Miroslav Lichvar <mlichvar@redhat.com> - 2.3.2-3
c2aa0d
- don't use memcpy() on overlapping buffers (#1607024)
c2aa0d
c2aa0d
* Sun Apr 01 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.3.2-2
c2aa0d
- Rebuild against oniguruma 6.8.1
c2aa0d
c2aa0d
* Mon Mar 05 2018 Miroslav Lichvar <mlichvar@redhat.com> - 2.3.2-1
c2aa0d
- update to 2.3.2
c2aa0d
- add gcc to build requirements
c2aa0d
- include soname in file list
c2aa0d
c2aa0d
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.2-0.2.pre20
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c2aa0d
c2aa0d
* Thu Feb 01 2018 Miroslav Lichvar <mlichvar@redhat.com> - 2.3.2-0.1.pre20
c2aa0d
- update to 2.3.2-pre20
c2aa0d
- drop unnecessary macro
c2aa0d
- use macro for ldconfig scriptlets
c2aa0d
c2aa0d
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1a-5
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c2aa0d
c2aa0d
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1a-4
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c2aa0d
c2aa0d
* Wed Mar 29 2017 Miroslav Lichvar <mlichvar@redhat.com> - 2.3.1a-3
c2aa0d
- drop static subpackage (#1436909)
c2aa0d
- remove Group tags and indent spec (#1436909)
c2aa0d
c2aa0d
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1a-2
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c2aa0d
c2aa0d
* Wed Feb 01 2017 Miroslav Lichvar <mlichvar@redhat.com> - 2.3.1a-1
c2aa0d
- update to 2.3.1a
c2aa0d
c2aa0d
* Mon Oct 31 2016 Miroslav Lichvar <mlichvar@redhat.com> - 2.3.1-1
c2aa0d
- update to 2.3.1
c2aa0d
c2aa0d
* Sun Oct 30 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.3.0-7
c2aa0d
- Rebuild for oniguruma 6.1.1
c2aa0d
c2aa0d
* Mon Jul 18 2016 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.3.0-6
c2aa0d
- Rebuild for oniguruma 6
c2aa0d
c2aa0d
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-5
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c2aa0d
c2aa0d
* Sun Aug  2 2015 Peter Robinson <pbrobinson@fedoraproject.org> 2.3.0-4
c2aa0d
- Use %%license
c2aa0d
- Don't ship NEWS and Changlog
c2aa0d
- Ship developer docs in -devel
c2aa0d
c2aa0d
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-3
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c2aa0d
c2aa0d
* Fri Mar 20 2015 Miroslav Lichvar <mlichvar@redhat.com> - 2.3.0-2
c2aa0d
- remove duplicate declaration in slang.h (#1203896)
c2aa0d
c2aa0d
* Wed Dec 10 2014 Miroslav Lichvar <mlichvar@redhat.com> - 2.3.0-1
c2aa0d
- update to 2.3.0
c2aa0d
c2aa0d
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.4-13
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c2aa0d
c2aa0d
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.4-12
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c2aa0d
c2aa0d
* Wed Aug 07 2013 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.4-11
c2aa0d
- use _pkgdocdir if available (#994097)
c2aa0d
- build static objects in build section
c2aa0d
- make some dependencies arch-specific
c2aa0d
c2aa0d
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.4-10
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c2aa0d
c2aa0d
* Fri Apr 05 2013 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.4-9
c2aa0d
- add support for aarch64 (#926541)
c2aa0d
c2aa0d
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.4-8
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
c2aa0d
c2aa0d
* Thu Jan 24 2013 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.4-7
c2aa0d
- fix building without oniguruma
c2aa0d
c2aa0d
* Thu Jan 24 2013 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.4-6
c2aa0d
- buildrequire oniguruma-devel only on Fedora
c2aa0d
- run test suite
c2aa0d
- remove obsolete macros
c2aa0d
c2aa0d
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.4-5
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c2aa0d
c2aa0d
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 2.2.4-4
c2aa0d
- Rebuild against PCRE 8.30
c2aa0d
c2aa0d
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.4-3
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c2aa0d
c2aa0d
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 2.2.4-2
c2aa0d
- Rebuild for new libpng
c2aa0d
c2aa0d
* Mon Apr 11 2011 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.4-1
c2aa0d
- update to 2.2.4
c2aa0d
c2aa0d
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.3-2
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c2aa0d
c2aa0d
* Mon Dec 13 2010 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.3-1
c2aa0d
- update to 2.2.3
c2aa0d
c2aa0d
* Mon Nov 08 2010 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.2-3
c2aa0d
- fix libdir in pkgconfig file (#650373)
c2aa0d
c2aa0d
* Wed Jul 21 2010 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.2-2
c2aa0d
- move headers to /usr/include (#609977)
c2aa0d
c2aa0d
* Mon Dec 07 2009 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.2-1
c2aa0d
- update to 2.2.2
c2aa0d
c2aa0d
* Mon Sep 07 2009 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.1-1
c2aa0d
- update to 2.2.1
c2aa0d
c2aa0d
* Mon Aug 03 2009 Miroslav Lichvar <mlichvar@redhat.com> - 2.2.0-1
c2aa0d
- update to 2.2.0
c2aa0d
c2aa0d
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.4-4
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c2aa0d
c2aa0d
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.4-3
c2aa0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c2aa0d
c2aa0d
* Fri Dec 12 2008 Miroslav Lichvar <mlichvar@redhat.com> - 2.1.4-2
c2aa0d
- convert changes.txt to UTF-8, comment patches (#226420)
c2aa0d
c2aa0d
* Mon Sep 08 2008 Miroslav Lichvar <mlichvar@redhat.com> - 2.1.4-1
c2aa0d
- update to 2.1.4
c2aa0d
c2aa0d
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.1.3-3
c2aa0d
- Autorebuild for GCC 4.3
c2aa0d
c2aa0d
* Thu Jan 24 2008 Miroslav Lichvar <mlichvar@redhat.com> - 2.1.3-2
c2aa0d
- drop lang patch
c2aa0d
- build oniguruma module (#226420)
c2aa0d
c2aa0d
* Mon Nov 05 2007 Miroslav Lichvar <mlichvar@redhat.com> - 2.1.3-1
c2aa0d
- update to 2.1.3
c2aa0d
c2aa0d
* Tue Sep 25 2007 Miroslav Lichvar <mlichvar@redhat.com> - 2.1.2-2
c2aa0d
- fix integer underflow in compute_hash (#302181)
c2aa0d
- fix SLang_set_error when called from signal handler (#297661)
c2aa0d
c2aa0d
* Mon Sep 17 2007 Miroslav Lichvar <mlichvar@redhat.com> - 2.1.2-1
c2aa0d
- update to 2.1.2
c2aa0d
c2aa0d
* Thu Aug 23 2007 Miroslav Lichvar <mlichvar@redhat.com> - 2.1.1-2
c2aa0d
- update license tag
c2aa0d
- buildrequire gawk
c2aa0d
c2aa0d
* Mon Jul 09 2007 Miroslav Lichvar <mlichvar@redhat.com> - 2.1.1-1
c2aa0d
- update to 2.1.1
c2aa0d
c2aa0d
* Fri Jun 15 2007 Miroslav Lichvar <mlichvar@redhat.com> - 2.1.0-1
c2aa0d
- update to 2.1.0
c2aa0d
- create -slsh subpackage for slsh and modules
c2aa0d
c2aa0d
* Mon Feb 19 2007 Miroslav Lichvar <mlichvar@redhat.com> - 2.0.7-2
c2aa0d
- ignore background color of trailing spaces if terminal has bce (#217276)
c2aa0d
- move static library to -static subpackage
c2aa0d
- spec cleanup
c2aa0d
c2aa0d
* Mon Nov 06 2006 Miroslav Lichvar <mlichvar@redhat.com> - 2.0.7-1
c2aa0d
- update to 2.0.7
c2aa0d
c2aa0d
* Wed Jul 12 2006 Miroslav Lichvar <mlichvar@redhat.com> - 2.0.6-3
c2aa0d
- don't build unpackaged stuff
c2aa0d
- package just txt files from doc directory
c2aa0d
c2aa0d
* Tue May 23 2006 Peter Jones <pjones@redhat.com> - 2.0.6-2
c2aa0d
- put static lib back; it is required by anaconda
c2aa0d
c2aa0d
* Mon May 22 2006 Miroslav Lichvar <mlichvar@redhat.com> - 2.0.6-1
c2aa0d
- update to slang-2.0.6
c2aa0d
- move .so.2 link to main package
c2aa0d
- don't package static library and utf8 link
c2aa0d
- remove requires for libtool and libtermcap
c2aa0d
- rearrange doc files (#191583)
c2aa0d
c2aa0d
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.0.5-5.2.1
c2aa0d
- bump again for double-long bug on ppc(64)
c2aa0d
c2aa0d
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.0.5-5.2
c2aa0d
- rebuilt for new gcc4.1 snapshot and glibc changes
c2aa0d
c2aa0d
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
c2aa0d
- rebuilt
c2aa0d
c2aa0d
* Fri Dec 2 2005 Petr Raszyk <praszyk@redhat.com> - 2.0.5-5
c2aa0d
- A patch by Bill Nottingham <notting@redhat.com>
c2aa0d
  (#174761). slang-LANG.patch
c2aa0d
  slang reads automatically sh-env-variable LANG.
c2aa0d
c2aa0d
* Mon Nov 21 2005 Petr Raszyk <praszyk@redhat.com> - 2.0.5-3
c2aa0d
- Rebuild.
c2aa0d
c2aa0d
* Mon Nov 21 2005 Petr Raszyk <praszyk@redhat.com> - 2.0.5-1
c2aa0d
- Upgrade to slang 20005.
c2aa0d
- (#161536). slang-nointerlibc2.patch
c2aa0d
- slang-makefile.patch
c2aa0d
c2aa0d
* Mon Oct 24 2005 Petr Raszyk <praszyk@redhat.com> - 1.4.9-23
c2aa0d
- rebuild
c2aa0d
c2aa0d
* Mon Oct 24 2005 Petr Raszyk <praszyk@redhat.com> - 1.4.9-22
c2aa0d
- libslang-utf8.so should not use the symbol __libc_enable_secure 
c2aa0d
- (#161536). slang-nointerlibc.patch
c2aa0d
- Additional some comments/hints for C-Frame 121
c2aa0d
c2aa0d
* Sun Oct 16 2005 Florian La Roche <laroche@redhat.com>
c2aa0d
- set _filter_GLIBC_PRIVATE
c2aa0d
c2aa0d
* Sun Oct 16 2005 Florian La Roche <laroche@redhat.com>
c2aa0d
- add exec perms to shared libs
c2aa0d
c2aa0d
* Mon Sep  5 2005 Petr Raszyk <praszyk@redhat.com> - 1.4.9-19
c2aa0d
- One line in the patch 'slang-utf8-acs.ptach' commented out (#138445). 
c2aa0d
c2aa0d
* Thu Aug 18 2005 Petr Raszyk <praszyk@redhat.com> - 1.4.9-18
c2aa0d
- Patch to resolve the problem with displaying the 'x' character
c2aa0d
  in the latin2 mode (#139127) 
c2aa0d
c2aa0d
* Fri Mar 18 2005 Petr Rockai <prockai@redhat.com> - 1.4.9-17
c2aa0d
- Patch to compile with gcc4 by Robert Scheck (#151029). (Weeird,
c2aa0d
  probably on march 2nd the used buildroot wasn't updated with
c2aa0d
  gcc4 yet?).
c2aa0d
c2aa0d
* Wed Mar 02 2005 Petr Rockai <prockai@redhat.com>
c2aa0d
- rebuild
c2aa0d
c2aa0d
* Mon Feb 14 2005 Adrian Havill <havill@redhat.com>
c2aa0d
- rebuilt
c2aa0d
c2aa0d
* Sun Aug 1 2004 Alan Cox <alan@redhat.com>
c2aa0d
- fixed requires so slang-devel pulls in libtermcap-devel (#125299)
c2aa0d
c2aa0d
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
c2aa0d
- rebuilt
c2aa0d
c2aa0d
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
c2aa0d
- rebuilt
c2aa0d
c2aa0d
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
c2aa0d
- rebuilt
c2aa0d
c2aa0d
* Fri Dec  5 2003 Jeremy Katz <katzj@redhat.com> 1.4.9-2
c2aa0d
- rebuild to fix libslang-utf8.so.1 symlink
c2aa0d
c2aa0d
* Tue Oct 28 2003 Adrian Havill <havill@redhat.com> 1.4.9-1
c2aa0d
- big upgrade to 1.4.9
c2aa0d
- manually redid partially rotted utf patch for sldisply.c
c2aa0d
- no longer necessary to chmod the so files
c2aa0d
- change copyright header to license
c2aa0d
c2aa0d
* Fri Jun 13 2003 Bill Nottingham <notting@redhat.com> 1.4.5-18
c2aa0d
- fix segfault in slcurses (#97216)
c2aa0d
c2aa0d
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
c2aa0d
- rebuilt
c2aa0d
c2aa0d
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
c2aa0d
- rebuilt
c2aa0d
c2aa0d
* Fri Feb 21 2003 Jakub Jelinek <jakub@redhat.com> 1.4.5-15
c2aa0d
- for ACS characters, take them as is, not through wcrtomb
c2aa0d
  and assume wcwidth returns 1 for them
c2aa0d
c2aa0d
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
c2aa0d
- rebuilt
c2aa0d
c2aa0d
* Sat Jan  4 2003 Jeff Johnson <jbj@redhat.com> 1.4.5-13
c2aa0d
- set execute bits on library so that requires are genereted.
c2aa0d
c2aa0d
* Wed Nov 27 2002 Tim Powers <timp@redhat.com> 1.4.5-12
c2aa0d
- remove unpackaged files from the buildroot
c2aa0d
- lib64'ize
c2aa0d
c2aa0d
* Wed Jul 24 2002 Bill Nottingham <notting@redhat.com> 1.4.5-11
c2aa0d
- fix write-before-beginning-of-string in SLsmg_write_nwchars
c2aa0d
c2aa0d
* Tue Jul  9 2002 Bill Nottingham <notting@redhat.com> 1.4.5-10
c2aa0d
- fix segfault in odd environments
c2aa0d
c2aa0d
* Mon Jul  8 2002 Bill Nottingham <notting@redhat.com> 1.4.5-9
c2aa0d
- tweak UTF-8 linedrawing patch slightly; add README describing some of
c2aa0d
  the changes
c2aa0d
- fix a utee/dtee typo
c2aa0d
c2aa0d
* Wed Jun 26 2002 Bill Nottingham <notting@redhat.com> 1.4.5-7
c2aa0d
- add patch to support ACS linedrawing characters in UTF-8
c2aa0d
c2aa0d
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
c2aa0d
- automated rebuild
c2aa0d
c2aa0d
* Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 1.4.5-5
c2aa0d
- removed keymap patch (#59171)
c2aa0d
- added Debian utf8 patch
c2aa0d
c2aa0d
* Thu May 23 2002 Tim Powers <timp@redhat.com>
c2aa0d
- automated rebuild
c2aa0d
c2aa0d
* Tue Mar  5 2002 Bill Nottingham <notting@redhat.com>
c2aa0d
- fix symlink & ia64 fubarness
c2aa0d
c2aa0d
* Mon Mar  4 2002 Bill Nottingham <notting@redhat.com>
c2aa0d
- update to 1.4.5
c2aa0d
c2aa0d
* Tue Jun 26 2001 Florian La Roche <Florian.LaRoche@redhat.de>
c2aa0d
- add link from library major version number
c2aa0d
c2aa0d
* Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
c2aa0d
- added patch to fix Alt/Meta key handling (originally from mutt,
c2aa0d
  <jorton@btconnect.com>)
c2aa0d
c2aa0d
* Fri Jun  1 2001 Oliver Paukstadt <oliver.paukstadt@millenux.com>
c2aa0d
- forced to use RPM_OPT_FLAGS for ELF_CFLAGS too
c2aa0d
c2aa0d
* Mon Mar 12 2001 Bill Nottingham <notting@redhat.com>
c2aa0d
- update to 1.4.4
c2aa0d
c2aa0d
* Tue Feb 27 2001 Bill Nottingham <notting@redhat.com>
c2aa0d
- have slang-devel require slang = %%{version}
c2aa0d
c2aa0d
* Tue Aug 29 2000 Bill Nottingham <notting@redhat.com>
c2aa0d
- update to 1.4.2
c2aa0d
c2aa0d
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
c2aa0d
- automatic rebuild
c2aa0d
c2aa0d
* Sat Jun 17 2000 Matt Wilson <msw@redhat.com>
c2aa0d
- added defattr
c2aa0d
c2aa0d
* Sat Jun 10 2000 Bill Nottingham <notting@redhat.com>
c2aa0d
- rebuild, FHS stuff
c2aa0d
c2aa0d
* Fri Apr 28 2000 Bill Nottingham <notting@redhat.com>
c2aa0d
- autoconf fix for ia64
c2aa0d
c2aa0d
* Mon Apr 24 2000 Bill Nottingham <notting@redhat.com>
c2aa0d
- update to 1.4.1
c2aa0d
c2aa0d
* Wed Mar 29 2000 Bill Nottingham <notting@redhat.com>
c2aa0d
- fix background color problem with newt
c2aa0d
c2aa0d
* Thu Mar  2 2000 Bill Nottingham <notting@redhat.com>
c2aa0d
- resurrect for the devel tree
c2aa0d
c2aa0d
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
c2aa0d
- auto rebuild in the new build environment (release 4)
c2aa0d
c2aa0d
* Wed Oct 21 1998 Bill Nottingham <notting@redhat.com>
c2aa0d
- libslang.so goes in -devel
c2aa0d
c2aa0d
* Sun Jun 07 1998 Prospector System <bugs@redhat.com>
c2aa0d
c2aa0d
- translations modified for de
c2aa0d
c2aa0d
* Sat Jun  6 1998 Jeff Johnson <jbj@redhat.com>
c2aa0d
- updated to 1.2.2 with buildroot.
c2aa0d
c2aa0d
* Tue May 05 1998 Prospector System <bugs@redhat.com>
c2aa0d
- translations modified for de, fr, tr
c2aa0d
c2aa0d
* Sat Apr 18 1998 Erik Troan <ewt@redhat.com>
c2aa0d
- rebuilt to find terminfo in /usr/share
c2aa0d
c2aa0d
* Tue Oct 14 1997 Donnie Barnes <djb@redhat.com>
c2aa0d
- spec file cleanups
c2aa0d
c2aa0d
* Mon Sep 1 1997 Donnie Barnes <djb@redhat.com>
c2aa0d
- upgraded to 0.99.38 (will it EVER go 1.0???)
c2aa0d
- all patches removed (all appear to be in this version)
c2aa0d
c2aa0d
* Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
c2aa0d
- built against glibc
c2aa0d