forked from samzyy/DB-based-replicated-filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysqlfs.spec
52 lines (40 loc) · 1.6 KB
/
mysqlfs.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Summary: FUSE/MySQL Filesystem
Name: mysqlfs
Version: 0.4.0
Release: %(echo '$Id: mysqlfs.spec.in 55 2009-07-12 22:23:33Z chickenandporn $'|cut -d " " -f 3|cut -d . -f 2)
License: GPL2
Group: System Environment/Filesystems
URL: http://mysqlfs.sourceforge.net/
Source: %{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
%description
MySQLfs is Linux userspace filesystem which stores data in a MySQL database. It uses FUSE to interface with the kernel.
%prep
%setup
%build
%configure && make
%install
make install DESTDIR=%{buildroot}
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root, 0755)
%{_bindir}/mysqlfs
%{_datadir}/%{name}-%{version}/schema.sql
%{_datadir}/%{name}-%{version}/install.sql
%changelog
* Sun Jul 12 2009 Allan Clark <[email protected]> - 0.4.0
- promoted 0.3.99.2 (meatware version 0.4.0-rc3) to 0.4.0, unchanged
* Wed Jul 1 2009 Allan Clark <[email protected]> - 0.3.99.2
- meatware version 0.4.0-rc3
- changes based on comments in http://www.linux.com/archive/feature/127055 (ie install.sql)
- resolves bug # 1773343 (usage() ) (includes switch to fuse_opt option-parsing)
- resolves bug # 1849644 (configure)
- resolves bug # 2096705 (format string) (no-op: the formatting looks fine)
* Sun Jun 21 2009 Allan Clark <[email protected]> - 0.3.99.1
- meatware version 0.4.0-rc2
- checks for doxygen, builds API docs
* Thu Jun 4 2009 Allan Clark <[email protected]> - 0.3.99.0
- meatware version 0.4.0-rc1
- passes distcheck
- Initial package (please, how about a basic X.Y.Z.Q version? strcmp("0.4.0-rc1","0.4.0") is misleading.