auto-import changelog data from newt-0.51.4-1.src.rpm
Wed Feb 05 2003 Matt Wilson <msw@redhat.com> 0.51.4-1 - fixed help line drawing in UTF-8 (#81718) - calculate the width of text in entries using wstrlen - always set component width to the new label width in newtLabelSetText - fixed snack.CListbox to work properly with UTF-8 (#81718) Tue Feb 04 2003 Florian La Roche <Florian.LaRoche@redhat.de> - add symlink to shared lib Sun Jan 05 2003 Adrian Havill <havill@redhat.com> 0.51.3-1 - cleaned up const qualifiers in interfaces - added Ctrl-L screen refresh - fixed segfault in test.c when listbox items are selected - accessibility: made newt useable with monochrome terms (#60931) - leave the symbols in the libs (#60400) - fixed grammar in tutorial (#63496) - error checking (curcomp exists) for formEvent, newtFormGetCurrent, removed fifty button limit (#59027) Tue Dec 17 2002 Matt Wilson <msw@redhat.com> 0.51.2-1 - fixed wstrlen() it was calculating wcwidth(first wide char in string) * strlen(str) instead of the actual width of the whole string - fixed newtRedrawHelpLine() to copy all the bytes from a multibyte string Fri Dec 13 2002 Elliot Lee <sopwith@redhat.com> 0.51.1-1 - Merge multilib changes
This commit is contained in:
parent
220d098090
commit
2fdc8d854d
@ -1 +1 @@
|
||||
newt-0.51.0.tar.gz
|
||||
newt-0.51.4.tar.gz
|
||||
|
||||
59
newt.spec
59
newt.spec
@ -1,6 +1,8 @@
|
||||
%define pythonver 2.2
|
||||
|
||||
Summary: A development library for text mode user interfaces.
|
||||
Name: newt
|
||||
%define version 0.51.0
|
||||
%define version 0.51.4
|
||||
Version: %{version}
|
||||
Release: 1
|
||||
License: LGPL
|
||||
@ -36,23 +38,23 @@ newt.
|
||||
|
||||
|
||||
%prep
|
||||
%setup
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
# gpm support seems to smash the stack w/ we use help in anaconda??
|
||||
#./configure --with-gpm-support
|
||||
./configure
|
||||
make
|
||||
make shared
|
||||
%configure
|
||||
make %{?_smp_mflags} all
|
||||
chmod 0644 peanuts.py popcorn.py
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
mkdir -p $RPM_BUILD_ROOT
|
||||
make instroot=$RPM_BUILD_ROOT install
|
||||
make instroot=$RPM_BUILD_ROOT install-sh
|
||||
%makeinstall
|
||||
|
||||
python -c 'from compileall import *; compile_dir("'$RPM_BUILD_ROOT'/usr/lib/python2.2",10,"/usr/lib/python2.2")'
|
||||
/sbin/ldconfig -n $RPM_BUILD_ROOT/%{_libdir}
|
||||
|
||||
python -c 'from compileall import *; compile_dir("'$RPM_BUILD_ROOT'%{_libdir}/python%{pythonver}",10,"%{_libdir}/python%{pythonver}")'
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
@ -69,18 +71,47 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%files
|
||||
%defattr (-,root,root)
|
||||
%doc CHANGES COPYING
|
||||
/usr/lib/libnewt.so.*
|
||||
/usr/bin/whiptail
|
||||
/usr/lib/python*/site-packages/*
|
||||
%{_bindir}/whiptail
|
||||
%{_libdir}/libnewt.so.*
|
||||
%{_libdir}/python%{pythonver}/site-packages/*
|
||||
|
||||
%files devel
|
||||
%defattr (-,root,root)
|
||||
%doc tutorial.sgml peanuts.py popcorn.py
|
||||
/usr/include/newt.h
|
||||
/usr/lib/libnewt.a
|
||||
/usr/lib/libnewt.so
|
||||
%{_includedir}/newt.h
|
||||
%{_libdir}/libnewt.a
|
||||
%{_libdir}/libnewt.so
|
||||
|
||||
%changelog
|
||||
* Wed Feb 5 2003 Matt Wilson <msw@redhat.com> 0.51.4-1
|
||||
- fixed help line drawing in UTF-8 (#81718)
|
||||
- calculate the width of text in entries using wstrlen
|
||||
- always set component width to the new label width in newtLabelSetText
|
||||
- fixed snack.CListbox to work properly with UTF-8 (#81718)
|
||||
|
||||
* Tue Feb 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||
- add symlink to shared lib
|
||||
|
||||
* Sun Jan 5 2003 Adrian Havill <havill@redhat.com> 0.51.3-1
|
||||
- cleaned up const qualifiers in interfaces
|
||||
- added Ctrl-L screen refresh
|
||||
- fixed segfault in test.c when listbox items are selected
|
||||
- accessibility: made newt useable with monochrome terms (#60931)
|
||||
- leave the symbols in the libs (#60400)
|
||||
- fixed grammar in tutorial (#63496)
|
||||
- error checking (curcomp exists) for formEvent, newtFormGetCurrent,
|
||||
removed fifty button limit (#59027)
|
||||
|
||||
* Tue Dec 17 2002 Matt Wilson <msw@redhat.com> 0.51.2-1
|
||||
- fixed wstrlen() it was calculating wcwidth(first wide char in
|
||||
string) * strlen(str) instead of the actual width of the whole
|
||||
string
|
||||
- fixed newtRedrawHelpLine() to copy all the bytes from a multibyte
|
||||
string
|
||||
|
||||
* Fri Dec 13 2002 Elliot Lee <sopwith@redhat.com> 0.51.1-1
|
||||
- Merge multilib changes
|
||||
|
||||
* Thu Aug 15 2002 Bill Nottingham <notting@redhat.com> 0.51.0-1
|
||||
- changes for element width calculation for UTF-8
|
||||
- fix textwrap for UTF-8 in general
|
||||
|
||||
Loading…
Reference in New Issue
Block a user