]> git.proxmox.com Git - mirror_zfs-debian.git/blob - rpm/generic/zfs.spec.in
f61cfd289060c40e8ae469ef71db59a38088743e
[mirror_zfs-debian.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 # Set the default _initconfdir when undefined.
32 %if %{undefined _initconfdir}
33 %global _initconfdir /etc/sysconfig
34 %endif
35
36 %bcond_with debug
37 %bcond_with systemd
38
39 # Generic enable switch for systemd
40 %if %{with systemd}
41 %define _systemd 1
42 %define systemd_svcs zfs-import-cache.service zfs-import-scan.service zfs-mount.service zfs-share.service zfs-zed.service zfs.target
43 %endif
44
45 # RHEL >= 7 comes with systemd
46 %if 0%{?rhel} >= 7
47 %define _systemd 1
48 %endif
49
50 # Fedora >= 15 comes with systemd, but only >= 18 has
51 # the proper macros
52 %if 0%{?fedora} >= 18
53 %define _systemd 1
54 %endif
55
56 # opensuse >= 12.1 comes with systemd, but only >= 13.1
57 # has the proper macros
58 %if 0%{?suse_version} >= 1310
59 %define _systemd 1
60 %endif
61
62 Name: @PACKAGE@
63 Version: @VERSION@
64 Release: @RELEASE@%{?dist}
65 Summary: Commands to control the kernel modules and libraries
66
67 Group: System Environment/Kernel
68 License: @ZFS_META_LICENSE@
69 URL: http://zfsonlinux.org/
70 Source0: %{name}-%{version}.tar.gz
71 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
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 BuildRequires: libblkid-devel
88 BuildRequires: libudev-devel
89 BuildRequires: libattr-devel
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 # The zpool iostat/status -c scripts call some utilities like lsblk and iostat
99 Requires: util-linux
100 Requires: sysstat
101
102 %description
103 This package contains the ZFS command line utilities.
104
105 %package -n libzpool2
106 Summary: Native ZFS pool library for Linux
107 Group: System Environment/Kernel
108
109 %description -n libzpool2
110 This package contains the zpool library, which provides support
111 for managing zpools
112
113 %post -n libzpool2 -p /sbin/ldconfig
114 %postun -n libzpool2 -p /sbin/ldconfig
115
116 %package -n libnvpair1
117 Summary: Solaris name-value library for Linux
118 Group: System Environment/Kernel
119
120 %description -n libnvpair1
121 This package contains routines for packing and unpacking name-value
122 pairs. This functionality is used to portably transport data across
123 process boundaries, between kernel and user space, and can be used
124 to write self describing data structures on disk.
125
126 %post -n libnvpair1 -p /sbin/ldconfig
127 %postun -n libnvpair1 -p /sbin/ldconfig
128
129 %package -n libuutil1
130 Summary: Solaris userland utility library for Linux
131 Group: System Environment/Kernel
132
133 %description -n libuutil1
134 This library provides a variety of compatibility functions for ZFS on Linux:
135 * libspl: The Solaris Porting Layer userland library, which provides APIs
136 that make it possible to run Solaris user code in a Linux environment
137 with relatively minimal modification.
138 * libavl: The Adelson-Velskii Landis balanced binary tree manipulation
139 library.
140 * libefi: The Extensible Firmware Interface library for GUID disk
141 partitioning.
142 * libshare: NFS, SMB, and iSCSI service integration for ZFS.
143
144 %post -n libuutil1 -p /sbin/ldconfig
145 %postun -n libuutil1 -p /sbin/ldconfig
146
147 %package -n libzfs2
148 Summary: Native ZFS filesystem library for Linux
149 Group: System Environment/Kernel
150
151 %description -n libzfs2
152 This package provides support for managing ZFS filesystems
153
154 %post -n libzfs2 -p /sbin/ldconfig
155 %postun -n libzfs2 -p /sbin/ldconfig
156
157 %package -n libzfs2-devel
158 Summary: Development headers
159 Group: System Environment/Kernel
160 Requires: libzfs2 = %{version}
161 Requires: libzpool2 = %{version}
162 Requires: libnvpair1 = %{version}
163 Requires: libuutil1 = %{version}
164 Provides: libzpool2-devel
165 Provides: libnvpair1-devel
166 Provides: libuutil1-devel
167 Obsoletes: zfs-devel
168
169 %description -n libzfs2-devel
170 This package contains the header files needed for building additional
171 applications against the ZFS libraries.
172
173 %package test
174 Summary: Test infrastructure
175 Group: System Environment/Kernel
176 Requires: %{name}%{?_isa} = %{version}-%{release}
177 Requires: parted
178 Requires: lsscsi
179 Requires: mdadm
180 Requires: bc
181 Requires: ksh
182 Requires: fio
183 Requires: acl
184 Requires: sudo
185 Requires: sysstat
186
187 %description test
188 This package contains test infrastructure and support scripts for
189 validating the file system.
190
191 %package dracut
192 Summary: Dracut module
193 Group: System Environment/Kernel
194 Requires: %{name}%{?_isa} = %{version}-%{release}
195 Requires: dracut
196
197 %description dracut
198 This package contains a dracut module used to construct an initramfs
199 image which is ZFS aware.
200
201 %if 0%{?_initramfs}
202 %package initramfs
203 Summary: Initramfs module
204 Group: System Environment/Kernel
205 Requires: %{name}%{?_isa} = %{version}-%{release}
206 Requires: %{name} = %{version}-%{release}
207 Requires: initramfs-tools
208
209 %description initramfs
210 This package contains a initramfs module used to construct an initramfs
211 image which is ZFS aware.
212 %endif
213
214 %prep
215 %if %{with debug}
216 %define debug --enable-debug
217 %else
218 %define debug --disable-debug
219 %endif
220 %if 0%{?_systemd}
221 %define systemd --enable-systemd --with-systemdunitdir=%{_unitdir} --with-systemdpresetdir=%{_presetdir} --disable-sysvinit
222 %else
223 %define systemd --enable-sysvinit --disable-systemd
224 %endif
225
226 %setup -q
227
228 %build
229 %configure \
230 --with-config=user \
231 --with-udevdir=%{_udevdir} \
232 --with-udevruledir=%{_udevruledir} \
233 --with-dracutdir=%{_dracutdir} \
234 --disable-static \
235 %{debug} \
236 %{systemd}
237 make %{?_smp_mflags}
238
239 %install
240 %{__rm} -rf $RPM_BUILD_ROOT
241 make install DESTDIR=%{?buildroot}
242 find %{?buildroot}%{_libdir} -name '*.la' -exec rm -f {} \;
243
244 %post
245 %if 0%{?_systemd}
246 %systemd_post %{systemd_svcs}
247 %else
248 if [ -x /sbin/chkconfig ]; then
249 /sbin/chkconfig --add zfs-import
250 /sbin/chkconfig --add zfs-mount
251 /sbin/chkconfig --add zfs-share
252 /sbin/chkconfig --add zfs-zed
253 fi
254 %endif
255 exit 0
256
257 %preun
258 %if 0%{?_systemd}
259 %systemd_preun %{systemd_svcs}
260 %else
261 if [ "$1" = "0" ] && [ -x /sbin/chkconfig ]; then
262 /sbin/chkconfig --del zfs-import
263 /sbin/chkconfig --del zfs-mount
264 /sbin/chkconfig --del zfs-share
265 /sbin/chkconfig --del zfs-zed
266 fi
267 %endif
268 exit 0
269
270 %postun
271 %if 0%{?_systemd}
272 %systemd_postun %{systemd_svcs}
273 %endif
274
275 %files
276 %{_sbindir}/*
277 %{_bindir}/*
278 %{_libexecdir}/%{name}
279 %{_mandir}/man1/*
280 %{_mandir}/man5/*
281 %{_mandir}/man8/*
282 %{_udevdir}/vdev_id
283 %{_udevdir}/zvol_id
284 %{_udevdir}/rules.d/*
285 %if 0%{?_systemd}
286 /usr/lib/modules-load.d/*
287 %{_unitdir}/*
288 %{_presetdir}/*
289 %else
290 %config(noreplace) %{_sysconfdir}/init.d/*
291 %config(noreplace) %{_initconfdir}/zfs
292 %endif
293 %config(noreplace) %{_sysconfdir}/%{name}
294 %attr(440, root, root) %config(noreplace) %{_sysconfdir}/sudoers.d/*
295
296 %files -n libzpool2
297 %{_libdir}/libzpool.so.*
298
299 %files -n libnvpair1
300 %{_libdir}/libnvpair.so.*
301
302 %files -n libuutil1
303 %{_libdir}/libuutil.so.*
304
305 %files -n libzfs2
306 %{_libdir}/libzfs*.so.*
307
308 %files -n libzfs2-devel
309 %{_datadir}/pkgconfig/libzfs.pc
310 %{_datadir}/pkgconfig/libzfs_core.pc
311 %{_libdir}/*.so
312 %{_includedir}/*
313 %doc AUTHORS COPYRIGHT DISCLAIMER
314 %doc OPENSOLARIS.LICENSE README.markdown
315
316 %files test
317 %{_datadir}/%{name}
318
319 %files dracut
320 %doc contrib/dracut/README.dracut.markdown
321 %{_dracutdir}/modules.d/*
322
323 %if 0%{?_initramfs}
324 %files initramfs
325 %doc contrib/initramfs/README.initramfs.markdown
326 /usr/share/initramfs-tools/*
327 %else
328 # Since we're not building the initramfs package,
329 # ignore those files.
330 %exclude /usr/share/initramfs-tools
331 %endif
332
333 %changelog
334 * Wed Oct 18 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.3-1
335 - Released 0.7.3-1, detailed release notes are available at:
336 - https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.3
337 * Fri Sep 22 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.2-1
338 - Released 0.7.2-1, detailed release notes are available at:
339 - https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.2
340 * Tue Aug 8 2017 Tony Hutter <hutter2@llnl.gov> - 0.7.1-1
341 - Released 0.7.1-1, detailed release notes are available at:
342 - https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.1
343 * Wed Jul 26 2017 Brian Behlendorf <behlendorf1@llnl.gov> - 0.7.0-1
344 - Released 0.7.0-1, detailed release notes are available at:
345 - https://github.com/zfsonlinux/zfs/releases/tag/zfs-0.7.0