177 lines
6.0 KiB
RPMSpec
177 lines
6.0 KiB
RPMSpec
#%global sof_commit 72a04d57d04c2df6e9dbf4eba0a98f40c252ee0b
|
|
Name: alsa-sof-firmware
|
|
Version: 2024.03
|
|
Release: 2mamba
|
|
Summary: Firmware and topology files for Sound Open Firmware project
|
|
Group: System/Kernel and Hardware
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: https://github.com/thesofproject/sof-bin
|
|
Source: https://github.com/thesofproject/sof-bin/releases/download/v%{version}/sof-bin-%{version}.tar.gz
|
|
#Source: https://github.com/thesofproject/sof-bin.git/v%{version}/sof-bin-%{version}.tar.bz2
|
|
#Source1: https://github.com/thesofproject/sof.git/v%{version}/sof-%{version}.tar.bz2
|
|
License: BSD
|
|
## AUTOBUILDREQ-BEGIN
|
|
## AUTOBUILDREQ-END
|
|
|
|
%description
|
|
Firmware and topology files for Sound Open Firmware project.
|
|
|
|
%package debug
|
|
Requires: alsa-sof-firmware = %{?epoch:%epoch:}%{version}-%{release}
|
|
Summary: Debug files for Sound Open Firmware project
|
|
|
|
%description debug
|
|
This package contains the debug files for the Sound Open Firmware project.
|
|
|
|
#%package tools
|
|
#Requires: alsa-sof-firmware = %{?epoch:%epoch:}%{version}-%{release}
|
|
#Summary: Tools provided with the Sound Open Firmware project
|
|
#
|
|
#%description tools
|
|
#This package contains the tools provided with the Sound Open Firmware project.
|
|
|
|
%prep
|
|
%setup -q -n sof-bin-%{version}
|
|
|
|
%build
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
install -d -m0755 %{buildroot}/usr/lib/firmware/intel
|
|
cp -ar sof* %{buildroot}/usr/lib/firmware/intel/
|
|
|
|
FILEDIR=$(pwd)
|
|
pushd %{buildroot}/usr/lib/firmware
|
|
find -P . -name "*.ri" | sed -e '/^.$/d' > $FILEDIR/alsa-sof-firmware.files
|
|
find -P . -name "*.tplg" | sed -e '/^.$/d' >> $FILEDIR/alsa-sof-firmware.files
|
|
find -P . -name "*.ldc" | sed -e '/^.$/d' > $FILEDIR/alsa-sof-firmware.debug-files
|
|
find -P . -type d | sed -e '/^.$/d' > $FILEDIR/alsa-sof-firmware.dirs
|
|
popd
|
|
|
|
sed -i -e 's:^./::' alsa-sof-firmware.{files,debug-files,dirs}
|
|
sed -i -e 's!^!/usr/lib/firmware/!' alsa-sof-firmware.{files,debug-files,dirs}
|
|
sed -e 's/^/%%dir /' alsa-sof-firmware.dirs >> alsa-sof-firmware.files
|
|
cat alsa-sof-firmware.files
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%pretrans -p <lua>
|
|
-- allow replacing link with dir
|
|
path = "/lib/firmware/intel/sof-tplg"
|
|
st = posix.stat(path)
|
|
if st and st.type == "link" then
|
|
os.remove(path)
|
|
end
|
|
-- allow replacing dir with symlink
|
|
path = "/lib/firmware/intel/sof-ace-tplg"
|
|
st = posix.stat(path)
|
|
if st and st.type == "directory" then
|
|
status = os.rename(path, path .. ".rpmmoved")
|
|
if not status then
|
|
suffix = 0
|
|
while not status do
|
|
suffix = suffix + 1
|
|
status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix)
|
|
end
|
|
os.rename(path, path .. ".rpmmoved")
|
|
end
|
|
end
|
|
|
|
%posttrans
|
|
# Cleanup after pretrans script above
|
|
if [ -e /usr/lib/firmware/intel/sof-ace-tplg.rpmmoved ]; then
|
|
rm -rf /usr/lib/firmware/intel/sof-ace-tplg.rpmmoved
|
|
fi
|
|
:
|
|
|
|
%files -f alsa-sof-firmware.files
|
|
%defattr(-,root,root)
|
|
%dir /usr/lib/firmware/intel/sof
|
|
/usr/lib/firmware/intel/sof-ace-tplg
|
|
%dir /usr/lib/firmware/intel/sof-ipc4
|
|
%dir /usr/lib/firmware/intel/sof-ipc4-tplg
|
|
%dir /usr/lib/firmware/intel/sof-tplg
|
|
%doc LICENCE.*
|
|
|
|
#%files tools
|
|
#%defattr(-,root,root)
|
|
#%{_bindir}/mtrace-reader.py
|
|
#%{_bindir}/sof-*
|
|
|
|
%files debug -f alsa-sof-firmware.debug-files
|
|
%defattr(-,root,root)
|
|
|
|
%changelog
|
|
* Thu Apr 11 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 2024.03-2mamba
|
|
- add pretrans lua code to replce a dir with symlink on update
|
|
|
|
* Thu Apr 11 2024 Automatic Build System <autodist@openmamba.org> 2024.03-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Mar 07 2024 Automatic Build System <autodist@openmamba.org> 2023.12.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Dec 21 2023 Automatic Build System <autodist@mambasoft.it> 2023.12-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Nov 23 2023 Automatic Build System <autodist@mambasoft.it> 2023.09.2-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Nov 11 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 2023.09.1-2mamba
|
|
- don't package prebuilt binary tools
|
|
|
|
* Sun Nov 05 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 2023.09.1-1mamba
|
|
- update to 2023.09.1
|
|
|
|
* Sat Aug 12 2023 Automatic Build System <autodist@mambasoft.it> 2.2.6-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu May 18 2023 Automatic Build System <autodist@mambasoft.it> 2.2.5-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Jan 11 2023 Automatic Build System <autodist@mambasoft.it> 2.2.4-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Dec 08 2022 Automatic Build System <autodist@mambasoft.it> 2.2.3-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Sep 26 2022 Automatic Build System <autodist@mambasoft.it> 2.2.2-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu May 05 2022 Automatic Build System <autodist@mambasoft.it> 2.1.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Feb 04 2022 Automatic Build System <autodist@mambasoft.it> 2.0-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Dec 16 2021 Automatic Build System <autodist@mambasoft.it> 1.9.3-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Nov 25 2021 Automatic Build System <autodist@mambasoft.it> 1.9.2-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Oct 16 2021 Automatic Build System <autodist@mambasoft.it> 1.9-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Sep 22 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.8-3mamba
|
|
- remove version for installation paths (based on Fedora specfile)
|
|
|
|
* Fri Jun 25 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.8-2mamba
|
|
- remove x86_64 only prebuilt binaries
|
|
|
|
* Wed Jun 23 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.8-1mamba
|
|
- update to 1.8
|
|
|
|
* Thu Feb 04 2021 Automatic Build System <autodist@mambasoft.it> 1.6.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Nov 14 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6-1mamba
|
|
- update to 1.6
|
|
|
|
* Wed Apr 08 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.2-1mamba
|
|
- package created using the webbuild interface
|