summaryrefslogtreecommitdiff
path: root/sys-firmware/sof-firmware
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /sys-firmware/sof-firmware
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'sys-firmware/sof-firmware')
-rw-r--r--sys-firmware/sof-firmware/Manifest3
-rw-r--r--sys-firmware/sof-firmware/metadata.xml13
-rw-r--r--sys-firmware/sof-firmware/sof-firmware-2025.12.1.ebuild45
-rw-r--r--sys-firmware/sof-firmware/sof-firmware-2025.12.2.ebuild45
-rw-r--r--sys-firmware/sof-firmware/sof-firmware-2025.12.ebuild45
5 files changed, 0 insertions, 151 deletions
diff --git a/sys-firmware/sof-firmware/Manifest b/sys-firmware/sof-firmware/Manifest
deleted file mode 100644
index 8e5ec0feb853..000000000000
--- a/sys-firmware/sof-firmware/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST sof-firmware-2025.12.1.tar.gz 13486538 BLAKE2B f791dccb488ae3a1db26e39d149d0a51b68c200943ef35d2f40a59c0e17a4bc7bcaea5f54195ccc6cd9574371aceb07a394a1869efe1bdfd418d938283f8e7b8 SHA512 78885d29720dbf2b54999e3ac4dc4124ac0f6fc466cd51bdfff3ae93dcd796a99e96fe3ea7d997f32e9b85936780c1ad04565002244024d92731a68c889c2087
-DIST sof-firmware-2025.12.2.tar.gz 13486442 BLAKE2B 284584e043404a65bbc2f04fcd78e9db4b1e844343a5fe1fd463e1021e92e7dcddbf8e5a8b620ca1e25d77a2469dec1804a0bafea02d3bcbfe175f64a92816a1 SHA512 5eb64665c2cb87967ff2aa81f7d39397dc6e813abea531e89c12bb5c0a15821e7cbfd8c485af196e37984c1cdf9ac72c93f9feea1205d9d71736d163f5af0084
-DIST sof-firmware-2025.12.tar.gz 13398826 BLAKE2B 935f909e4b5ab9fed3424767b660e7ac3b96e121f23d2b52d0b0f24e82877e1acbd54fce530861f43bf01b1b0343874959a0e75c712440c15bc761b3d9d643f2 SHA512 f77c47a401e68e3edb29b281efbfe97505b9ae4c188ea09ccd2855aaced4976631160885df8ce50cf83550bdfdc2bc7489cfee3ed6d9cd63563bbf3d0be8f661
diff --git a/sys-firmware/sof-firmware/metadata.xml b/sys-firmware/sof-firmware/metadata.xml
deleted file mode 100644
index d217e2814282..000000000000
--- a/sys-firmware/sof-firmware/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>pacho@gentoo.org</email>
- </maintainer>
- <use>
- <flag name="tools">Tools to interact with sof firmwares (upstream expects them to be present, but allow to skip them for systems not able to install needed dependencies)</flag>
- </use>
- <upstream>
- <remote-id type="github">thesofproject/sof</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sys-firmware/sof-firmware/sof-firmware-2025.12.1.ebuild b/sys-firmware/sof-firmware/sof-firmware-2025.12.1.ebuild
deleted file mode 100644
index 5bd47e5655f4..000000000000
--- a/sys-firmware/sof-firmware/sof-firmware-2025.12.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2026 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
-}
diff --git a/sys-firmware/sof-firmware/sof-firmware-2025.12.2.ebuild b/sys-firmware/sof-firmware/sof-firmware-2025.12.2.ebuild
deleted file mode 100644
index 11ee0ca3e520..000000000000
--- a/sys-firmware/sof-firmware/sof-firmware-2025.12.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2026 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 ~x86"
-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
-}
diff --git a/sys-firmware/sof-firmware/sof-firmware-2025.12.ebuild b/sys-firmware/sof-firmware/sof-firmware-2025.12.ebuild
deleted file mode 100644
index 40a085cc2e66..000000000000
--- a/sys-firmware/sof-firmware/sof-firmware-2025.12.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2026 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
-}