diff options
author | Brian Behlendorf <[email protected]> | 2012-01-17 16:20:43 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-01-18 12:19:52 -0800 |
commit | b4b599d2508296a9dac0abe29532fc0884f299b7 (patch) | |
tree | 9a7d8ae8899b18c334d6ffdcc622e7f5228e9fe5 /zfs.spec.in | |
parent | b40a77aefca3d0832396edd35f597100d152f163 (diff) |
Fix rpm dependencies
This change updates the rpm spec files to have strictly correct
package dependencies. That means a few things:
* The zfs-modules package is now tied to a specific build of
the spl-modules packages based on the kernel version. This
ensures that the correct spl-modules packages will always get
installed and not just the newest.
* The zfs package now requires both the zfs-modules and spl
packages. Thus a 'yum install zfs' will pull in the minimal
set of packages required for a functional system.
* The zfs-devel packages now require the zfs package to be
installed which is normal behavior for -devel packages.
* Remove the redundant distribution release extension. This
is already added once because it is part of the kernel package
release name.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'zfs.spec.in')
-rw-r--r-- | zfs.spec.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/zfs.spec.in b/zfs.spec.in index 6d8734479..0066c8315 100644 --- a/zfs.spec.in +++ b/zfs.spec.in @@ -17,7 +17,7 @@ License: @ZFS_META_LICENSE@ URL: git://github.com/zfsonlinux/zfs.git BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id} -un) Source: %{name}-%{version}.tar.gz -Requires: zlib e2fsprogs +Requires: zfs-modules spl zlib e2fsprogs BuildRequires: zlib-devel e2fsprogs-devel %description @@ -28,10 +28,10 @@ for the zfs file system. Summary: ZFS File System User Headers Group: Development/Libraries %if %{defined ch5} || %{defined el6} || %{defined fc12} -Requires: zlib libuuid libblkid +Requires: zfs zlib libuuid libblkid BuildRequires: zlib-devel libuuid-devel libblkid-devel %else -Requires: zlib e2fsprogs +Requires: zfs zlib e2fsprogs BuildRequires: zlib-devel e2fsprogs-devel %endif @@ -42,7 +42,7 @@ additional applications against the %{name} libraries. %package test Summary: ZFS File System Test Infrastructure Group: Utilities/System -Requires: parted lsscsi +Requires: zfs parted lsscsi %description test The %{name}-test package contains a test infrastructure for zpios which @@ -53,7 +53,7 @@ various system profiling tools to facilitate an in depth analysis. %package dracut Summary: ZFS Dracut Module Group: System Environment/Base -Requires: dracut +Requires: zfs dracut %description dracut The %{name}-dracut package allows dracut to construct initramfs images |