| |
@@ -49,9 +49,6 @@
|
| |
%package -n libva-intel-media-driver
|
| |
Summary: The Intel Media Driver for VAAPI.
|
| |
|
| |
- # The full intel-media-driver and this "free" variant in Fedora repos aren't co-installable
|
| |
- Conflicts: intel-media-driver
|
| |
-
|
| |
%description -n libva-intel-media-driver
|
| |
%{description}
|
| |
|
| |
@@ -112,7 +109,7 @@
|
| |
|
| |
# install AppData and add modalias provides
|
| |
mkdir -p %{buildroot}%{_metainfodir}
|
| |
- install -pm 0644 %{SOURCE1} %{buildroot}%{_metainfodir}
|
| |
+ install -pm 0644 %{SOURCE1} %{buildroot}%{_metainfodir}/%{name}.metainfo.xml
|
| |
|
| |
# TODO - have pci based hw detection
|
| |
%if 0
|
| |
@@ -124,7 +121,7 @@
|
| |
%doc README.md
|
| |
%license LICENSE.md
|
| |
%{_libdir}/dri/iHD_drv_video.so
|
| |
- %{_metainfodir}/intel-media-driver.metainfo.xml
|
| |
+ %{_metainfodir}/%{name}.metainfo.xml
|
| |
|
| |
%files -n libigfxcmrt
|
| |
%{_libdir}/libigfxcmrt.so.*
|
| |
Current problem is that since this package is integrated and enforced by default in fedora comps despite the full featured version is already installed, this creates an unneeded conflicts on end-users systems.
Best would be to word the fedora-comps addition using a virtual provide that could be both satisfied by the fedora and the rpmfusion-nonfree implementation, but that will not solve the conflict issue.
This is f40+ material.
Avoiding a conflicts is known:
Rename the driver so that both version could co-exist (we need to find an implementation to add a dedicated directory along the default one)
This should be implemented in one version or another. But since there is no change in the fedora package, I'm selecting this path at this step.
Using updates-alternatives.
It would means changing both fedora and rpmfusion-nonfree packages to implement it in a compatible way.
I'm still open to this solution if this is proven to be safe for ostree based systems.