6a9846
%global _hardened_build 1
6a9846
6a9846
Name:           tmux
6a9846
Version:        2.7
6a9846
Release:        1%{?dist}
6a9846
Summary:        A terminal multiplexer
6a9846
6a9846
Group:          Applications/System
6a9846
# Most of the source is ISC licensed; some of the files in compat/ are 2 and
6a9846
# 3 clause BSD licensed.
6a9846
License:        ISC and BSD
6a9846
URL:            https://tmux.github.io/
6a9846
Source0:        https://github.com/tmux/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
6a9846
# Examples has been removed - so include the bash_completion here
6a9846
Source1:        bash_completion_tmux.sh
6a9846
6a9846
BuildRequires:  gcc
6a9846
BuildRequires:  ncurses-devel
6a9846
BuildRequires:  libevent-devel
6a9846
BuildRequires:  libutempter-devel
6a9846
6a9846
%description
6a9846
tmux is a "terminal multiplexer."  It enables a number of terminals (or
6a9846
windows) to be accessed and controlled from a single terminal.  tmux is
6a9846
intended to be a simple, modern, BSD-licensed alternative to programs such
6a9846
as GNU Screen.
6a9846
6a9846
%prep
6a9846
%autosetup
6a9846
6a9846
%build
6a9846
%configure
6a9846
%make_build
6a9846
6a9846
6a9846
%install
6a9846
%make_install
6a9846
# bash completion
6a9846
install -Dpm 644 %{SOURCE1} %{buildroot}%{_datadir}/bash-completion/completions/tmux
6a9846
6a9846
%post
6a9846
if [ "$1" = 1 ]; then
6a9846
  if [ ! -f %{_sysconfdir}/shells ] ; then
6a9846
    touch %{_sysconfdir}/shells
6a9846
  fi
6a9846
  for binpath in %{_bindir} /bin; do
6a9846
    if ! grep -q "^${binpath}/tmux$" %{_sysconfdir}/shells; then
6a9846
       (cat %{_sysconfdir}/shells; echo "$binpath/tmux") > %{_sysconfdir}/shells.new
6a9846
       mv %{_sysconfdir}/shells{.new,}
6a9846
    fi
6a9846
  done
6a9846
fi
6a9846
6a9846
%postun
6a9846
if [ "$1" = 0 ] && [ -f %{_sysconfdir}/shells ] ; then
6a9846
  sed -e '\!^%{_bindir}/tmux$!d' -e '\!^/bin/tmux$!d' < %{_sysconfdir}/shells > %{_sysconfdir}/shells.new
6a9846
  mv %{_sysconfdir}/shells{.new,}
