auto-import changelog data from minicom-2.00.0-17.src.rpm
Fri Sep 12 2003 Adrian Havill <havill@redhat.com> 2.00.0-17 - fix error handling for the case when you attempt to "goto" a dir that doesn't exist. (#103902) - updated URL in spec file Thu Aug 21 2003 Adrian Havill <havill@redhat.com> 2.00.0-16.1 - bump n-v-r for RHEL Thu Aug 21 2003 Adrian Havill <havill@redhat.com> 2.00.0-16 - don't overwrite buffer when ins chars (#98733) Wed Aug 20 2003 Adrian Havill <havill@redhat.com> 2.00.0-15.1 - bump n-v-r for RHEL Wed Aug 20 2003 Adrian Havill <havill@redhat.com> 2.00.0-15 - initialize savetrans, check vttrans to prevent segfaults with certain ESC sequences (#84129) Fri Aug 01 2003 Adrian Havill <havill@redhat.com> 2.00.0-14 - removed static buffers that limit multi-file zmodem functionality (#98654) - removed assertions from above patch, massage out conflicts with rh patch Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> - rebuilt
This commit is contained in:
parent
1b0dd3cb53
commit
6ef3b2c6be
37
minicom.spec
37
minicom.spec
@ -3,7 +3,7 @@
|
|||||||
Summary: A text-based modem control and terminal emulation program.
|
Summary: A text-based modem control and terminal emulation program.
|
||||||
Name: minicom
|
Name: minicom
|
||||||
Version: 2.00.0
|
Version: 2.00.0
|
||||||
Release: 12
|
Release: 17
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/Communications
|
Group: Applications/Communications
|
||||||
ExcludeArch: s390 s390x
|
ExcludeArch: s390 s390x
|
||||||
@ -11,7 +11,7 @@ BuildRoot: %{_tmppath}/%{name}-root
|
|||||||
BuildPrereq: lockdev-devel >= 1.0.0-13
|
BuildPrereq: lockdev-devel >= 1.0.0-13
|
||||||
PreReq: coreutils
|
PreReq: coreutils
|
||||||
Requires: lockdev
|
Requires: lockdev
|
||||||
URL: http://www.netsonic.fi/~walker/minicom.html
|
URL: http://alioth.debian.org/projects/minicom/
|
||||||
|
|
||||||
Source: ftp://metalab.unc.edu/pub/Linux/apps/serialcomm/dialout/minicom-%{version}.src.tar.bz2
|
Source: ftp://metalab.unc.edu/pub/Linux/apps/serialcomm/dialout/minicom-%{version}.src.tar.bz2
|
||||||
Source1: minicom.desktop
|
Source1: minicom.desktop
|
||||||
@ -24,6 +24,10 @@ Patch4: minicom-umask.patch
|
|||||||
Patch7: minicom-1.83.1-disable-message.patch
|
Patch7: minicom-1.83.1-disable-message.patch
|
||||||
Patch8: minicom-1.83.1-rh.patch
|
Patch8: minicom-1.83.1-rh.patch
|
||||||
Patch9: minicom-1.83-badlocales.patch
|
Patch9: minicom-1.83-badlocales.patch
|
||||||
|
Patch10: minicom-2.00.0-staticbuf.patch
|
||||||
|
Patch11: minicom-2.00.0-esc.patch
|
||||||
|
Patch12: minicom-2.00.0-inssp.patch
|
||||||
|
Patch13: minicom-2.00.0-gotodir.patch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Minicom is a simple text-based modem control and terminal emulation
|
Minicom is a simple text-based modem control and terminal emulation
|
||||||
@ -41,6 +45,10 @@ language, and other features.
|
|||||||
###%patch7 -p0 -b .disable-message Stay or go? We'll wait and see...
|
###%patch7 -p0 -b .disable-message Stay or go? We'll wait and see...
|
||||||
%patch8 -p1 -b .rh
|
%patch8 -p1 -b .rh
|
||||||
###%patch9 -p1 Needs removal, or repair
|
###%patch9 -p1 Needs removal, or repair
|
||||||
|
%patch10 -p1 -b .staticbuf
|
||||||
|
%patch11 -p1 -b .esc
|
||||||
|
%patch12 -p1 -b .ins
|
||||||
|
%patch13 -p1 -b .gotodir
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -79,6 +87,31 @@ install -m 644 doc/minicom.users $RPM_BUILD_ROOT/etc/minicom.users
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Sep 12 2003 Adrian Havill <havill@redhat.com> 2.00.0-17
|
||||||
|
- fix error handling for the case when you attempt to "goto" a dir
|
||||||
|
that doesn't exist. (#103902)
|
||||||
|
- updated URL in spec file
|
||||||
|
|
||||||
|
* Thu Aug 21 2003 Adrian Havill <havill@redhat.com> 2.00.0-16.1
|
||||||
|
- bump n-v-r for RHEL
|
||||||
|
|
||||||
|
* Thu Aug 21 2003 Adrian Havill <havill@redhat.com> 2.00.0-16
|
||||||
|
- don't overwrite buffer when ins chars (#98733)
|
||||||
|
|
||||||
|
* Wed Aug 20 2003 Adrian Havill <havill@redhat.com> 2.00.0-15.1
|
||||||
|
- bump n-v-r for RHEL
|
||||||
|
|
||||||
|
* Wed Aug 20 2003 Adrian Havill <havill@redhat.com> 2.00.0-15
|
||||||
|
- initialize savetrans, check vttrans to prevent segfaults with
|
||||||
|
certain ESC sequences (#84129)
|
||||||
|
|
||||||
|
* Fri Aug 01 2003 Adrian Havill <havill@redhat.com> 2.00.0-14
|
||||||
|
- removed static buffers that limit multi-file zmodem functionality (#98654)
|
||||||
|
- removed assertions from above patch, massage out conflicts with rh patch
|
||||||
|
|
||||||
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
||||||
- rebuilt
|
- rebuilt
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user