dev-util/intel-graphics-system-controller: drop 1.0.0

Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki
2026-03-28 23:22:16 +01:00
parent 4343392367
commit afc935862f
2 changed files with 0 additions and 51 deletions

View File

@@ -1,2 +1 @@
DIST intel-graphics-system-controller-1.0.0.tar.gz 200361 BLAKE2B 9c0bf750f1feeeb7e29413b24fc0cae8ecb15b29428601d1fe5848d096491d6005e5aec18410da72e482609e5afd8f38cb171653df9e0ccb03fda8750aa9e702 SHA512 e861473db4a09082ae114b23d1aa938329b84ccf81768ef1eb30fc93faa045a15ec4ad368208bc6eeeb7045a19012af7e803b9de2894a815a93a5fef8ec626c0
DIST intel-graphics-system-controller-1.0.2.tar.gz 200409 BLAKE2B 1d5f4869da9fe8a61669216f8be075f49bbbc28ac551aa7aecce75ff7be0c7377591ae7c34fe65874db87a98f2a3e9209dca865863a4ecffcbe2e1f04605e828 SHA512 edead558978fd970ebb14869253b80d143e930337390e81494bb2e41290c12e3709dfa45ceebfa91eb822c62818424eb4ad2a1caf2f7fd64b86b7338d6d5f2ed

View File

@@ -1,50 +0,0 @@
# 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.2:="
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
}