mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 06:32:59 -04:00
No rev bump as there are no functional changes. Signed-off-by: Florian Albrechtskirchinger <falbrechtskirchinger@gmail.com>
35 lines
824 B
Bash
35 lines
824 B
Bash
# Copyright 2026 Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=hatchling
|
|
PYTHON_COMPAT=( python3_{12..15} )
|
|
|
|
inherit distutils-r1
|
|
|
|
MY_PV=0.62.1
|
|
MY_P="openllmetry-${MY_PV}"
|
|
DESCRIPTION="OpenTelemetry Semantic Conventions for AI applications"
|
|
HOMEPAGE="
|
|
https://github.com/traceloop/openllmetry
|
|
https://pypi.org/project/opentelemetry-semantic-conventions-ai/
|
|
"
|
|
SRC_URI="
|
|
https://github.com/traceloop/openllmetry/archive/refs/tags/v${MY_PV}.tar.gz
|
|
-> ${MY_P}.gh.tar.gz
|
|
"
|
|
S="${WORKDIR}/${MY_P}/packages/${PN}"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
|
|
RDEPEND="
|
|
>=dev-python/opentelemetry-sdk-1.42.0[${PYTHON_USEDEP}]
|
|
>=dev-python/opentelemetry-semantic-conventions-0.63_beta1[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
EPYTEST_PLUGINS=()
|
|
distutils_enable_tests pytest
|