fuse/fuse.spec

274 lines
8.0 KiB
RPMSpec
Raw Normal View History

Name: fuse
2009-09-28 09:17:00 +00:00
Version: 2.8.1
2009-09-16 08:28:02 +00:00
Release: 1%{?dist}
Summary: File System in Userspace (FUSE) utilities
Group: System Environment/Base
2008-01-21 15:05:36 +00:00
License: GPL+
URL: http://fuse.sf.net
2007-05-12 13:51:26 +00:00
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
2009-01-28 15:50:11 +00:00
Source1: fuse-udev.nodes
Source2: fuse-makedev.d-fuse
2009-01-28 15:50:11 +00:00
Patch0: fuse-udev_rules.patch
Patch1: fuse-openfix.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
2009-01-28 15:50:11 +00:00
Requires: kernel >= 2.6.14
Requires: which
BuildRequires: libselinux-devel
2009-09-28 09:17:00 +00:00
Requires(post): MAKEDEV
Requires(preun): chkconfig
Requires(preun): initscripts
2008-02-20 21:38:16 +00:00
%description
2008-07-12 06:04:30 +00:00
With FUSE it is possible to implement a fully functional filesystem in a
userspace program. This package contains the FUSE userspace tools to
mount a FUSE filesystem.
%package libs
Summary: File System in Userspace (FUSE) libraries
Group: System Environment/Libraries
2008-01-21 15:05:36 +00:00
License: LGPLv2+
%description libs
2008-07-12 06:04:30 +00:00
Devel With FUSE it is possible to implement a fully functional filesystem in a
userspace program. This package contains the FUSE libraries.
%package devel
Summary: File System in Userspace (FUSE) devel files
Group: Development/Libraries
2009-01-28 15:50:11 +00:00
Requires: %{name}-libs = %{version}-%{release}
Requires: pkgconfig
2008-01-21 15:05:36 +00:00
License: LGPLv2+
%description devel
2008-07-12 06:04:30 +00:00
With FUSE it is possible to implement a fully functional filesystem in a
userspace program. This package contains development files (headers,
pgk-config) to develop FUSE based applications/filesystems.
%prep
%setup -q
#disable device creation during build/install
sed -i 's|mknod|echo Disabled: mknod |g' util/Makefile.in
2008-02-20 21:38:16 +00:00
%patch0 -p0 -b .patch0
%patch1 -p0 -b .patch1
%build
2007-07-22 05:58:39 +00:00
# Can't pass --disable-static here, or else the utils don't build
%configure \
2007-07-22 05:58:39 +00:00
--libdir=/%{_lib} \
--bindir=/bin \
--exec-prefix=/
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
# FIXME change from 60 to 99
2009-01-28 15:50:11 +00:00
install -D -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/udev/makedev.d/99-fuse.nodes
install -D -p -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/makedev.d/z-fuse
# change from 4755 to 0755 to allow stripping -- fixed later in files
2007-07-22 05:58:39 +00:00
chmod 0755 $RPM_BUILD_ROOT/bin/fusermount
# Put pc file in correct place
mkdir -p $RPM_BUILD_ROOT%{_libdir}
mv $RPM_BUILD_ROOT/%{_lib}/pkgconfig $RPM_BUILD_ROOT%{_libdir}
2007-07-22 05:58:39 +00:00
# Get rid of static libs
rm -f $RPM_BUILD_ROOT/%{_lib}/*.a
2009-01-28 15:50:11 +00:00
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/init.d/fuse
# Compatibility symlinks
mkdir -p $RPM_BUILD_ROOT%{_bindir}
cd $RPM_BUILD_ROOT%{_bindir}
ln -s /bin/fusermount fusermount
ln -s /bin/ulockmgr_server ulockmgr_server
%clean
rm -rf $RPM_BUILD_ROOT
%post
/sbin/MAKEDEV fuse
2008-02-20 21:38:16 +00:00
%preun
2009-01-28 15:50:11 +00:00
if [ -f /etc/init.d/fuse ] ; then
/sbin/service fuse stop >/dev/null 2>&1
/sbin/chkconfig --del fuse
2008-02-20 21:38:16 +00:00
fi
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
%files
2007-02-22 14:23:20 +00:00
%defattr(-,root,root,-)
2008-02-20 21:38:16 +00:00
%doc AUTHORS ChangeLog COPYING FAQ Filesystems NEWS README README.NFS
/sbin/mount.fuse
2008-02-28 10:50:59 +00:00
%attr(4755,root,root) /bin/fusermount
2007-07-22 05:58:39 +00:00
/bin/ulockmgr_server
%{_sysconfdir}/makedev.d/z-fuse
# Compat symlinks
%{_bindir}/fusermount
%{_bindir}/ulockmgr_server
%config %{_sysconfdir}/udev/rules.d/99-fuse.rules
%config %{_sysconfdir}/udev/makedev.d/99-fuse.nodes
%files libs
2007-02-22 14:23:20 +00:00
%defattr(-,root,root,-)
%doc COPYING.LIB
2007-07-22 05:58:39 +00:00
/%{_lib}/libfuse.so.*
/%{_lib}/libulockmgr.so.*
%files devel
%defattr(-,root,root,-)
2007-07-22 05:58:39 +00:00
/%{_lib}/libfuse.so
/%{_lib}/libulockmgr.so
%{_libdir}/pkgconfig/*.pc
%{_includedir}/fuse.h
%{_includedir}/ulockmgr.h
%{_includedir}/fuse
%changelog
2009-09-28 09:17:00 +00:00
* Thu Sep 17 2009 Peter Lemenkov <lemenkov@gmail.com> 2.8.1-1
- Ver. 2.8.1
2009-09-16 08:28:02 +00:00
* Wed Aug 19 2009 Peter Lemenkov <lemenkov@gmail.com> 2.8.0-1
- Ver. 2.8.0
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2009-01-28 15:50:11 +00:00
* Wed Jan 28 2009 Peter Lemenkov <lemenkov@gmail.com> 2.7.4-2
- Fixed BZ#479581
2008-09-28 10:32:57 +00:00
* Sat Aug 23 2008 Peter Lemenkov <lemenkov@gmail.com> 2.7.4-1
- Ver. 2.7.4
2008-07-12 06:04:30 +00:00
* Sat Jul 12 2008 Peter Lemenkov <lemenkov@gmail.com> 2.7.3-3
- Fixed initscripts (BZ#441284)
2008-02-28 10:50:59 +00:00
* Thu Feb 28 2008 Peter Lemenkov <lemenkov@gmail.com> 2.7.3-2
- Fixed BZ#434881
2008-02-20 21:38:16 +00:00
* Wed Feb 20 2008 Peter Lemenkov <lemenkov@gmail.com> 2.7.3-1
- Ver. 2.7.3
- Removed usergroup fuse
- Added chkconfig support (BZ#228088)
2008-02-19 18:36:38 +00:00
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.7.2-2
- Autorebuild for GCC 4.3
2008-01-21 15:05:36 +00:00
* Mon Jan 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.2-1
- bump to 2.7.2
- fix license tag
* Sun Nov 4 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-9
- fix initscript to work with chkconfig
2007-10-01 10:28:03 +00:00
* Mon Oct 1 2007 Peter Lemenkov <lemenkov@gmail.com> 2.7.0-8
- Added Require: which (BZ#312511)
2007-09-21 17:00:53 +00:00
* Fri Sep 21 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-7
- revert udev rules change
2007-09-20 19:59:00 +00:00
* Thu Sep 20 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-6
- change udev rules so that /dev/fuse is chmod 666 (bz 298651)
2007-08-29 21:24:37 +00:00
* Wed Aug 29 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-5
- fix open issue (bz 265321)
2007-08-29 05:21:13 +00:00
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.7.0-4
- Rebuild for selinux ppc32 issue.
* Sun Jul 22 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-3
- put pkgconfig file in correct place
- enable compat symlinks for files in /bin
2007-07-22 05:58:39 +00:00
* Sat Jul 21 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.0-2
- redefine exec_prefix to /
- redefine bindir to /bin
- redefine libdir to %%{_lib}
- don't pass --disable-static to configure
- manually rm generated static libs
* Wed Jul 18 2007 Peter Lemenkov <lemenkov@gmail.com> 2.7.0-1
- Version 2.7.0
- Redefined exec_prefix due to demands from NTFS-3G
2006-03-30 06:33:08 +00:00
* Wed Jun 6 2007 Peter Lemenkov <lemenkov@gmail.com> 2.6.5-2
- Add BR libselinux-devel (bug #235145)
- Config files properly marked as config (bug #211122)
2007-05-12 13:51:26 +00:00
* Sat May 12 2007 Peter Lemenkov <lemenkov@gmail.com> 2.6.5-1
- Version 2.6.5
2007-02-22 14:23:20 +00:00
* Thu Feb 22 2007 Peter Lemenkov <lemenkov@gmail.com> 2.6.3-2
- Fixed bug #229642
* Wed Feb 7 2007 Peter Lemenkov <lemenkov@gmail.com> 2.6.3-1
* Ver. 2.6.3
* Tue Dec 26 2006 Peter Lemenkov <lemenkov@gmail.com> 2.6.1-1
- Ver. 2.6.1
2006-11-25 10:43:21 +00:00
* Sat Nov 25 2006 Peter Lemenkov <lemenkov@gmail.com> 2.6.0-2
- fixed nasty typo (see bug #217075)
* Fri Nov 3 2006 Peter Lemenkov <lemenkov@gmail.com> 2.6.0-1
- Ver. 2.6.0
2006-10-29 19:30:32 +00:00
* Sun Oct 29 2006 Peter Lemenkov <lemenkov@gmail.com> 2.5.3-5
- Fixed udev-rule again
2006-10-07 06:47:05 +00:00
* Sat Oct 7 2006 Peter Lemenkov <lemenkov@gmail.com> 2.5.3-4
- Fixed udev-rule
2006-09-12 05:08:34 +00:00
* Tue Sep 12 2006 Peter Lemenkov <lemenkov@gmail.com> 2.5.3-3%{?dist}
- Rebuild for FC6
* Wed May 03 2006 Peter Lemenkov <lemenkov@newmail.ru> 2.5.3-1%{?dist}
- Update to 2.5.3
2006-03-30 06:33:08 +00:00
* Thu Mar 30 2006 Peter Lemenkov <lemenkov@newmail.ru> 2.5.2-4%{?dist}
- rebuild
2006-02-13 11:10:34 +00:00
* Mon Feb 13 2006 Peter Lemenkov <lemenkov@newmail.ru> - 2.5.2-3
- Proper udev rule
2006-02-13 07:35:30 +00:00
* Mon Feb 13 2006 Peter Lemenkov <lemenkov@newmail.ru> - 2.5.2-2
- Added missing requires
2006-02-07 20:52:31 +00:00
* Tue Feb 07 2006 Peter Lemenkov <lemenkov@newmail.ru> - 2.5.2-1
- Update to 2.5.2
- Dropped fuse-mount.fuse.patch
* Wed Nov 23 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.2-1
- Use dist
* Wed Nov 23 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.2-1
- Update to 2.4.2 (solves CVE-2005-3531)
- Update README.fedora
* Sat Nov 12 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.1-3
- Add README.fedora
- Add hint to README.fedora and that you have to be member of the group "fuse"
in the description
- Use groupadd instead of fedora-groupadd
* Fri Nov 04 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.1-2
- Rename packages a bit
- use makedev.d/40-fuse.nodes
- fix /sbin/mount.fuse
- Use a fuse group to restict access to fuse-filesystems
* Fri Oct 28 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.4.1-1
- Initial RPM release.