]> git.proxmox.com Git - mirror_zfs.git/blob - rpm/generic/zfs.spec.in
Initramfs scripts for ZoL.
[mirror_zfs.git] / rpm / generic / zfs.spec.in
1 %global _sbindir /sbin
2 %global _libdir /%{_lib}
3
4 # Set the default udev directory based on distribution.
5 %if %{undefined _udevdir}
6 %if 0%{?fedora} >= 17 || 0%{?rhel} >= 7 || 0%{?centos} >= 7
7 %global _udevdir %{_prefix}/lib/udev
8 %else
9 %global _udevdir /lib/udev
10 %endif
11 %endif
12
13 # Set the default udevrule directory based on distribution.
14 %if %{undefined _udevruledir}
15 %if 0%{?fedora} >= 17 || 0%{?rhel} >= 7 || 0%{?centos} >= 7
16 %global _udevruledir %{_prefix}/lib/udev/rules.d
17 %else
18 %global _udevruledir /lib/udev/rules.d
19 %endif
20 %endif
21
22 # Set the default dracut directory based on distribution.
23 %if %{undefined _dracutdir}
24 %if 0%{?fedora} >= 17 || 0%{?rhel} >= 7 || 0%{?centos} >= 7
25 %global _dracutdir %{_prefix}/lib/dracut
26 %else
27 %global _dracutdir %{_prefix}/share/dracut
28 %endif
29 %endif
30
31 %bcond_with debug
32 %bcond_with blkid
33 %bcond_with systemd
34
35 # Generic enable switch for systemd
36 %if %{with systemd}
37 %define _systemd 1
38 %endif
39
40 # RHEL >= 7 comes with systemd
41 %if 0%{?rhel} >= 7
42 %define _systemd 1
43 %endif
44
45 # Fedora >= 15 comes with systemd, but only >= 18 has
46 # the proper macros
47 %if 0%{?fedora} >= 18
48 %define _systemd 1
49 %endif
50
51 # opensuse >= 12.1 comes with systemd, but only >= 13.1
52 # has the proper macros
53 %if 0%{?suse_version} >= 1310
54 %define _systemd 1
55 %endif
56
57 Name: @PACKAGE@
58 Version: @VERSION@
59 Release: @RELEASE@%{?dist}
60 Summary: Commands to control the kernel modules and libraries
61
62 Group: System Environment/Kernel
63 License: @ZFS_META_LICENSE@
64 URL: http://zfsonlinux.org/
65 Source0: %{name}-%{version}.tar.gz
66 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
67 ExclusiveArch: i386 i686 x86_64
68
69 # May build but untested on ppc/ppc64
70 ExcludeArch: ppc ppc64
71
72 Requires: spl = %{version}
73 Requires: libzpool2 = %{version}
74 Requires: libnvpair1 = %{version}
75 Requires: libuutil1 = %{version}
76 Requires: libzfs2 = %{version}
77 Requires: %{name}-kmod = %{version}
78 Provides: %{name}-kmod-common = %{version}
79
80 # zfs-fuse provides the same commands and man pages that ZoL does. Renaming
81 # those on either side would conflict with all available documentation.
82 Conflicts: zfs-fuse
83
84 %if 0%{?rhel}%{?fedora}%{?suse_version}
85 BuildRequires: zlib-devel
86 BuildRequires: libuuid-devel
87 %if %{with blkid}
88 BuildRequires: libblkid-devel
89 %endif
90 %endif
91 %if 0%{?_systemd}
92 Requires(post): systemd
93 Requires(preun): systemd
94 Requires(postun): systemd
95 BuildRequires: systemd
96 %endif
97
98 %description
99 This package contains the ZFS command line utilities.
100
101 %package -n libzpool2
102 Summary: Native ZFS pool library for Linux
103 Group: System Environment/Kernel
104
105 %description -n libzpool2
106 This package contains the zpool library, which provides support
107 for managing zpools
108
109 %post -n libzpool2 -p /sbin/ldconfig
110 %postun -n libzpool2 -p /sbin/ldconfig
111
112 %package -n libnvpair1
113 Summary: Solaris name-value library for Linux
114 Group: System Environment/Kernel
115
116 %description -n libnvpair1
117 This package contains routines for packing and unpacking name-value
118 pairs. This functionality is used to portably transport data across
119 process boundaries, between kernel and user space, and can be used
120 to write self describing data structures on disk.
121
122 %post -n libnvpair1 -p /sbin/ldconfig
123 %postun -n libnvpair1 -p /sbin/ldconfig
124
125 %package -n libuutil1
126 Summary: Solaris userland utility library for Linux
127 Group: System Environment/Kernel
128
129 %description -n libuutil1
130 This library provides a variety of compatibility functions for ZFS on Linux:
131 * libspl: The Solaris Porting Layer userland library, which provides APIs
132 that make it possible to run Solaris user code in a Linux environment
133 with relatively minimal modification.
134 * libavl: The Adelson-Velskii Landis balanced binary tree manipulation
135 library.
136 * libefi: The Extensible Firmware Interface library for GUID disk
137 partitioning.
138 * libshare: NFS, SMB, and iSCSI service integration for ZFS.
139
140 %post -n libuutil1 -p /sbin/ldconfig
141 %postun -n libuutil1 -p /sbin/ldconfig
142
143 %package -n libzfs2
144 Summary: Native ZFS filesystem library for Linux
145 Group: System Environment/Kernel
146
147 %description -n libzfs2
148 This package provides support for managing ZFS filesystems
149
150 %post -n libzfs2 -p /sbin/ldconfig
151 %postun -n libzfs2 -p /sbin/ldconfig
152
153 %package -n libzfs2-devel
154 Summary: Development headers
155 Group: System Environment/Kernel
156 Requires: libzfs2 = %{version}
157 Requires: libzpool2 = %{version}
158 Requires: libnvpair1 = %{version}
159 Requires: libuutil1 = %{version}
160 Provides: libzpool2-devel
161 Provides: libnvpair1-devel
162 Provides: libuutil1-devel
163 Obsoletes: zfs-devel
164
165 %description -n libzfs2-devel
166 This package contains the header files needed for building additional
167 applications against the ZFS libraries.
168
169 %package test
170 Summary: Test infrastructure
171 Group: System Environment/Kernel
172 Requires: %{name}%{?_isa} = %{version}-%{release}
173 Requires: parted
174 Requires: lsscsi
175 Requires: mdadm
176 Requires: bc
177
178 %description test
179 This package contains test infrastructure and support scripts for
180 validating the file system.
181
182 %package dracut
183 Summary: Dracut module
184 Group: System Environment/Kernel
185 Requires: %{name}%{?_isa} = %{version}-%{release}
186 Requires: dracut
187
188 %description dracut
189 This package contains a dracut module used to construct an initramfs
190 image which is ZFS aware.
191
192 %if 0%{?_initramfs}
193 %package initramfs
194 Summary: Initramfs module
195 Group: System Environment/Kernel
196 Requires: %{name}%{?_isa} = %{version}-%{release}
197 Requires: %{name} = %{version}-%{release}
198 Requires: initramfs-tools
199
200 %description initramfs
201 This package contains a initramfs module used to construct an initramfs
202 image which is ZFS aware.
203 %endif
204
205 %prep
206 %if %{with debug}
207 %define debug --enable-debug
208 %else
209 %define debug --disable-debug
210 %endif
211 %if %{with blkid}
212 %define blkid --with-blkid
213 %else
214 %define blkid --without-blkid
215 %endif
216 %if 0%{?_systemd}
217 %define systemd --enable-systemd --with-systemdunitdir=%{_unitdir} --with-systemdpresetdir=%{_presetdir} --disable-sysvinit
218 %else
219 %define systemd --enable-sysvinit --disable-systemd
220 %endif
221
222 %setup -q
223
224 %build
225 %configure \
226 --with-config=user \
227 --with-udevdir=%{_udevdir} \
228 --with-udevruledir=%{_udevruledir} \
229 --with-dracutdir=%{_dracutdir} \
230 --disable-static \
231 %{debug} \
232 %{blkid} \
233 %{systemd}
234 make %{?_smp_mflags}
235
236 %install
237 %{__rm} -rf $RPM_BUILD_ROOT
238 make install DESTDIR=%{?buildroot}
239 find %{?buildroot}%{_libdir} -name '*.la' -exec rm -f {} \;
240
241 %post
242 %if 0%{?_systemd}
243 %systemd_post zfs.target
244 %else
245 if [ -x /sbin/chkconfig ]; then
246 /sbin/chkconfig --add zfs-import
247 /sbin/chkconfig --add zfs-mount
248 /sbin/chkconfig --add zfs-share
249 /sbin/chkconfig --add zfs-zed
250 fi
251 %endif
252 exit 0
253
254 %preun
255 %if 0%{?_systemd}
256 %systemd_preun zfs.target
257 %else
258 if [ $1 -eq 0 ] && [ -x /sbin/chkconfig ]; then
259 /sbin/chkconfig --del zfs-import
260 /sbin/chkconfig --del zfs-mount
261 /sbin/chkconfig --del zfs-share
262 /sbin/chkconfig --del zfs-zed
263 fi
264 %endif
265 exit 0
266
267 %postun
268 %if 0%{?_systemd}
269 %systemd_postun zfs.target
270 %endif
271
272 %files
273 %{_sbindir}/*
274 %{_bindir}/*
275 %{_libexecdir}/%{name}
276 %{_mandir}/man1/*
277 %{_mandir}/man5/*
278 %{_mandir}/man8/*
279 %{_udevdir}/vdev_id
280 %{_udevdir}/zvol_id
281 %{_udevdir}/rules.d/*
282 %if 0%{?_systemd}
283 /usr/lib/modules-load.d/*
284 %{_unitdir}/*
285 %{_presetdir}/*
286 %else
287 %config(noreplace) %{_sysconfdir}/init.d/*
288 %config(noreplace) %{_initconfdir}/zfs
289 %endif
290 %config(noreplace) %{_sysconfdir}/%{name}
291
292 %files -n libzpool2
293 %{_libdir}/libzpool.so.*
294
295 %files -n libnvpair1
296 %{_libdir}/libnvpair.so.*
297
298 %files -n libuutil1
299 %{_libdir}/libuutil.so.*
300
301 %files -n libzfs2
302 %{_libdir}/libzfs*.so.*
303
304 %files -n libzfs2-devel
305 %{_datadir}/pkgconfig/libzfs.pc
306 %{_datadir}/pkgconfig/libzfs_core.pc
307 %{_libdir}/*.so
308 %{_includedir}/*
309 %doc AUTHORS COPYRIGHT DISCLAIMER
310 %doc OPENSOLARIS.LICENSE README.markdown
311
312 %files test
313 %{_datadir}/%{name}
314
315 %files dracut
316 %doc dracut/README.dracut.markdown
317 %{_dracutdir}/modules.d/*
318
319 %if 0%{?_initramfs}
320 %files initramfs
321 %doc contrib/initramfs/README.initramfs.markdown
322 /usr/share/initramfs-tools/*
323 %else
324 # Since we're not building the initramfs package,
325 # ignore those files.
326 %exclude /usr/share/initramfs-tools
327 %endif
328
329 %changelog
330 * Wed Apr 8 2015 Brian Behlendorf <behlendorf1@llnl.gov> - 0.6.4-1
331 - Released 0.6.4-1
332 * Thu Jun 12 2014 Brian Behlendorf <behlendorf1@llnl.gov> - 0.6.3-1
333 - Released 0.6.3-1
334 * Wed Aug 21 2013 Brian Behlendorf <behlendorf1@llnl.gov> - 0.6.2-1
335 - Released 0.6.2-1
336 * Fri Mar 22 2013 Brian Behlendorf <behlendorf1@llnl.gov> - 0.6.1-1
337 - First official stable release.