commit:     5e5d33b66d8844fdbee6068e5844317f685b00fc
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 28 14:01:30 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jun 28 14:01:30 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e5d33b6

dev-python/opentelemetry-sdk: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/opentelemetry-sdk/Manifest              |  2 -
 .../opentelemetry-sdk-1.33.1.ebuild                | 62 ---------------------
 .../opentelemetry-sdk-1.34.0.ebuild                | 63 ----------------------
 3 files changed, 127 deletions(-)

diff --git a/dev-python/opentelemetry-sdk/Manifest 
b/dev-python/opentelemetry-sdk/Manifest
index 5b0e859fc140..7c1ccf7ce7b7 100644
--- a/dev-python/opentelemetry-sdk/Manifest
+++ b/dev-python/opentelemetry-sdk/Manifest
@@ -1,3 +1 @@
-DIST opentelemetry-python-1.33.1.gh.tar.gz 1235726 BLAKE2B 
13d1ba3667591daef6fe137b959eb04d296392a3d6f3e9944d8a692b483d24629871eae0035ec59002f106dcc4efff055c58b712edb03ee0a8eb829244654e9e
 SHA512 
12152893ba968a7129afd44e7c4b98ab63e35618b1cf7a1724bba41a767b1321eb5ed4c54722bf257b7eb223e60537c0c8acb90e1e1677ac316b54f7748115bd
-DIST opentelemetry-python-1.34.0.gh.tar.gz 1225735 BLAKE2B 
1b09460a29608f9b0d1eae4a4fc7868dac8a6f91b93503d9709cc58ad8592494d331c92f46b4a6d780082992315f297e4fc018ec5d2b7f3e63ab1e942bb520e9
 SHA512 
a2e3533471ad4696c19c39fd658e0c5edebbf9c7dd2953e4e92e1d719b015d51c068912a3300123fb80afc71d79c0b19c5bf57668afdfc797b2c1b1b12369870
 DIST opentelemetry-python-1.34.1.gh.tar.gz 1225347 BLAKE2B 
3694b7370494ed8fcc43559d130c6b6b27faef74b6ff90792525663e0c7a9434ddb9fa9c4693d197e8ed707554694089f8d5f3a72ba7b6188cc8f2c45583848c
 SHA512 
7d2ed9828c7c156fb6444e560af8f9e9df25cba09262e7d9f23ba2f77aaaa90545d2083639c9d8400a269f7d266a94df8849ce32e3cfc5172c3389f13c30411c

diff --git a/dev-python/opentelemetry-sdk/opentelemetry-sdk-1.33.1.ebuild 
b/dev-python/opentelemetry-sdk/opentelemetry-sdk-1.33.1.ebuild
deleted file mode 100644
index efec22cebf1b..000000000000
--- a/dev-python/opentelemetry-sdk/opentelemetry-sdk-1.33.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1
-
-MY_P="opentelemetry-python-${PV}"
-DESCRIPTION="OpenTelemetry Python SDK"
-HOMEPAGE="
-       https://opentelemetry.io/
-       https://pypi.org/project/opentelemetry-sdk/
-       https://github.com/open-telemetry/opentelemetry-python/
-"
-SRC_URI="
-       
https://github.com/open-telemetry/opentelemetry-python/archive/refs/tags/v${PV}.tar.gz
-               -> ${MY_P}.gh.tar.gz
-"
-
-S="${WORKDIR}/${MY_P}/${PN}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-RDEPEND="
-       ~dev-python/opentelemetry-api-${PV}[${PYTHON_USEDEP}]
-       ~dev-python/opentelemetry-semantic-conventions-${PV}[${PYTHON_USEDEP}]
-       >=dev-python/typing-extensions-3.7.4[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       test? (
-               dev-python/flaky[${PYTHON_USEDEP}]
-       )
-"
-
-# Tests cannot handle xdist with high makeopts
-# https://bugs.gentoo.org/928132
-distutils_enable_tests pytest
-
-python_test() {
-       cp -a "${BUILD_DIR}"/{install,test} || die
-       local -x PATH=${BUILD_DIR}/test/usr/bin:${PATH}
-
-       for dep in tests/opentelemetry-test-utils; do
-               pushd "${WORKDIR}/${MY_P}/${dep}" >/dev/null || die
-               distutils_pep517_install "${BUILD_DIR}"/test
-               popd >/dev/null || die
-       done
-
-       local EPYTEST_DESELECT=(
-               # TODO
-               
"${PN}"/tests/resources/test_resources.py::TestOTELResourceDetector::test_process_detector
-               
"${PN}"/tests/metrics/integration_test/test_console_exporter.py::TestConsoleExporter::test_console_exporter_with_exemplars
-       )
-
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       epytest tests
-}

diff --git a/dev-python/opentelemetry-sdk/opentelemetry-sdk-1.34.0.ebuild 
b/dev-python/opentelemetry-sdk/opentelemetry-sdk-1.34.0.ebuild
deleted file mode 100644
index 1a338bb117d4..000000000000
--- a/dev-python/opentelemetry-sdk/opentelemetry-sdk-1.34.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1
-
-MY_P="opentelemetry-python-${PV}"
-DESCRIPTION="OpenTelemetry Python SDK"
-HOMEPAGE="
-       https://opentelemetry.io/
-       https://pypi.org/project/opentelemetry-sdk/
-       https://github.com/open-telemetry/opentelemetry-python/
-"
-SRC_URI="
-       
https://github.com/open-telemetry/opentelemetry-python/archive/refs/tags/v${PV}.tar.gz
-               -> ${MY_P}.gh.tar.gz
-"
-
-S="${WORKDIR}/${MY_P}/${PN}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND="
-       ~dev-python/opentelemetry-api-${PV}[${PYTHON_USEDEP}]
-       ~dev-python/opentelemetry-semantic-conventions-${PV}[${PYTHON_USEDEP}]
-       >=dev-python/typing-extensions-4.5.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       test? (
-               dev-python/flaky[${PYTHON_USEDEP}]
-       )
-"
-
-# Tests cannot handle xdist with high makeopts
-# https://bugs.gentoo.org/928132
-distutils_enable_tests pytest
-
-python_test() {
-       cp -a "${BUILD_DIR}"/{install,test} || die
-       local -x PATH=${BUILD_DIR}/test/usr/bin:${PATH}
-
-       for dep in tests/opentelemetry-test-utils; do
-               pushd "${WORKDIR}/${MY_P}/${dep}" >/dev/null || die
-               distutils_pep517_install "${BUILD_DIR}"/test
-               popd >/dev/null || die
-       done
-
-       local EPYTEST_DESELECT=(
-               # TODO
-               
"${PN}"/tests/resources/test_resources.py::TestOTELResourceDetector::test_process_detector
-               
"${PN}"/tests/metrics/integration_test/test_console_exporter.py::TestConsoleExporter::test_console_exporter_with_exemplars
-               
"${PN}"/tests/logs/test_export.py::TestSimpleLogRecordProcessor::test_simple_log_record_processor_shutdown
-       )
-
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       epytest tests
-}

Reply via email to