From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-firmware/sof-firmware/
Date: Fri, 8 Nov 2024 18:46:48 +0000 (UTC) [thread overview]
Message-ID: <1731091600.2f77b4a76e9a0dfbbeb7fd0f780e128fb6e6721e.pacho@gentoo> (raw)
commit: 2f77b4a76e9a0dfbbeb7fd0f780e128fb6e6721e
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 8 18:22:49 2024 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Nov 8 18:46:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f77b4a7
sys-firmware/sof-firmware: add 2024.09.1
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
sys-firmware/sof-firmware/Manifest | 1 +
.../sof-firmware/sof-firmware-2024.09.1.ebuild | 45 ++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/sys-firmware/sof-firmware/Manifest b/sys-firmware/sof-firmware/Manifest
index 1f209b56980c..8d00933e9d13 100644
--- a/sys-firmware/sof-firmware/Manifest
+++ b/sys-firmware/sof-firmware/Manifest
@@ -1,3 +1,4 @@
DIST sof-firmware-2024.03.tar.gz 8161590 BLAKE2B 23d73ff3ab30b5134086bb21e606805a7d9667adf1a5598a3d31068ba0254dc4c34464ee3913eb3530a8124e3614eff9ba28fa731e9816b28980ea05834c1037 SHA512 1e9891d3891f5a4413a77a68ea6d3a2e6ead8c1a67eaa7e9aaf30871753617ffce19bd3b85ebcbb617e606646f6aa0e1dafee5279c294ec72ef4b2885e009f72
DIST sof-firmware-2024.06.tar.gz 9848270 BLAKE2B 31189e81400981b76db585019324e7dec9f81ff488c6bbc575534d4968ea974764ecf0b585918cc1871e99ef8cff45f77c8c7509bb954360693f3a283b391d6a SHA512 50dbd849b086158af88dd629566b80de4e841dd8a74b6ea8b1d99b3321be94a0d2d6f742b557f0445b9618a6dbeee3fec6a4e9822b320d511ede1ec1812c0d4d
+DIST sof-firmware-2024.09.1.tar.gz 10208804 BLAKE2B e2d40f424703b086678df93c8476d7c4e434fe7712f350009fdf3994a125bdccc90d1279853356df79ffad178b5e398e4894f7182ebd96edd0527101e0f74627 SHA512 e542ae732305485a4f12332f9bdec8d2e80ba41247e44e00960670b45970d45049f46fbdc42c9250ecc40bb1b9edaf1e81cd2c3da760f3bd174176ad3c8e22d2
DIST sof-firmware-2024.09.tar.gz 10196135 BLAKE2B 0136b4ef3500bc09c9411c216c5785c6dc11a1986597b495554b5fa526f843eb19084f15bf11367a3ac942934d1fdc358588cebaa2bcdd8cb74f407a268efdd6 SHA512 b8a199afba7289a39485662741fbf8ecb47e9c91e461478e3e2d523c12986bfddf8a1f61b4ba0a2c689008de8808a2df00f05aacb541a2fb16a6a5dbd7481ecf
diff --git a/sys-firmware/sof-firmware/sof-firmware-2024.09.1.ebuild b/sys-firmware/sof-firmware/sof-firmware-2024.09.1.ebuild
new file mode 100644
index 000000000000..105eaae58f37
--- /dev/null
+++ b/sys-firmware/sof-firmware/sof-firmware-2024.09.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Sound Open Firmware (SOF) binary files"
+HOMEPAGE="https://www.sofproject.org https://github.com/thesofproject/sof https://github.com/thesofproject/sof-bin"
+SRC_URI="https://github.com/thesofproject/sof-bin/releases/download/v${PV}/sof-bin-${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}"/sof-bin-${PV}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+tools"
+
+RDEPEND="
+ tools? (
+ media-libs/alsa-lib
+ sys-libs/glibc
+ )
+"
+
+QA_PREBUILT="usr/bin/sof-ctl
+ usr/bin/sof-logger
+ usr/bin/sof-probes"
+
+src_install() {
+ dodir /lib/firmware/intel
+ dodir /usr/bin
+ FW_DEST="${D}/lib/firmware/intel" TOOLS_DEST="${D}/usr/bin" "${S}/install.sh" || die
+
+ # Drop tools if requested (i.e. useful for musl systems, where glibc
+ # is not available)
+ if ! use tools ; then
+ rm -rv "${D}"/usr/bin || die
+ fi
+}
+
+pkg_preinst() {
+ # Fix sof-ace-tplg directory symlink collisions
+ local sofpath="${EROOT}/lib/firmware/intel/sof-ace-tplg"
+ if [[ ! -L "${sofpath}" && -d "${sofpath}" ]] ; then
+ rm -r "${sofpath}" || die
+ fi
+}
next reply other threads:[~2024-11-08 18:46 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-08 18:46 Pacho Ramos [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-12 20:12 [gentoo-commits] repo/gentoo:master commit in: sys-firmware/sof-firmware/ Sam James
2025-04-12 17:41 Pacho Ramos
2025-01-31 18:35 Pacho Ramos
2025-01-31 18:35 Pacho Ramos
2024-12-09 19:24 Arthur Zamarin
2024-12-08 13:52 Pacho Ramos
2024-11-08 18:46 Pacho Ramos
2024-11-08 18:46 Pacho Ramos
2024-09-29 19:37 Sam James
2024-09-29 18:27 Pacho Ramos
2024-07-18 19:03 Pacho Ramos
2024-07-18 19:03 Pacho Ramos
2024-07-08 9:40 Sam James
2024-04-09 15:54 Arthur Zamarin
2024-04-07 16:44 Pacho Ramos
2024-04-07 16:44 Pacho Ramos
2024-03-07 15:03 Pacho Ramos
2024-03-07 15:03 Pacho Ramos
2024-02-05 22:05 Sam James
2024-01-28 17:35 Matt Turner
2023-12-20 10:36 Sam James
2023-12-20 10:04 Pacho Ramos
2023-12-20 10:04 Pacho Ramos
2023-12-20 10:02 Pacho Ramos
2023-11-24 12:18 Arthur Zamarin
2023-11-24 10:58 Pacho Ramos
2023-11-10 16:20 Pacho Ramos
2023-10-01 17:45 Pacho Ramos
2023-10-01 17:45 Pacho Ramos
2023-07-30 12:46 Sam James
2023-07-08 21:44 Sam James
2023-07-08 10:56 Pacho Ramos
2023-07-08 10:56 Pacho Ramos
2023-05-14 16:31 Sam James
2023-05-14 11:37 Pacho Ramos
2023-05-14 11:37 Pacho Ramos
2023-02-23 13:41 Sam James
2023-02-23 13:08 Pacho Ramos
2023-02-23 13:08 Pacho Ramos
2022-12-25 16:42 Sam James
2022-12-25 10:03 Pacho Ramos
2022-12-25 10:03 Pacho Ramos
2022-12-25 10:03 Pacho Ramos
2022-11-04 3:11 Matt Turner
2022-09-09 7:34 Agostino Sarubbo
2022-08-17 16:21 Matt Turner
2022-07-31 11:05 Agostino Sarubbo
2022-07-29 18:08 Matt Turner
2022-04-29 5:58 Sam James
2022-04-29 4:42 Sam James
2022-04-29 4:41 Sam James
2022-01-31 18:50 Sam James
2021-12-22 3:57 Sam James
2021-12-21 3:06 Sam James
2021-10-10 14:20 Andreas K. Hüttel
2021-10-10 14:20 Andreas K. Hüttel
2021-10-10 14:20 Andreas K. Hüttel
2021-05-08 16:03 Matt Turner
2020-10-18 15:24 Mikle Kolyada
2020-07-29 5:38 Matt Turner
2020-04-07 8:40 Andreas K. Hüttel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1731091600.2f77b4a76e9a0dfbbeb7fd0f780e128fb6e6721e.pacho@gentoo \
--to=pacho@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox