mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-23 01:42:24 +00:00
Updated for version 3.18.1
This commit is contained in:
parent
76204527d1
commit
55859ebba4
3 changed files with 42 additions and 20 deletions
|
@ -1,4 +1,19 @@
|
|||
2005-06-24 Duncan Ferguson <duncan_ferguson@user.sf.net> - v3..17.1
|
||||
2005-11-28 Duncan Ferguson <duncan_ferguson@user.sf.net> - v3.18.1-1
|
||||
|
||||
* Correct mask value for backtick (grave) character
|
||||
* Add more logging for debug mode
|
||||
* Amend indentation
|
||||
* Rerun through perltidy
|
||||
* Improve cluster file import efficiency as was taking faaar too long previously
|
||||
* Fixed bug whereby when pid's of the xterm changes records were not updated
|
||||
* Do not die when pipe open fails, but continue as others may be connected
|
||||
* Remove code that breaks the minimize/maximise stuff;
|
||||
* Catch X button presses on title bar to close all windows correctly
|
||||
* Delay map event capture at program start to avoid infinite loop
|
||||
* Fix execvp error on Solaris 10
|
||||
* Update to man pages
|
||||
|
||||
2005-06-24 Duncan Ferguson <duncan_ferguson@user.sf.net> - v3.17.1
|
||||
|
||||
* Allow _'s in paste text correctly
|
||||
* Bugfix minimise/maximise again
|
||||
|
|
|
@ -1,18 +1,21 @@
|
|||
Name: clusterssh
|
||||
Version: 3.17.1
|
||||
Release: 1
|
||||
Summary: Secure concurrent multi-server terminal control
|
||||
Name: clusterssh
|
||||
Version: 3.18.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Secure concurrent multi-server terminal control
|
||||
|
||||
Group: Applications/Productivity
|
||||
License: GPL
|
||||
URL: http://clusterssh.sourceforge.net
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
Requires: perl-Tk perl-X11-Protocol
|
||||
Group: Applications/Productivity
|
||||
License: GPL
|
||||
URL: http://clusterssh.sourceforge.net
|
||||
Source0: http://download.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildArch: noarch
|
||||
Requires: perl-Tk perl-X11-Protocol
|
||||
|
||||
%description
|
||||
Control multiple terminals open on different servers to perform administration
|
||||
tasks.
|
||||
tasks, for example multiple hosts requiring the same config within a cluster.
|
||||
Not limited to use with clusters, however.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
@ -29,17 +32,21 @@ make install DESTDIR=%{buildroot}
|
|||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/cssh
|
||||
%{_mandir}/man1/cssh.1.gz
|
||||
|
||||
%defattr(-,root,root,-)
|
||||
%doc COPYING AUTHORS README NEWS ChangeLog
|
||||
%{_bindir}/cssh
|
||||
%{_mandir}/man1/*.1*
|
||||
|
||||
%changelog
|
||||
|
||||
* Mon Nov 28 2005 Duncan Ferguson <duncan_ferguson@users.sf.net> - 3.18.1-1
|
||||
- Updates and bugfixes to cssh
|
||||
- Updates to man page
|
||||
- Re-engineer spec file
|
||||
|
||||
* Tue Aug 30 2005 Duncan Ferguson <duncan_ferguson@users.sf.net> - 3.17.1-2
|
||||
- spec file tidyups
|
||||
|
||||
* Mon Apr 25 2005 Duncan Ferguson <duncan_ferguson@users.sf.net> - 3.0
|
||||
- Please see ChangeLog in documentation area
|
||||
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
AC_INIT
|
||||
AM_INIT_AUTOMAKE(clusterssh,3.17.1)
|
||||
AM_INIT_AUTOMAKE(clusterssh,3.18.1)
|
||||
AC_PATH_PROGS(PERL, perl perl5)
|
||||
AC_OUTPUT([Makefile src/Makefile])
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue