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