2009-11-01 17:36:46 +00:00
|
|
|
Name: tmux
|
2012-10-13 19:09:17 +00:00
|
|
|
Version: 1.7
|
2013-02-15 01:46:03 +00:00
|
|
|
Release: 2%{?dist}
|
2009-11-01 17:36:46 +00:00
|
|
|
Summary: A terminal multiplexer
|
|
|
|
|
|
|
|
Group: Applications/System
|
|
|
|
# Most of the source is ISC licensed; some of the files in compat/ are 2 and
|
|
|
|
# 3 clause BSD licensed.
|
|
|
|
License: ISC and BSD
|
|
|
|
URL: http://sourceforge.net/projects/tmux
|
|
|
|
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
BuildRequires: ncurses-devel
|
2010-03-28 09:44:14 +00:00
|
|
|
BuildRequires: libevent-devel
|
2009-11-01 17:36:46 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
tmux is a "terminal multiplexer." It enables a number of terminals (or
|
|
|
|
windows) to be accessed and controlled from a single terminal. tmux is
|
|
|
|
intended to be a simple, modern, BSD-licensed alternative to programs such
|
|
|
|
as GNU Screen.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure
|
|
|
|
make %{?_smp_mflags} LDFLAGS="%{optflags}"
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
2009-11-01 18:46:32 +00:00
|
|
|
make install DESTDIR=%{buildroot} INSTALLBIN="install -p -m 755" INSTALLMAN="install -p -m 644"
|
|
|
|
|
2011-04-16 09:34:45 +00:00
|
|
|
%post
|
2011-11-01 09:58:18 +00:00
|
|
|
if [ ! -f %{_sysconfdir}/shells ] ; then
|
|
|
|
echo "%{_bindir}/tmux" > %{_sysconfdir}/shells
|
|
|
|
else
|
|
|
|
grep -q "^%{_bindir}/tmux$" %{_sysconfdir}/shells || echo "%{_bindir}/tmux" >> %{_sysconfdir}/shells
|
|
|
|
fi
|
2011-04-16 09:34:45 +00:00
|
|
|
|
2009-11-01 17:36:46 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc CHANGES FAQ NOTES TODO examples/
|
2011-11-01 09:58:18 +00:00
|
|
|
%{_bindir}/tmux
|
2009-11-01 18:46:32 +00:00
|
|
|
%{_mandir}/man1/tmux.1.*
|
2009-11-01 17:36:46 +00:00
|
|
|
|
|
|
|
%changelog
|
2013-02-15 01:46:03 +00:00
|
|
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-10-13 19:09:17 +00:00
|
|
|
* Sat Oct 13 2012 Sven Lankes <sven@lank.es> 1.7-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-07-21 23:41:55 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-31 07:33:13 +00:00
|
|
|
* Tue Jan 31 2012 Sven Lankes <sven@lank.es> 1.6-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-01-14 06:50:10 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-01 09:58:18 +00:00
|
|
|
* Tue Nov 01 2011 Sven Lankes <sven@lank.es> 1.5-1
|
|
|
|
- New upstream release
|
|
|
|
- Do the right thing (tm) and revert to $upstream-behaviour:
|
|
|
|
No longer install tmux setgid and no longer use /var/run/tmux
|
|
|
|
for sockets. Use "tmux -S /var/run/tmux/tmux-`id -u`/default attach"
|
|
|
|
if you need to access an "old" tmux session
|
|
|
|
- tmux can be used as a login shell so add it to /etc/shells
|
|
|
|
|
2011-04-16 09:34:45 +00:00
|
|
|
* Sat Apr 16 2011 Sven Lankes <sven@lank.es> 1.4-4
|
2011-11-01 09:58:18 +00:00
|
|
|
- Add /var/run/tmp to tmpdir.d - fixes rhbz 656704 and 697134
|
2011-04-16 09:34:45 +00:00
|
|
|
|
2011-04-10 08:38:56 +00:00
|
|
|
* Sun Apr 10 2011 Sven Lankes <sven@lank.es> 1.4-3
|
|
|
|
- Fix CVE-2011-1496
|
|
|
|
- Fixes rhbz #693824
|
|
|
|
|
2011-02-09 19:51:38 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-28 18:21:29 +00:00
|
|
|
* Tue Dec 28 2010 Filipe Rosset <rosset.filipe@gmail.com> 1.4-1
|
|
|
|
- New upstream release
|
|
|
|
|
2010-08-07 19:56:52 +00:00
|
|
|
* Fri Aug 06 2010 Filipe Rosset <filiperosset@fedoraproject.org> 1.3-2
|
|
|
|
- Rebuild for F-13
|
|
|
|
|
2010-07-19 05:13:34 +00:00
|
|
|
* Mon Jul 19 2010 Sven Lankes <sven@lank.es> 1.3-1
|
|
|
|
- New upstream release
|
|
|
|
|
2010-03-28 09:44:14 +00:00
|
|
|
* Sun Mar 28 2010 Sven Lankes <sven@lank.es> 1.2-1
|
|
|
|
- New upstream release
|
2010-03-28 10:09:39 +00:00
|
|
|
- rediff writehard patch
|
2010-03-28 09:44:14 +00:00
|
|
|
|
2009-11-09 21:27:51 +00:00
|
|
|
* Mon Nov 09 2009 Sven Lankes <sven@lank.es> 1.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2009-11-01 18:46:32 +00:00
|
|
|
* Sun Nov 01 2009 Sven Lankes <sven@lank.es> 1.0-2
|
|
|
|
- Add debian patches
|
|
|
|
- Add tmux group for improved socket handling
|
|
|
|
|
2009-11-01 17:36:46 +00:00
|
|
|
* Sat Oct 24 2009 Sven Lankes <sven@lank.es> 1.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
|
|
|
* Mon Jul 13 2009 Chess Griffin <chess@chessgriffin.com> 0.9-1
|
|
|
|
- Update to version 0.9.
|
|
|
|
- Remove sed invocation as this was adopted upstream.
|
|
|
|
- Remove optflags patch since upstream source now uses ./configure and
|
|
|
|
detects the flags when passed to make.
|
|
|
|
|
|
|
|
* Tue Jun 23 2009 Chess Griffin <chess@chessgriffin.com> 0.8-5
|
|
|
|
- Note that souce is mostly ISC licensed with some 2 and 3 clause BSD in
|
|
|
|
compat/.
|
|
|
|
- Remove fixiquote.patch and instead use a sed invocation in setup.
|
|
|
|
|
|
|
|
* Mon Jun 22 2009 Chess Griffin <chess@chessgriffin.com> 0.8-4
|
|
|
|
- Add optimization flags by patching GNUmakefile and passing LDFLAGS
|
|
|
|
to make command.
|
|
|
|
- Use consistent macro format.
|
|
|
|
- Change examples/* to examples/ and add TODO to docs.
|
|
|
|
|
|
|
|
* Sun Jun 21 2009 Chess Griffin <chess@chessgriffin.com> 0.8-3
|
|
|
|
- Remove fixperms.patch and instead pass them at make install stage.
|
|
|
|
|
|
|
|
* Sat Jun 20 2009 Chess Griffin <chess@chessgriffin.com> 0.8-2
|
|
|
|
- Fix Source0 URL to point to correct upstream source.
|
|
|
|
- Modify fixperms.patch to set 644 permissions on the tmux.1.gz man page.
|
|
|
|
- Remove wildcards from 'files' section and replace with specific paths and
|
|
|
|
filenames.
|
|
|
|
|
|
|
|
* Mon Jun 15 2009 Chess Griffin <chess@chessgriffin.com> 0.8-1
|
|
|
|
- Initial RPM release.
|