commit: b2a6cd68d37fd7eb1c3f58e571d7812a813b5513
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 6 14:45:41 2025 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Jul 6 14:45:41 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2a6cd68
sci-ml/kineto: drop 0.4.0_p20240807, 0.4.0_p20241109
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-ml/kineto/Manifest | 2 --
sci-ml/kineto/files/kineto-0.4.0-gcc13.patch | 10 ------
sci-ml/kineto/kineto-0.4.0_p20240807.ebuild | 53 ----------------------------
sci-ml/kineto/kineto-0.4.0_p20241109.ebuild | 47 ------------------------
4 files changed, 112 deletions(-)
diff --git a/sci-ml/kineto/Manifest b/sci-ml/kineto/Manifest
index cfa65b34ed5e..d09e4e3bc2c0 100644
--- a/sci-ml/kineto/Manifest
+++ b/sci-ml/kineto/Manifest
@@ -1,3 +1 @@
-DIST kineto-0.4.0_p20240807.tar.gz 8263052 BLAKE2B
79a9035939164595f30f55c6cdfdc72ab42fd93d6d8fc63dc028cae50498823916993cb2d856c4b4dc43f4107602e28e8cf70584b4aea4cacda2a700b9e856e3
SHA512
f037fac78e566c40108acf9eace55a8f67a2c5b71f298fd3cd17bf22cf05240c260fd89f017fa411656a7505ec9073a06a3048e191251d5cfc4b52c237b37d0b
-DIST kineto-0.4.0_p20241109.tar.gz 8275370 BLAKE2B
976e629eda6b967e3169e4179e021d8e6e62671d53ceadae420dc2c586445ab701a1f4b479d7e2abd8f0bd689e4679e66d57dcadc42f5e763c127fb371bb389c
SHA512
e56500c3fb967d808b9aa052587a4bdeb5561bd47ab4de87cc636496867089c5b480e1c7634a0269b97262504e03ced047dc612903fa0f56a018c23adef4e686
DIST kineto-0.4.0_p20250214.tar.gz 8276188 BLAKE2B
45a07fe6dbfb68dcba4c637851404fbea7e15642b97e30baf8dbce3a9b80a6e0662ce684027aa5a00da0ff86daf028e2ea173451857264e8a5f5800629bdc767
SHA512
614f7ec7e0bcbd816d01b704a85efadd6340a322ebf60920b72717c65034b1ea60cab65243833b651482465fc145211bed25de83592801e4b9e955839f404b20
diff --git a/sci-ml/kineto/files/kineto-0.4.0-gcc13.patch
b/sci-ml/kineto/files/kineto-0.4.0-gcc13.patch
deleted file mode 100644
index 296104aef7fc..000000000000
--- a/sci-ml/kineto/files/kineto-0.4.0-gcc13.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/src/SampleListener.h 2023-04-12 12:07:58.869097270 +0200
-+++ b/src/SampleListener.h 2023-04-12 12:09:42.930392363 +0200
-@@ -7,6 +7,7 @@
- #include <iostream>
- #include <string>
- #include <vector>
-+#include <cstdint>
-
- namespace KINETO_NAMESPACE {
-
diff --git a/sci-ml/kineto/kineto-0.4.0_p20240807.ebuild
b/sci-ml/kineto/kineto-0.4.0_p20240807.ebuild
deleted file mode 100644
index 5009ab92b0c6..000000000000
--- a/sci-ml/kineto/kineto-0.4.0_p20240807.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2022-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..13} )
-inherit python-any-r1 cmake prefix
-
-CommitId=d9753139d181b9ff42872465aac0e5d3018be415
-
-DESCRIPTION="part of the PyTorch Profiler"
-HOMEPAGE="https://github.com/pytorch/kineto"
-SRC_URI="https://github.com/pytorch/${PN}/archive/${CommitId}.tar.gz
- -> ${P}.tar.gz"
-S="${WORKDIR}"/${PN}-${CommitId}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="
- dev-libs/libfmt
- dev-libs/dynolog
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- test? ( dev-cpp/gtest )
- ${PYTHON_DEPS}
-"
-RESTRICT="!test? ( test )"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.4.0-gcc13.patch
-)
-
-src_prepare() {
- cd libkineto
- cmake_src_prepare
-}
-
-src_configure() {
- cd libkineto
- local mycmakeargs=(
- -DLIBKINETO_THIRDPARTY_DIR="${EPREFIX}"/usr/include/
- -DKINETO_BUILD_TESTS=OFF # tests require cuda toolkit
- -DCUDA_SOURCE_DIR=/opt/cuda
- -DLIBKINETO_NOXPUPTI=Yes
- )
- eapply $(prefixify_ro "${FILESDIR}"/${PN}-0.4.0_p20231031-gentoo.patch)
-
- cmake_src_configure
-}
diff --git a/sci-ml/kineto/kineto-0.4.0_p20241109.ebuild
b/sci-ml/kineto/kineto-0.4.0_p20241109.ebuild
deleted file mode 100644
index 9ebae4ffc2d4..000000000000
--- a/sci-ml/kineto/kineto-0.4.0_p20241109.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2022-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..13} )
-inherit python-any-r1 cmake prefix
-
-CommitId=338140f58a28d599da3434ced4fd2d75dd1a213d
-
-DESCRIPTION="part of the PyTorch Profiler"
-HOMEPAGE="https://github.com/pytorch/kineto"
-SRC_URI="https://github.com/pytorch/${PN}/archive/${CommitId}.tar.gz
- -> ${P}.tar.gz"
-S="${WORKDIR}"/${PN}-${CommitId}/libkineto
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="test"
-
-RDEPEND="
- dev-libs/libfmt
- dev-libs/dynolog
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- test? ( dev-cpp/gtest )
- ${PYTHON_DEPS}
-"
-RESTRICT="!test? ( test )"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.4.0-gcc13.patch
-)
-
-src_configure() {
- local mycmakeargs=(
- -DLIBKINETO_THIRDPARTY_DIR="${EPREFIX}"/usr/include/
- -DKINETO_BUILD_TESTS=OFF # tests require cuda toolkit
- -DCUDA_SOURCE_DIR=/opt/cuda
- -DLIBKINETO_NOXPUPTI=Yes
- )
- eapply $(prefixify_ro "${FILESDIR}"/${PN}-0.4.0_p20231031-gentoo.patch)
-
- cmake_src_configure
-}