source: projects/specs/trunk/f/fuse/fuse-vl.spec @ 1955

Revision 1955, 6.4 KB checked in by owa, 14 years ago (diff)

rebuilt with rpm-4.8.1

Line 
1Summary:        File System in Userspace (FUSE) utilities
2Summary(ja):    ユーザスペースファイルシステム(FUSE)用のユーティリティ
3Name:           fuse
4Version:        2.8.3
5Release:        3%{?_dist_release}
6
7Group:          System Environment/Base
8License:        GPL
9URL:            http://fuse.sf.net
10
11Source0:        http://dl.sourceforge.net/sourceforge/fuse/%{name}-%{version}.tar.gz
12Source1:        fuse-udev.nodes
13Source2:        fuse-makedev.d-fuse
14Patch0:         fuse-udev_rules.patch
15Patch1:         fuse-openfix.patch
16Patch2:         fuse-CVE-2009-3297.patch
17Patch10:        fuse-2.8.3-chkconfig.patch
18
19BuildRoot:      %{_tmppath}/%{name}-%{version}-root
20Requires(pre):  shadow-utils
21Requires(post): MAKEDEV
22Requires(postun): shadow-utils
23
24Vendor: Project Vine
25Distribution: Vine Linux
26Packager: daisuke, shaolin
27
28
29%description
30With FUSE it is possible to implement a fully functional filesystem in a
31userspace program. This package contains the FUSE userspace tools to
32mount a FUSE filesystem.
33
34%description -l ja
35FUSE を用いることでユーザ空間のプログラムでファイルシステムを実装することが
36可能になります。このパッケージには FUSEファイルシステムをマウントするための
37ユーザ空間ツールが含まれています。
38
39
40%package devel
41Summary:        File System in Userspace (FUSE) devel files
42Group:          Development/Libraries
43Requires:       %{name} = %{version}-%{release}
44Requires:       pkgconfig
45License:        LGPL
46
47%description devel
48With FUSE it is possible to implement a fully functional filesystem in a
49userspace program. This package contains development files (headers,
50pgk-config) to develop FUSE based applications/filesystems.
51
52
53%prep
54%setup -q
55#disable device creation during build/install
56sed -i 's|mknod|echo Disabled: mknod |g' util/Makefile.in
57%patch0 -b .patch0
58%patch10 -p1
59
60%build
61%configure \
62 --disable-static \
63 --disable-kernel-module
64make %{?_smp_mflags}
65
66
67%install
68rm -rf $RPM_BUILD_ROOT
69
70make install DESTDIR=$RPM_BUILD_ROOT
71find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
72# FIXME change from 60 to 99
73install -D -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT/%{_sysconfdir}/udev/makedev.d/99-fuse.nodes
74install -D -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/makedev.d/z-fuse
75# change from 4755 to 0755 to allow stripping -- fixed later in files
76chmod 0755 $RPM_BUILD_ROOT/%{_bindir}/fusermount
77
78
79%clean
80rm -rf $RPM_BUILD_ROOT
81
82
83%preun
84if [ -f /etc/init.d/fuse ] ; then
85    /sbin/service fuse stop >/dev/null 2>&1 ||:
86    /sbin/chkconfig --del fuse ||:
87fi
88       
89%post
90/sbin/ldconfig
91
92%postun
93/sbin/ldconfig
94if [ $1 = 0 ]; then
95 %{_sbindir}/groupdel fuse || :
96fi
97
98
99%files
100%defattr(-,root,root,-)
101%doc AUTHORS ChangeLog COPYING COPYING.LIB FAQ Filesystems NEWS README README.NFS
102/sbin/mount.fuse
103%attr(4754,root,fuse) %{_bindir}/fusermount
104%{_bindir}/ulockmgr_server
105%{_sysconfdir}/init.d/fuse
106%{_sysconfdir}/makedev.d/z-fuse
107%config %{_sysconfdir}/udev/rules.d/99-fuse.rules
108%{_sysconfdir}/udev/makedev.d/99-fuse.nodes
109%{_libdir}/libfuse.so.*
110%{_libdir}/libulockmgr.so.*
111
112%files devel
113%defattr(-,root,root,-)
114%{_libdir}/libfuse.so
115%{_libdir}/libulockmgr.so
116%{_libdir}/pkgconfig/*.pc
117%{_includedir}/fuse.h
118%{_includedir}/ulockmgr.h
119%{_includedir}/fuse
120
121
122%changelog
123* Thu Sep 30 2010 Shu KONNO <owa@bg.wakwak.com> 2.8.3-3
124- rebuilt with rpm-4.8.1 for pkg-config
125
126* Sat May 29 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.8.3-2
127- fix Patch0 to avoid udev warning (NAME="%k" is superfluous etc.)
128- add Patch1 to fix open issue (rhbz #265321)
129- add Patch2 for CVE-2009-3297 (rhbz #558833)
130
131* Wed Apr 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.3-1
132- new upstream release
133- remove upstreamed patch10
134- add patch10 to support chkconfig
135
136* Mon Mar  1 2010 IWAI, Masaharu <iwai@alib.jp> 2.7.4-3
137- SECURITY FIX: CVE-2009-3297
138  - patch from Debian 5.0 fuse_2.7.4-1.1+lenny1 (Patch10)
139
140* Mon Jun 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.4-2
141- update Source2 and Patch0
142  - change udev rules to create /dev/fuse with mode 0666, group root.
143- do not create fuse group in %%pre
144- stop and delete fuse service in %%preun
145
146* Wed Apr 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.4-1
147- new upstream release
148- spec in utf-8
149
150* Thu Apr 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.3-1
151- new upstream release
152
153* Tue May 29 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.5-0vl1
154- new upstream release
155
156* Mon Apr 02 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.3-0vl1
157- initial build for Vine Linux based on ATrpms package
158
159* Sun Feb  4 2007 Axel Thimm <Axel.Thimm@ATrpms.net> - 2.6.3-0_3
160- Update to 2.6.3.
161
162* Thu Feb  1 2007 Axel Thimm <Axel.Thimm@ATrpms.net> - 2.6.2-0_2
163- Update to 2.6.2.
164
165* Fri Jan 07 2007 Paulo Roma <roma@lcg.ufrj.br> 2.6.1-1_1
166- Adapted for building kernel module.
167
168* Tue Dec 26 2006 Peter Lemenkov <lemenkov@gmail.com> 2.6.1-1
169- Ver. 2.6.1
170
171* Sat Nov 25 2006 Peter Lemenkov <lemenkov@gmail.com> 2.6.0-2
172- fixed nasty typo (see bug #217075)
173
174* Fri Nov  3 2006 Peter Lemenkov <lemenkov@gmail.com> 2.6.0-1
175- Ver. 2.6.0
176
177* Sun Oct 29 2006 Peter Lemenkov <lemenkov@gmail.com> 2.5.3-5
178- Fixed udev-rule again
179
180* Sat Oct  7 2006 Peter Lemenkov <lemenkov@gmail.com> 2.5.3-4
181- Fixed udev-rule
182
183* Tue Sep 12 2006 Peter Lemenkov <lemenkov@gmail.com> 2.5.3-3%{?dist}
184- Rebuild for FC6
185
186* Wed May 03 2006 Peter Lemenkov <lemenkov@newmail.ru> 2.5.3-1%{?dist}
187- Update to 2.5.3
188
189* Thu Mar 30 2006 Peter Lemenkov <lemenkov@newmail.ru> 2.5.2-4%{?dist}
190- rebuild
191
192* Mon Feb 13 2006 Peter Lemenkov <lemenkov@newmail.ru> - 2.5.2-3
193- Proper udev rule
194
195* Mon Feb 13 2006 Peter Lemenkov <lemenkov@newmail.ru> - 2.5.2-2
196- Added missing requires
197
198* Tue Feb 07 2006 Peter Lemenkov <lemenkov@newmail.ru> - 2.5.2-1
199- Update to 2.5.2
200- Dropped fuse-mount.fuse.patch
201
202* Wed Nov 23 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.2-1
203- Use dist
204
205* Wed Nov 23 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.2-1
206- Update to 2.4.2 (solves CVE-2005-3531)
207- Update README.fedora
208
209* Sat Nov 12 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.1-3
210- Add README.fedora
211- Add hint to README.fedora and that you have to be member of the group "fuse"
212  in the description
213- Use groupadd instead of fedora-groupadd
214
215* Fri Nov 04 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.1-2
216- Rename packages a bit
217- use makedev.d/40-fuse.nodes
218- fix /sbin/mount.fuse
219- Use a fuse group to restict access to fuse-filesystems
220
221* Fri Oct 28 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.1-1
222- Initial RPM release.
Note: See TracBrowser for help on using the repository browser.