From afc935862f247fba46fa13eb49d67cd1f5434ee1 Mon Sep 17 00:00:00 2001 From: Conrad Kostecki Date: Sat, 28 Mar 2026 23:22:16 +0100 Subject: [PATCH] dev-util/intel-graphics-system-controller: drop 1.0.0 Signed-off-by: Conrad Kostecki --- .../intel-graphics-system-controller/Manifest | 1 - ...el-graphics-system-controller-1.0.0.ebuild | 50 ------------------- 2 files changed, 51 deletions(-) delete mode 100644 dev-util/intel-graphics-system-controller/intel-graphics-system-controller-1.0.0.ebuild diff --git a/dev-util/intel-graphics-system-controller/Manifest b/dev-util/intel-graphics-system-controller/Manifest index 99800d6e67469..a901e1f6687cd 100644 --- a/dev-util/intel-graphics-system-controller/Manifest +++ b/dev-util/intel-graphics-system-controller/Manifest @@ -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 diff --git a/dev-util/intel-graphics-system-controller/intel-graphics-system-controller-1.0.0.ebuild b/dev-util/intel-graphics-system-controller/intel-graphics-system-controller-1.0.0.ebuild deleted file mode 100644 index b0d3d843e0bc2..0000000000000 --- a/dev-util/intel-graphics-system-controller/intel-graphics-system-controller-1.0.0.ebuild +++ /dev/null @@ -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 -}