Files
mosh/fedora/mosh.spec
T
Anders Kaseorg b6736eb0a5 Use protobuf’s Gzip{Input,Output}Stream wrapper around zlib
This removes our direct zlib dependency (although of course protobuf
still uses it internally), removes a fixed 4 MiB buffer and its
corresponding limit on the terminal size, reduces some string copying,
and deletes some code.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>

(Closes #230.)
2012-04-22 16:14:28 -04:00

57 lines
1.3 KiB
RPMSpec

Name: mosh
Version: 1.1.3
Release: 1%{?dist}
Summary: Mobile shell that supports roaming and intelligent local echo
License: GPLv3+
Group: Applications/Internet
URL: http://mosh.mit.edu/
Source0: https://github.com/downloads/keithw/mosh/mosh-%{version}.tar.gz
BuildRequires: protobuf-compiler
BuildRequires: protobuf-devel
BuildRequires: libutempter-devel
BuildRequires: ncurses-devel
Requires: openssh-clients
Requires: perl-IO-Tty
%description
Mosh is a remote terminal application that supports:
- intermittent network connectivity,
- roaming to different IP address without dropping the connection, and
- intelligent local echo and line editing to reduce the effects
of "network lag" on high-latency connections.
%prep
%setup -q
%build
%configure --enable-compile-warnings=error
make %{?_smp_mflags}
%install
make install DESTDIR=$RPM_BUILD_ROOT
%files
%doc README.md COPYING ChangeLog
%{_bindir}/*
%{_mandir}/man1/*
%changelog
* Wed Apr 3 2012 Keith Winstein <mosh-devel@mit.edu> - 1.1.3-1
- Update to mosh 1.1.3.
* Wed Mar 28 2012 Keith Winstein <mosh-devel@mit.edu> - 1.1.2-1
- Update to mosh 1.1.2.
* Mon Mar 26 2012 Alexander Chernyakhovsky <achernya@mit.edu> - 1.1.1-1
- Update to mosh 1.1.1.
* Wed Mar 21 2012 Alexander Chernyakhovsky <achernya@mit.edu> - 1.1-1
- Initial packaging for mosh.