auto-import changelog data from minicom-2.00.0-3.src.rpm
Tue Feb 26 2002 Mike A. Harris <mharris@redhat.com> 2.00.0-3 - Rebuilt in new build environment Wed Jan 09 2002 Tim Powers <timp@redhat.com> 2.00.0-2 - automated rebuild Wed Nov 21 2001 Mike A. Harris <mharris@redhat.com> 2.00.0-1 - Updated to version 2.00.0-0, which now uses GNU autoconf for everything, to ease portability and internationalization issues. Hold on for the ride, as there's bound to be some bumps on the way. ;o) On the up side, the packaging is likely to be MUCH more maintainable in the future, which is very nice to see. - Disabled most patches as they are either included now, not needed, or it has yet to be determined. Fri Oct 12 2001 Trond Eivind Glomsrd <teg@redhat.com> 1.83.1-17 - Delete bad entries in ko.po, fix charset in ja.po
This commit is contained in:
parent
b5afd9d491
commit
12d8d3cfcf
@ -1 +1 @@
|
||||
minicom-1.83.1.src.tar.bz2
|
||||
minicom-2.00.0.src.tar.bz2
|
||||
|
77
minicom.spec
77
minicom.spec
@ -1,7 +1,7 @@
|
||||
Summary: A text-based modem control and terminal emulation program.
|
||||
Name: minicom
|
||||
Version: 1.83.1
|
||||
Release: 16
|
||||
Version: 2.00.0
|
||||
Release: 3
|
||||
License: GPL
|
||||
Group: Applications/Communications
|
||||
ExcludeArch: s390 s390x
|
||||
@ -9,21 +9,19 @@ BuildRoot: %{_tmppath}/%{name}-root
|
||||
#BuildPrereq: /usr/include/baudboy.h
|
||||
BuildPrereq: lockdev-devel >= 1.0.0-13
|
||||
Requires: lockdev
|
||||
URL: http://www.pp.clinet.fi/~walker/minicom.html
|
||||
|
||||
Source: ftp://metalab.unc.edu/pub/Linux/apps/serialcomm/dialout/minicom-%{version}.src.tar.bz2
|
||||
|
||||
Source1: minicom.desktop
|
||||
Patch0: minicom-1.81-config.patch
|
||||
Patch1: minicom-1.83.1-make.patch
|
||||
Patch2: minicom-drop-privs.patch
|
||||
Patch3: minicom-1.83.1-time.patch
|
||||
Patch4: minicom-umask.patch
|
||||
# Fixes many format string abuses in minicom. Even so, minicom is still
|
||||
# not safe to run SUID or SGID due to the do_log function being exported
|
||||
# to the scripting language. You have been warned.
|
||||
Patch5: minicom-1.83.1-format-string-vuln.patch
|
||||
Patch6: minicom-1.83.1-cs_CZ-translation.patch
|
||||
|
||||
Patch7: minicom-1.83.1-disable-message.patch
|
||||
Patch8: minicom-1.83.1-rh.patch
|
||||
Patch9: minicom-1.83-badlocales.patch
|
||||
|
||||
%description
|
||||
Minicom is a simple text-based modem control and terminal emulation
|
||||
@ -33,45 +31,37 @@ language, and other features.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1 -b .config
|
||||
%patch1 -p1 -b .make
|
||||
###%patch0 -p1 -b .config Appears unneeded in 2.00.0
|
||||
###%patch1 -p1 -b .make Appears unneeded in 2.00.0
|
||||
%patch2 -p1 -b .privs
|
||||
%patch3 -p1 -b .time
|
||||
###%patch3 -p1 -b .time Appears unneeded in 2.00.0
|
||||
%patch4 -p1 -b .umask
|
||||
%patch5 -p1 -b .format-string-vuln
|
||||
%patch6 -p1 -b .cs_CZ-translation
|
||||
%patch7 -p0 -b .disable-message
|
||||
###%patch7 -p0 -b .disable-message Stay or go? We'll wait and see...
|
||||
%patch8 -p1 -b .rh
|
||||
###%patch9 -p1 Needs removal, or repair
|
||||
|
||||
|
||||
%build
|
||||
# Remove precompiled binaries from sources. Why the hell is this stuff
|
||||
# even there?
|
||||
rm -rf linux
|
||||
OLD_PO_FILE_INPUT=yes make -C src
|
||||
%configure
|
||||
make
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make -C src install R=$RPM_BUILD_ROOT MANDIR=%{_mandir}/man1
|
||||
|
||||
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
||||
%makeinstall
|
||||
install -d $RPM_BUILD_ROOT/etc/X11/applnk/Internet
|
||||
cat > $RPM_BUILD_ROOT/etc/X11/applnk/Internet/minicom.desktop <<EOF
|
||||
[Desktop Entry]
|
||||
Name=Minicom
|
||||
Name[sv]=Minicom
|
||||
Type=Application
|
||||
Comment=Terminal Emulator
|
||||
Comment[sv]=Terminalemulator
|
||||
Exec=minicom
|
||||
Terminal=true
|
||||
EOF
|
||||
install -m 644 %SOURCE1 $RPM_BUILD_ROOT/etc/X11/applnk/Internet/minicom.desktop
|
||||
install -m 644 doc/minicom.users $RPM_BUILD_ROOT/etc/minicom.users
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc demos doc tables
|
||||
%config /etc/minicom.users
|
||||
%doc doc
|
||||
%attr(0644,root,root) %config /etc/minicom.users
|
||||
# DO NOT MAKE minicom SUID/SGID anything.
|
||||
%attr(0755,root,uucp) %{_bindir}/minicom
|
||||
%{_bindir}/runscript
|
||||
@ -80,7 +70,26 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_mandir}/man1/*
|
||||
#%config(missingok) /etc/X11/applnk/Internet/minicom.desktop
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Feb 26 2002 Mike A. Harris <mharris@redhat.com> 2.00.0-3
|
||||
- Rebuilt in new build environment
|
||||
|
||||
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 2.00.0-2
|
||||
- automated rebuild
|
||||
|
||||
* Wed Nov 21 2001 Mike A. Harris <mharris@redhat.com> 2.00.0-1
|
||||
- Updated to version 2.00.0-0, which now uses GNU autoconf for everything,
|
||||
to ease portability and internationalization issues. Hold on for the
|
||||
ride, as there's bound to be some bumps on the way. ;o) On the up side,
|
||||
the packaging is likely to be MUCH more maintainable in the future, which
|
||||
is very nice to see.
|
||||
- Disabled most patches as they are either included now, not needed, or
|
||||
it has yet to be determined.
|
||||
|
||||
* Fri Oct 12 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.83.1-17
|
||||
- Delete bad entries in ko.po, fix charset in ja.po
|
||||
|
||||
* Tue Aug 28 2001 Jeff Johnson <jbj@redhat.com>
|
||||
- map specific errno's into status for return from helper.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user