-
Notifications
You must be signed in to change notification settings - Fork 36
/
plfs.spec
250 lines (219 loc) · 7.59 KB
/
plfs.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
%define debug_package %{nil}
%define _release 1
# major version of PLFS
%define pmajor 2
# minor version of PLFS
%define pminor 5
# patch version of PLFS
%define ppatch 0
%if %{ppatch}==0
%define pversion %{pmajor}.%{pminor}
%else
%define pversion %{pmajor}.%{pminor}.%{ppatch}
%endif
Name: plfs
Summary: plfs - Parallel Log Structured File System
Version: %{pversion}
Release: %{_release}%{?dist}
License: LANS LLC
Group: System Environment/Filesystems
Source: plfs-%{version}.tar.bz2
URL: http://institutes.lanl.gov/plfs
BuildRoot: %{_tmppath}/plfs-%{version}-root
%if 0%{?suse_version}
Requires: fuse, libfuse2
%else
Requires: fuse, fuse-libs
%endif
Requires: plfs-lib
BuildRequires: fuse-devel, pkgconfig
%description
Parallel Log Structured File System
transparent filesystem middleware layer intended to speed up
small N to 1 strided write patterns to a parallel file system.
%package lib
Summary: plfs - Parallel Log Structured File System library
Group: System Environment/Filesystems
%description lib
Parallel Log Structured File System library
transparent filesystem middleware layer intended to speed up
small N to 1 strided write patterns to a parallel file system.
%prep
%{__rm} -rf %{buildroot}
%setup -q -n plfs-%{version}
%build
cmake -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
-DLIBDIR:PATH=%{_libdir} \
-DBINDIR:PATH=%{_bindir} \
-DSBINDIR:PATH=%{_sbindir} \
-DINCLUDEDIR:PATH=%{_includedir} \
-DMANDIR:PATH=%{_mandir} \
-DADMIN_TOOLS=yes
%{__make}
%install
%{__mkdir_p} %{buildroot}{%{_sbindir},%{_bindir},%{_libdir}}
%{__mkdir_p} %{buildroot}%{_includedir}/plfs
# create the directories and files for init.d
%{__mkdir_p} %{buildroot}%{_initrddir}
%{__mkdir_p} %{buildroot}%{_sysconfdir}/sysconfig
%if 0%{?suse_version}
%{__install} -m 0755 contrib/init.d/plfs.init.suse %{buildroot}%{_initrddir}/plfs
%else
%{__install} -m 0755 contrib/init.d/plfs.init %{buildroot}%{_initrddir}/plfs
%endif
%{__install} -m 0644 contrib/init.d/plfs.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/plfs
%{__make} install DESTDIR=$RPM_BUILD_ROOT
cp -a src/COPYRIGHT.h .
%clean
if [ %{buildroot} != "/" ]; then
%{__rm} -rf %{buildroot}
fi
%post
if [ "$1" = "1" ]; then
if [ -x /sbin/chkconfig ] ; then
/sbin/chkconfig --add plfs
fi
fi
%preun
if [ "$1" = "0" ]; then
/sbin/service plfs stop
if [ -x /sbin/chkconfig ] ; then
/sbin/chkconfig --del plfs
fi
fi
%files
%defattr(-,root,root,0755)
%{_sbindir}/plfs
%config %{_initrddir}/plfs
%defattr(-,root,root,0644)
%config(noreplace) %{_sysconfdir}/sysconfig/plfs
%{_mandir}/man1/plfs.1.gz
%files lib
%defattr(-,root,root,0755)
%{_sbindir}/dcon
%{_sbindir}/findmesgbuf
%{_sbindir}/plfs_map
%{_sbindir}/plfs_query
%{_sbindir}/plfs_recover
%{_bindir}/plfs_check_config
%{_bindir}/plfs_flatten_index
%{_bindir}/plfs_ls
%{_bindir}/plfs_version
%{_libdir}/libplfs.a
%{_libdir}/libplfs.so
%{_libdir}/libplfs.so.*
%defattr(-,root,root,0644)
%{_includedir}/plfs/COPYRIGHT.h
%{_includedir}/plfs/mlogfacs.h
%{_includedir}/plfs/plfs_internal.h
%{_includedir}/plfs/Util.h
%{_includedir}/plfs.h
%{_includedir}/plfs_error.h
%doc COPYRIGHT.h
%{_mandir}/man1/dcon.1.gz
%{_mandir}/man1/findmesgbuf.1.gz
%{_mandir}/man1/plfs_check_config.1.gz
%{_mandir}/man1/plfs_flatten_index.1.gz
%{_mandir}/man1/plfs_map.1.gz
%{_mandir}/man1/plfs_recover.1.gz
%{_mandir}/man1/plfs_query.1.gz
%{_mandir}/man1/plfs_version.1.gz
%{_mandir}/man1/plfs_ls.1.gz
%{_mandir}/man5/plfsrc.5.gz
%{_mandir}/man3/is_plfs_path.3.gz
%{_mandir}/man3/plfs.3.gz
%{_mandir}/man3/plfs_access.3.gz
%{_mandir}/man3/plfs_chmod.3.gz
%{_mandir}/man3/plfs_chown.3.gz
%{_mandir}/man3/plfs_close.3.gz
%{_mandir}/man3/plfs_closedir_c.3.gz
%{_mandir}/man3/plfs_create.3.gz
%{_mandir}/man3/plfs_flatten_index.3.gz
%{_mandir}/man3/plfs_flush_writes.3.gz
%{_mandir}/man3/plfs_getattr.3.gz
%{_mandir}/man3/plfs_get_filetype.3.gz
%{_mandir}/man3/plfs_getxattr.3.gz
%{_mandir}/man3/plfs_invalidate_read_cache.3.gz
%{_mandir}/man3/plfs_link.3.gz
%{_mandir}/man3/plfs_mkdir.3.gz
%{_mandir}/man3/plfs_mode.3.gz
%{_mandir}/man3/plfs_open.3.gz
%{_mandir}/man3/plfs_opendir_c.3.gz
%{_mandir}/man3/plfs_query.3.gz
%{_mandir}/man3/plfs_read.3.gz
%{_mandir}/man3/plfs_readdir.3.gz
%{_mandir}/man3/plfs_readdir_c.3.gz
%{_mandir}/man3/plfs_readlink.3.gz
%{_mandir}/man3/plfs_rename.3.gz
%{_mandir}/man3/plfs_rmdir.3.gz
%{_mandir}/man3/plfs_setxattr.3.gz
%{_mandir}/man3/plfs_statvfs.3.gz
%{_mandir}/man3/plfs_symlink.3.gz
%{_mandir}/man3/plfs_sync.3.gz
%{_mandir}/man3/plfs_trunc.3.gz
%{_mandir}/man3/plfs_unlink.3.gz
%{_mandir}/man3/plfs_utime.3.gz
%{_mandir}/man3/plfs_write.3.gz
%{_mandir}/man7/plfs.7.gz
%changelog
* Wed Oct 30 2013 David Shrader <[email protected]>
- Update to PLFS v2.5rc1
- Implement a process that can handle either a 2-member or 3-member version
string without having to modify the spec file beyond the actual version
numbers. That is, when changing PLFS versions, it is only necessary to
update the actual version numbers and nothing else in the spec file.
* Wed Jul 17 2013 Zhang Jingwang <[email protected]>
- Remove the YAML library packaged with PLFS. It will be included in the
PLFS library directly.
* Thu May 23 2013 David Shrader <[email protected]>
- use _mandir for directory to put man pages in instead of constructed path
based on _prefix.
- Update to v2.4rc2.
* Wed May 22 2013 David Shrader <[email protected]>
- Update to v2.4rc1. A new build system is in use in 2.4. The YAML library is now
packaged with PLFS.
* Mon Jul 2 2012 David Shrader <[email protected]>
- Added dcon, findmesgbuf, and mlogfacs.h.
- Moved all binaries except plfs into the plfs-lib rpm as they will be useful
when using just the library. Also moved the respective man pages.
- Converted use of /etc to %{_sysconfdir} to help keep PLFS in line with
distributions' standards of where to put system configuration files.
* Tue May 3 2011 Ben McClelland <[email protected]>
- suse has different dependencies than redhat put in distro specifics
- add plfs_recover, plfs_query, plfs_version and respective man pages
* Sat Jan 29 2011 Ben McClelland <[email protected]>
- Fixed the getattr bug
- fixed ADIO parse conf error
- added global_summary_dir to the plfsrc
- fixed tools/plfs_flatten_index
* Fri Jan 7 2011 Ben McClelland <[email protected]>
- Fixed a bug in rename.
- version 1.1.7
* Wed Jan 5 2011 Ben McClelland <[email protected]>
- Added support for a statfs override in the plfsrc file in response to ticket 35609.
- Bug fix for symbolic links. I swear this is the second time I fixed this bug
- Bug fix in the multiple mount point parsing (unitialized string pointer)
- Added the multiple mount point parsing in plfsrc
- Index flattening in ADIO close for write
- Index broadcast in ADIO open for read
* Thu Jul 29 2010 Ben McClelland <[email protected]>
- switched to configure
- clean up some unnecessary .h files
- plfsrc is the new mapping/config file to try to hide backend from users more
- shared objects available
- VERSION and VERSION.LAYOUT added for compatibility checks
* Mon Jul 26 2010 Ben McClelland <[email protected]>
- combined lib and fuse spec
- version 0.1.6 currently in trunk
* Wed Apr 21 2010 Ben McClelland <[email protected]>
- version 0.5.1 changed from internal versioing: see detailed Changelog in svn
- split out fuse version and library spec
* Fri Aug 21 2009 Ben McClelland <[email protected]> 0.0.1.2-2
- "This version now supports links and it seems more stable" -John
- added Milo's patch to count skips
- Container extra_attempts
* Thu May 14 2009 Ben McClelland <[email protected]> 0.0.1.2-1
- new verion of plfs
- fixed version definition
* Wed Feb 11 2009 Ben McClelland <[email protected]> 0.0.1.0-1
- Initial package version