From ed43807a0547e44140e2aaf561588d84499d1634 Mon Sep 17 00:00:00 2001 From: Conrad Kostecki Date: Sat, 23 Apr 2022 20:10:11 +0200 Subject: dev-util/intel-graphics-system-controller: update deps Signed-off-by: Conrad Kostecki --- ...ntel-graphics-system-controller-0.2.4-r1.ebuild | 51 ++++++++++++++++++++++ .../intel-graphics-system-controller-0.2.4.ebuild | 51 ---------------------- 2 files changed, 51 insertions(+), 51 deletions(-) create mode 100644 dev-util/intel-graphics-system-controller/intel-graphics-system-controller-0.2.4-r1.ebuild delete mode 100644 dev-util/intel-graphics-system-controller/intel-graphics-system-controller-0.2.4.ebuild (limited to 'dev-util/intel-graphics-system-controller') diff --git a/dev-util/intel-graphics-system-controller/intel-graphics-system-controller-0.2.4-r1.ebuild b/dev-util/intel-graphics-system-controller/intel-graphics-system-controller-0.2.4-r1.ebuild new file mode 100644 index 000000000000..01090210f89f --- /dev/null +++ b/dev-util/intel-graphics-system-controller/intel-graphics-system-controller-0.2.4-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2022 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_{8..10} ) + +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" +KEYWORDS="amd64" +IUSE="+cli doc" + +RDEPEND="dev-libs/metee:=" +DEPEND="${RDEPEND}" +BDEPEND=" + doc? ( + ${PYTHON_DEPS} + app-doc/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_ENUM="ON" + -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 +} diff --git a/dev-util/intel-graphics-system-controller/intel-graphics-system-controller-0.2.4.ebuild b/dev-util/intel-graphics-system-controller/intel-graphics-system-controller-0.2.4.ebuild deleted file mode 100644 index 500c29ddd3f3..000000000000 --- a/dev-util/intel-graphics-system-controller/intel-graphics-system-controller-0.2.4.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 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_{8..10} ) - -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" -KEYWORDS="amd64" -IUSE="+cli doc" - -RDEPEND="dev-libs/metee" -DEPEND="${RDEPEND}" -BDEPEND=" - doc? ( - ${PYTHON_DEPS} - app-doc/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_ENUM="ON" - -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 -} -- cgit v1.2.3-65-gdbad