source: projects/specs/trunk/t/tmux/tmux-vl.spec @ 7920

Revision 7920, 4.5 KB checked in by iwaim, 11 years ago (diff)

tmux 1.8-1

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