6a9846
fi
6a9846
6a9846
%files
6a9846
%doc CHANGES TODO
6a9846
%{_bindir}/tmux
6a9846
%{_mandir}/man1/tmux.1.*
6a9846
%{_datadir}/bash-completion/completions/tmux
6a9846
6a9846
%changelog
6a9846
* Thu Apr 19 2018 Filipe Rosset <rosset.filipe@gmail.com> - 2.7-1
6a9846
- update to version 2.7, fixes rhbz #1486507
6a9846
- removed upstreamed patches + spec modernization
6a9846
6a9846
* Mon Apr 09 2018 Filipe Rosset <rosset.filipe@gmail.com> - 2.6-4
6a9846
- added gcc as BR
6a9846
6a9846
* Wed Feb 14 2018 Kevin Fenzi <kevin@scrye.com> - 2.6-3
6a9846
- Rebuild for new libevent
6a9846
6a9846
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-2
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
6a9846
6a9846
* Fri Jan 26 2018 Andreas Schneider <asn@redhat.com> - 2.6-1
6a9846
- Update to version 2.6
6a9846
- Use hardened build
6a9846
6a9846
* Sat Aug 05 2017 Filipe Rosset <rosset.filipe@gmail.com> - 2.5-4
6a9846
- Fixes rhbz #1476851 tmux bell-action other not working
6a9846
- Fixes rhbz #1476892 tmux update in F26 broke tmuxinator
6a9846
6a9846
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-3
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
6a9846
6a9846
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-2
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6a9846
6a9846
* Sat Jun 10 2017 Filipe Rosset <rosset.filipe@gmail.com> - 2.5-1
6a9846
- New upstream release 2.5 - fixes rhbz #1449666
6a9846
- https://raw.githubusercontent.com/tmux/tmux/2.5/CHANGES
6a9846
6a9846
* Fri Apr 21 2017 Filipe Rosset <rosset.filipe@gmail.com> - 2.4-2
6a9846
- rebuild tmux as PIE  - fixes rhbz #1324104
6a9846
6a9846
* Fri Apr 21 2017 Filipe Rosset <rosset.filipe@gmail.com> - 2.4-1
6a9846
- New upstream release - fixes rhbz #1444011
6a9846
6a9846
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3-2
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
6a9846
6a9846
* Fri Oct 28 2016 Sven Lankes <sven@lank.es> - 2.3-1
6a9846
- New upstream release - fixes rhbz #1380562
6a9846
- Adapt shells handling to be atomic and support rpm-ostree - fixes rhbz #1367587
6a9846
6a9846
* Tue May 24 2016 Sven Lankes <sven@lank.es> - 2.2-3
6a9846
- add libutempter-devel as buildrequires to allow writing to utmp
6a9846
- fixes rhbz #1338936 
6a9846
6a9846
* Mon May 09 2016 Sven Lankes <sven@lank.es> - 2.2-2
6a9846
- Adapt source0 and url for new website (fixes rhbz #1334255)
6a9846
6a9846
* Wed Apr 20 2016 Sven Lankes <sven@lank.es> - 2.2-1
6a9846
- New upstream release
6a9846
6a9846
* Tue Feb 23 2016 Sven Lankes <sven@lank.es> - 2.1-3
6a9846
- use more correct bash completion path (thanks to Carl George)
6a9846
6a9846
* Mon Feb 22 2016 Sven Lankes <sven@lank.es> - 2.1-2
6a9846
- add upstream bash-completion (thanks to Scott Tsai - closes rhbz #1148183)
6a9846
6a9846
* Mon Feb 22 2016 Sven Lankes <sven@lank.es> - 2.1-1
6a9846
- New upstream release 
6a9846
6a9846
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-3
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6a9846
6a9846
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-2
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
6a9846
6a9846
* Thu May 07 2015 Filipe Rosset <rosset.filipe@gmail.com> - 2.0-1
6a9846
- Rebuilt for new upstream version 2.0, fixes rhbz #1219300
6a9846
6a9846
* Fri Jan 02 2015 Sven Lankes <sven@lank.es> - 1.9a-5
6a9846
- Pull in upstream commit to fix Fx-Key issues. rhbz #1177652
6a9846
6a9846
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9a-4
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
6a9846
6a9846
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9a-3
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
6a9846
6a9846
* Wed Feb 26 2014 Filipe Rosset <rosset.filipe@gmail.com> 1.9a-2
6a9846
- Fix rhbz #1069950, upstream [tmux:tickets] #105
6a9846
6a9846
* Sun Feb 23 2014 Filipe Rosset <rosset.filipe@gmail.com> 1.9a-1
6a9846
- New upstream release 1.9a
6a9846
6a9846
* Sat Feb 22 2014 Filipe Rosset <rosset.filipe@gmail.com> 1.9-1
6a9846
- New upstream release 1.9
6a9846
- Fix rhbz #1067860
6a9846
6a9846
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8-3
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
6a9846
6a9846
* Mon Jun 10 2013 Petr Ĺ abata <contyk@redhat.com> - 1.8-2
6a9846
- Remove tmux from the shells file upon package removal (#972633)
6a9846
6a9846
* Sat Apr 13 2013 Sven Lankes <sven@lank.es> 1.8-1
6a9846
- New upstream release
6a9846
6a9846
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-2
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
6a9846
6a9846
* Sat Oct 13 2012 Sven Lankes <sven@lank.es> 1.7-1
6a9846
- New upstream release
6a9846
6a9846
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
6a9846
6a9846
* Tue Jan 31 2012 Sven Lankes <sven@lank.es> 1.6-1
6a9846
- New upstream release
6a9846
6a9846
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-2
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
6a9846
6a9846
* Tue Nov 01 2011 Sven Lankes <sven@lank.es> 1.5-1
6a9846
- New upstream release
6a9846
- Do the right thing (tm) and revert to $upstream-behaviour: 
6a9846
   No longer install tmux setgid and no longer use /var/run/tmux 
6a9846
   for sockets. Use "tmux -S /var/run/tmux/tmux-`id -u`/default attach"
6a9846
   if you need to access an "old" tmux session
6a9846
- tmux can be used as a login shell so add it to /etc/shells
6a9846
6a9846
* Sat Apr 16 2011 Sven Lankes <sven@lank.es> 1.4-4
6a9846
- Add /var/run/tmp to tmpdir.d - fixes rhbz 656704 and 697134
6a9846
6a9846
* Sun Apr 10 2011 Sven Lankes <sven@lank.es> 1.4-3
6a9846
- Fix CVE-2011-1496
6a9846
- Fixes rhbz #693824
6a9846
6a9846
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-2
6a9846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
6a9846
6a9846
* Tue Dec 28 2010 Filipe Rosset <rosset.filipe@gmail.com> 1.4-1
6a9846
- New upstream release
6a9846
6a9846
* Fri Aug 06 2010 Filipe Rosset <filiperosset@fedoraproject.org> 1.3-2
6a9846
- Rebuild for F-13
6a9846
6a9846
* Mon Jul 19 2010 Sven Lankes <sven@lank.es> 1.3-1
6a9846
- New upstream release
6a9846
6a9846
* Sun Mar 28 2010 Sven Lankes <sven@lank.es> 1.2-1
6a9846
- New upstream release
6a9846
- rediff writehard patch
6a9846
6a9846
* Mon Nov 09 2009 Sven Lankes <sven@lank.es> 1.1-1
6a9846
- New upstream release
6a9846
6a9846
* Sun Nov 01 2009 Sven Lankes <sven@lank.es> 1.0-2
6a9846
- Add debian patches
6a9846
- Add tmux group for improved socket handling
6a9846
6a9846
* Sat Oct 24 2009 Sven Lankes <sven@lank.es> 1.0-1
6a9846
- New upstream release
6a9846
6a9846
* Mon Jul 13 2009 Chess Griffin <chess@chessgriffin.com> 0.9-1
6a9846
- Update to version 0.9.
6a9846
- Remove sed invocation as this was adopted upstream.
6a9846
- Remove optflags patch since upstream source now uses ./configure and
6a9846
  detects the flags when passed to make.
6a9846
6a9846
* Tue Jun 23 2009 Chess Griffin <chess@chessgriffin.com> 0.8-5
6a9846
- Note that souce is mostly ISC licensed with some 2 and 3 clause BSD in
6a9846
  compat/.
6a9846
- Remove fixiquote.patch and instead use a sed invocation in setup.
6a9846
6a9846
* Mon Jun 22 2009 Chess Griffin <chess@chessgriffin.com> 0.8-4
6a9846
- Add optimization flags by patching GNUmakefile and passing LDFLAGS
6a9846
  to make command.
6a9846
- Use consistent macro format.
6a9846
- Change examples/* to examples/ and add TODO to docs.
6a9846
6a9846
* Sun Jun 21 2009 Chess Griffin <chess@chessgriffin.com> 0.8-3
6a9846
- Remove fixperms.patch and instead pass them at make install stage.
6a9846
6a9846
* Sat Jun 20 2009 Chess Griffin <chess@chessgriffin.com> 0.8-2
6a9846
- Fix Source0 URL to point to correct upstream source.
6a9846
- Modify fixperms.patch to set 644 permissions on the tmux.1.gz man page.
6a9846
- Remove wildcards from 'files' section and replace with specific paths and
6a9846
  filenames.
6a9846
6a9846
* Mon Jun 15 2009 Chess Griffin <chess@chessgriffin.com> 0.8-1
6a9846
- Initial RPM release.