From 2972cf1653cb4adbd4b6dea1722a0300b4b484b1 Mon Sep 17 00:00:00 2001 From: Patrick McLean Date: Tue, 3 May 2022 23:28:06 -0700 Subject: dev-cpp/opentelemetry-cpp: new package, add 1.3.0 Signed-off-by: Patrick McLean --- .../opentelemetry-cpp-1.3.0.ebuild | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.3.0.ebuild (limited to 'dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.3.0.ebuild') diff --git a/dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.3.0.ebuild b/dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.3.0.ebuild new file mode 100644 index 000000000000..011b5b0e193c --- /dev/null +++ b/dev-cpp/opentelemetry-cpp/opentelemetry-cpp-1.3.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="The OpenTelemetry C++ Client" +HOMEPAGE=" + https://opentelemetry.io/ + https://github.com/open-telemetry/opentelemetry-cpp +" +SRC_URI="https://github.com/open-telemetry/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+jaeger prometheus test" + +RDEPEND=" + net-misc/curl:= +" +DEPEND=" + ${RDEPEND} + test? ( + dev-cpp/gtest + dev-cpp/benchmark + ) +" + +RESTRICT="!test? ( test )" + +PATCHES=( + # remove tests the need network + "${FILESDIR}/opentelemetry-cpp-1.3.0-tests.patch" +) + +src_configure() { + local -a mycmakeargs=( + -DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON + -DBUILD_SHARED_LIBS:BOOL=ON + -DBUILD_TESTING:BOOL=$(usex test) + -DWITH_JAEGER:BOOL=$(usex jaeger) + -DWITH_PROMETHEUS:BOOL=$(usex prometheus) + ) + + cmake_src_configure +} -- cgit v1.2.3