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

Revision 7408, 4.4 KB checked in by iwaim, 11 years ago (diff)

tmux 1.7-1

Line 
1%define ver 1.7
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 Jan 18 2013 IWAI, Masaharu <iwai@alib.jp> 1.7-1
54- initial build for Vine Linux
55
56* Sat Oct 13 2012 Sven Lankes <sven@lank.es> 1.7-1
57- New upstream release
58
59* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2
60- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
61
62* Tue Jan 31 2012 Sven Lankes <sven@lank.es> 1.6-1
63- New upstream release
64
65* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-2
66- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
67
68* Tue Nov 01 2011 Sven Lankes <sven@lank.es> 1.5-1
69- New upstream release
70- Do the right thing (tm) and revert to $upstream-behaviour:
71   No longer install tmux setgid and no longer use /var/run/tmux
72   for sockets. Use "tmux -S /var/run/tmux/tmux-`id -u`/default attach"
73   if you need to access an "old" tmux session
74- tmux can be used as a login shell so add it to /etc/shells
75
76* Sat Apr 16 2011 Sven Lankes <sven@lank.es> 1.4-4
77- Add /var/run/tmp to tmpdir.d - fixes rhbz 656704 and 697134
78
79* Sun Apr 10 2011 Sven Lankes <sven@lank.es> 1.4-3
80- Fix CVE-2011-1496
81- Fixes rhbz #693824
82
83* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-2
84- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
85
86* Tue Dec 28 2010 Filipe Rosset <rosset.filipe@gmail.com> 1.4-1
87- New upstream release
88
89* Fri Aug 06 2010 Filipe Rosset <filiperosset@fedoraproject.org> 1.3-2
90- Rebuild for F-13
91
92* Mon Jul 19 2010 Sven Lankes <sven@lank.es> 1.3-1
93- New upstream release
94
95* Sun Mar 28 2010 Sven Lankes <sven@lank.es> 1.2-1
96- New upstream release
97- rediff writehard patch
98
99* Mon Nov 09 2009 Sven Lankes <sven@lank.es> 1.1-1
100- New upstream release
101
102* Sun Nov 01 2009 Sven Lankes <sven@lank.es> 1.0-2
103- Add debian patches
104- Add tmux group for improved socket handling
105
106* Sat Oct 24 2009 Sven Lankes <sven@lank.es> 1.0-1
107- New upstream release
108
109* Mon Jul 13 2009 Chess Griffin <chess@chessgriffin.com> 0.9-1
110- Update to version 0.9.
111- Remove sed invocation as this was adopted upstream.
112- Remove optflags patch since upstream source now uses ./configure and
113  detects the flags when passed to make.
114
115* Tue Jun 23 2009 Chess Griffin <chess@chessgriffin.com> 0.8-5
116- Note that souce is mostly ISC licensed with some 2 and 3 clause BSD in
117  compat/.
118- Remove fixiquote.patch and instead use a sed invocation in setup.
119
120* Mon Jun 22 2009 Chess Griffin <chess@chessgriffin.com> 0.8-4
121- Add optimization flags by patching GNUmakefile and passing LDFLAGS
122  to make command.
123- Use consistent macro format.
124- Change examples/* to examples/ and add TODO to docs.
125
126* Sun Jun 21 2009 Chess Griffin <chess@chessgriffin.com> 0.8-3
127- Remove fixperms.patch and instead pass them at make install stage.
128
129* Sat Jun 20 2009 Chess Griffin <chess@chessgriffin.com> 0.8-2
130- Fix Source0 URL to point to correct upstream source.
131- Modify fixperms.patch to set 644 permissions on the tmux.1.gz man page.
132- Remove wildcards from 'files' section and replace with specific paths and
133  filenames.
134
135* Mon Jun 15 2009 Chess Griffin <chess@chessgriffin.com> 0.8-1
136- Initial RPM release.
Note: See TracBrowser for help on using the repository browser.