update to 2.0 [release 2.0-1mamba;Wed Sep 16 2015]

This commit is contained in:
Silvan Calarco 2024-01-06 10:05:15 +01:00
parent a3f290150c
commit e56dc056f9
2 changed files with 11 additions and 12 deletions

View File

@ -1,8 +1,6 @@
# picocom # picocom
picocom is a minimal dumb-terminal emulation program. It is, in principle, very much like minicom, only it's pico instead of mini! picocom is a minimal dumb-terminal emulation program. It is, in principle, very much like minicom, only it's pico instead of mini!
It was designed to serve as a simple, manual, modem configuration, testing, and debugging tool. It has also served (quite well) as a low-tech "terminal-window" to allow operator intervention in PPP connection scripts (something like the ms-windows "open terminal window before / after dialing" feature). It could also prove useful in many other similar tasks.
Picocom was designed to serve as a simple, manual, modem configuration, testing, and debugging tool. It has also served (quite well) as a low-tech "terminal-window" to allow operator intervention in PPP connection scripts (something like the ms-windows "open terminal window before / after dialing" feature). It could also prove useful in many other similar tasks. It is ideal for embedded systems since its memory footprint is minimal (less than 20K, when stripped).
Picocom is ideal for embedded systems since its memory footprint is minimal (less than 20K, when stripped).

View File

@ -1,5 +1,5 @@
Name: picocom Name: picocom
Version: 1.7 Version: 2.0
Release: 1mamba Release: 1mamba
Summary: A minimal dumb-terminal emulation program. Summary: A minimal dumb-terminal emulation program.
Group: Applications/Communication Group: Applications/Communication
@ -7,7 +7,7 @@ Vendor: openmamba
Distribution: openmamba Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it> Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://code.google.com/p/picocom/ URL: http://code.google.com/p/picocom/
Source: http://picocom.googlecode.com/files/picocom-%{version}.tar.gz Source: https://github.com/npat-efault/picocom.git/%{version}/picocom-%{version}.tar.bz2
License: GPL License: GPL
## AUTOBUILDREQ-BEGIN ## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel BuildRequires: glibc-devel
@ -18,10 +18,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description %description
picocom is a minimal dumb-terminal emulation program. It is, in principle, very much like minicom, only it's pico instead of mini! picocom is a minimal dumb-terminal emulation program. It is, in principle, very much like minicom, only it's pico instead of mini!
It was designed to serve as a simple, manual, modem configuration, testing, and debugging tool. It has also served (quite well) as a low-tech "terminal-window" to allow operator intervention in PPP connection scripts (something like the ms-windows "open terminal window before / after dialing" feature). It could also prove useful in many other similar tasks.
Picocom was designed to serve as a simple, manual, modem configuration, testing, and debugging tool. It has also served (quite well) as a low-tech "terminal-window" to allow operator intervention in PPP connection scripts (something like the ms-windows "open terminal window before / after dialing" feature). It could also prove useful in many other similar tasks. It is ideal for embedded systems since its memory footprint is minimal (less than 20K, when stripped).
Picocom is ideal for embedded systems since its memory footprint is minimal (less than 20K, when stripped).
%prep %prep
%setup -q %setup -q
@ -35,7 +33,7 @@ install -D -m0755 picocom %{buildroot}%{_bindir}/picocom
for f in pcasc pcxm pcym pczm; do for f in pcasc pcxm pcym pczm; do
install -m0755 $f %{buildroot}%{_bindir}/$f install -m0755 $f %{buildroot}%{_bindir}/$f
done done
install -D -m0644 picocom.8 %{buildroot}%{_mandir}/man8/picocom.8 install -D -m0644 picocom.1 %{buildroot}%{_mandir}/man1/picocom.1
%clean %clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
@ -47,9 +45,12 @@ install -D -m0644 picocom.8 %{buildroot}%{_mandir}/man8/picocom.8
%{_bindir}/pcym %{_bindir}/pcym
%{_bindir}/pczm %{_bindir}/pczm
%{_bindir}/picocom %{_bindir}/picocom
%{_mandir}/man8/picocom.8.gz %{_mandir}/man1/picocom.1*
%doc LICENSE.txt CONTRIBUTORS %doc LICENSE.txt CONTRIBUTORS
%changelog %changelog
* Wed Sep 16 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 2.0-1mamba
- update to 2.0
* Thu Mar 29 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 1.7-1mamba * Thu Mar 29 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 1.7-1mamba
- package created by autospec - package created by autospec