dev-util/intel-graphics-system-controller: add 0.9.6

Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki
2025-06-29 21:02:12 +02:00
parent 228ffe5b73
commit 6e93f3febf
2 changed files with 51 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST intel-graphics-system-controller-0.9.5.tar.gz 207675 BLAKE2B 39e0bb6e7a81eadc31f44cad8a168c2077e39344bfe557a3d7417176c58b1cb15c22bebf0411d5b5c6af8e6acc2081f11a18383b5c45de8e7cd48f1aeb75b65e SHA512 6cd698e42cf5aa6b303fa1846b0906cbed16cb194bbdff860a11f9db31a2307a093f28d3caf19037ef9d4d62ef773066d88b9e0c0b7062fc24339ff4bdc9394e
DIST intel-graphics-system-controller-0.9.6.tar.gz 199596 BLAKE2B 013dbe76997b6bae7cd0ce825d66e6dc0154957f1d0b3edc8bc6331e808e63e076ab033a893819b8d75617b6b1dc52566c6fd86bd7af9a71d452291a5b5b38f9 SHA512 74264b2a112c9d5da12c58cc5037797c1ce540f9881ff047be411468b7a34b0db517b8f233e4a9ea6667f17d0c9df4faf1380cb55fa2a1fff5b9d0fdd848eedf

View File

@@ -0,0 +1,50 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="igsc"
MY_P="${MY_PN}-${PV}"
PYTHON_COMPAT=( python3_{10..14} )
inherit cmake python-any-r1
DESCRIPTION="Intel graphics system controller firmware update library"
HOMEPAGE="https://github.com/intel/igsc"
SRC_URI="https://github.com/intel/${MY_PN}/archive/refs/tags/V${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="+cli doc"
RDEPEND=">=dev-libs/metee-6.0.0:="
DEPEND="${RDEPEND}"
BDEPEND="
doc? (
${PYTHON_DEPS}
app-text/doxygen
$(python_gen_any_dep 'dev-python/sphinx[${PYTHON_USEDEP}]')
)
"
pkg_setup() {
use doc && python-any-r1_pkg_setup
}
src_configure() {
local mycmakeargs=(
-DENABLE_CLI="$(usex cli)"
-DENABLE_DOCS="$(usex doc)"
-DENABLE_PERF="OFF"
-DENABLE_WERROR="OFF"
# If enabled, tests are automatically run during
# the compile phase and we cannot run them because
# they require permissions to access the hardware.
-DENABLE_TESTS="OFF"
)
cmake_src_configure
}