tmux-vl.spec 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. Summary: A terminal multiplexer
  2. Name: tmux
  3. Version: 3.5a
  4. Release: 1%{?_dist_release}
  5. Group: accessories
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. # Most of the source is ISC licensed; some of the files in compat/ are 2 and
  9. # 3 clause BSD licensed.
  10. License: ISC and BSD
  11. URL: https://github.com/tmux/tmux
  12. Source0: https://github.com/tmux/tmux/releases/download/%{version}/tmux-%{version}.tar.gz
  13. BuildRequires: ncurses-devel
  14. BuildRequires: libevent-devel
  15. BuildRequires: byacc
  16. %description
  17. tmux is a "terminal multiplexer." It enables a number of terminals (or
  18. windows) to be accessed and controlled from a single terminal. tmux is
  19. intended to be a simple, modern, BSD-licensed alternative to programs such
  20. as GNU Screen.
  21. %debug_package
  22. %prep
  23. %autosetup -p1
  24. %build
  25. autoreconf -vif
  26. %configure
  27. make %{?_smp_mflags}
  28. %install
  29. rm -rf %{buildroot}
  30. make install DESTDIR=%{buildroot} INSTALLBIN="install -p -m 755" INSTALLMAN="install -p -m 644"
  31. %post
  32. if [ ! -f %{_sysconfdir}/shells ] ; then
  33. echo "%{_bindir}/tmux" > %{_sysconfdir}/shells
  34. else
  35. grep -q "^%{_bindir}/tmux$" %{_sysconfdir}/shells || echo "%{_bindir}/tmux" >> %{_sysconfdir}/shells
  36. fi
  37. %files
  38. %defattr(-,root,root,-)
  39. %license COPYING
  40. %doc CHANGES README*
  41. %{_bindir}/tmux
  42. %{_mandir}/man1/tmux.1.*
  43. %changelog
  44. * Thu Oct 10 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5a-1
  45. - new upstream release.
  46. * Sun Sep 29 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5-1
  47. - new upstream release.
  48. * Tue Apr 09 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4-1
  49. - new upstream release.
  50. - dropped Patch1.
  51. * Sat Apr 29 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3a-2
  52. - imported Patch1 from upstream for ncurses-6.4.
  53. * Sun Jun 12 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3a-1
  54. - new upstream release.
  55. * Thu Jun 02 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3-1
  56. - new upstream release.
  57. * Tue Jul 20 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.2a-1
  58. - new upstream release.
  59. * Wed Apr 21 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.2-1
  60. - new upstream release.
  61. * Tue Nov 17 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.1c-1
  62. - new upstream release.
  63. * Fri Aug 21 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.1b-1
  64. - new upstream release.
  65. * Tue Apr 14 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0a-1
  66. - new upstream release.
  67. * Fri Aug 30 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.9a-1
  68. - new upstream release.
  69. * Sun Nov 04 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.8-1
  70. - new upstream release.
  71. - built with libevent-2.1.8.
  72. * Thu Mar 31 2016 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.1-1
  73. - new upstream release
  74. - fixed %%doc in %%files
  75. * Fri Oct 4 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 1.8-1
  76. - update to 1.8
  77. * Fri Jan 18 2013 IWAI, Masaharu <iwai@alib.jp> 1.7-1
  78. - initial build for Vine Linux
  79. * Sat Oct 13 2012 Sven Lankes <sven@lank.es> 1.7-1
  80. - New upstream release
  81. * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2
  82. - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
  83. * Tue Jan 31 2012 Sven Lankes <sven@lank.es> 1.6-1
  84. - New upstream release
  85. * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-2
  86. - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
  87. * Tue Nov 01 2011 Sven Lankes <sven@lank.es> 1.5-1
  88. - New upstream release
  89. - Do the right thing (tm) and revert to $upstream-behaviour:
  90. No longer install tmux setgid and no longer use /var/run/tmux
  91. for sockets. Use "tmux -S /var/run/tmux/tmux-`id -u`/default attach"
  92. if you need to access an "old" tmux session
  93. - tmux can be used as a login shell so add it to /etc/shells
  94. * Sat Apr 16 2011 Sven Lankes <sven@lank.es> 1.4-4
  95. - Add /var/run/tmp to tmpdir.d - fixes rhbz 656704 and 697134
  96. * Sun Apr 10 2011 Sven Lankes <sven@lank.es> 1.4-3
  97. - Fix CVE-2011-1496
  98. - Fixes rhbz #693824
  99. * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-2
  100. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  101. * Tue Dec 28 2010 Filipe Rosset <rosset.filipe@gmail.com> 1.4-1
  102. - New upstream release
  103. * Fri Aug 06 2010 Filipe Rosset <filiperosset@fedoraproject.org> 1.3-2
  104. - Rebuild for F-13
  105. * Mon Jul 19 2010 Sven Lankes <sven@lank.es> 1.3-1
  106. - New upstream release
  107. * Sun Mar 28 2010 Sven Lankes <sven@lank.es> 1.2-1
  108. - New upstream release
  109. - rediff writehard patch
  110. * Mon Nov 09 2009 Sven Lankes <sven@lank.es> 1.1-1
  111. - New upstream release
  112. * Sun Nov 01 2009 Sven Lankes <sven@lank.es> 1.0-2
  113. - Add debian patches
  114. - Add tmux group for improved socket handling
  115. * Sat Oct 24 2009 Sven Lankes <sven@lank.es> 1.0-1
  116. - New upstream release
  117. * Mon Jul 13 2009 Chess Griffin <chess@chessgriffin.com> 0.9-1
  118. - Update to version 0.9.
  119. - Remove sed invocation as this was adopted upstream.
  120. - Remove optflags patch since upstream source now uses ./configure and
  121. detects the flags when passed to make.
  122. * Tue Jun 23 2009 Chess Griffin <chess@chessgriffin.com> 0.8-5
  123. - Note that souce is mostly ISC licensed with some 2 and 3 clause BSD in
  124. compat/.
  125. - Remove fixiquote.patch and instead use a sed invocation in setup.
  126. * Mon Jun 22 2009 Chess Griffin <chess@chessgriffin.com> 0.8-4
  127. - Add optimization flags by patching GNUmakefile and passing LDFLAGS
  128. to make command.
  129. - Use consistent macro format.
  130. - Change examples/* to examples/ and add TODO to docs.
  131. * Sun Jun 21 2009 Chess Griffin <chess@chessgriffin.com> 0.8-3
  132. - Remove fixperms.patch and instead pass them at make install stage.
  133. * Sat Jun 20 2009 Chess Griffin <chess@chessgriffin.com> 0.8-2
  134. - Fix Source0 URL to point to correct upstream source.
  135. - Modify fixperms.patch to set 644 permissions on the tmux.1.gz man page.
  136. - Remove wildcards from 'files' section and replace with specific paths and
  137. filenames.
  138. * Mon Jun 15 2009 Chess Griffin <chess@chessgriffin.com> 0.8-1
  139. - Initial RPM release.