Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-firmware/sof-firmware/
Date: Fri, 29 Jul 2022 18:09:02
Message-Id: 1659118130.cd75419652c1bf99cc56dc21f1d7fced9ba68a3e.mattst88@gentoo
1 commit: cd75419652c1bf99cc56dc21f1d7fced9ba68a3e
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 29 18:08:18 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 29 18:08:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd754196
7
8 sys-firmware/sof-firmware: Version bump to 2.2
9
10 Closes: https://bugs.gentoo.org/856268
11 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
12
13 sys-firmware/sof-firmware/Manifest | 1 +
14 sys-firmware/sof-firmware/sof-firmware-2.2.ebuild | 33 +++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/sys-firmware/sof-firmware/Manifest b/sys-firmware/sof-firmware/Manifest
18 index fe63b1dc47c6..a3820bcbd29c 100644
19 --- a/sys-firmware/sof-firmware/Manifest
20 +++ b/sys-firmware/sof-firmware/Manifest
21 @@ -1,2 +1,3 @@
22 DIST sof-firmware-1.9.3.tar.gz 3710193 BLAKE2B d52fe0660c73c8e76fb60c492abe19f9e64b3064441880b84488193aa66710e49ef022c7cd1b8ece69d010aa5e416fbf4307a9c92d823525dbdc734194b0a98f SHA512 0c04bf47ecf65d3352b730e79968cb020211c274f64a3cc21e4c5e49c5a9706ab4d541aaea931e72c1bcc67fcde6387bc6bf952a33691aaab06e6b93aa73a024
23 DIST sof-firmware-2.1.1.tar.gz 4056718 BLAKE2B 0246f6240504d3e8b609b402c41ffe6ed9b8350b6a31c6567851069354e5de5b4ca6d803e78fdde77cdaba7be87c8a8923b2d0fdd0544fd3b28d1e332cd59b63 SHA512 77e9562f67014d78b213fe428edef6a08dcc058a9a762da09a486c002c3aa0b907ea7c8ba6d4f88f5ddab5e564de06df9f2ed77206341a0fe2e1aaab1d9740ce
24 +DIST sof-firmware-2.2.tar.gz 4211499 BLAKE2B c0ab39cba3ef3dd19b67d714b5a4e5a6a6cb3e8fb2d290c3fceadeb3f7dd96db986411184e16bca56bdd1905a697f8d416cd4aa5bdff90fe32e96713ff87bb71 SHA512 3cd06f6b8f8d6c3379b987cffa019a0d84263b8e00de40c18516c3e90745d5e150bdf71a8005b1ba704e44bf84d7030195e9c0ebfcd6e35228f4c14e9290cd95
25
26 diff --git a/sys-firmware/sof-firmware/sof-firmware-2.2.ebuild b/sys-firmware/sof-firmware/sof-firmware-2.2.ebuild
27 new file mode 100644
28 index 000000000000..b51c9026bd32
29 --- /dev/null
30 +++ b/sys-firmware/sof-firmware/sof-firmware-2.2.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DESCRIPTION="Sound Open Firmware (SOF) binary files"
38 +HOMEPAGE="https://www.sofproject.org https://github.com/thesofproject/sof https://github.com/thesofproject/sof-bin"
39 +SRC_URI="https://github.com/thesofproject/sof-bin/releases/download/v${PV}/sof-bin-v${PV}.tar.gz -> ${P}.tar.gz"
40 +S="${WORKDIR}"/sof-bin-v${PV}
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +
46 +# Needed for sof-ctl
47 +RDEPEND="media-libs/alsa-lib"
48 +
49 +QA_PREBUILT="usr/bin/sof-ctl
50 + usr/bin/sof-logger
51 + usr/bin/sof-probes"
52 +
53 +src_install() {
54 + dodir /lib/firmware/intel
55 + dodir /usr/bin
56 + FW_DEST="${D}/lib/firmware/intel" TOOLS_DEST="${D}/usr/bin" "${S}/install.sh" v${PV} || die
57 +}
58 +
59 +pkg_preinst() {
60 + local sofpath="${EROOT}/lib/firmware/intel/sof"
61 + if [[ ! -L "${sofpath}" && -d "${sofpath}" ]] ; then
62 + rm -r "${sofpath}" || die
63 + fi
64 +}