blob: 55d9e2d3b21eb3309a0fcc4e9ec2af536bf4fca3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
HOMEPAGE = "http://www.newrelic.com"
SUMMARY = "New Relic Python Agent"
DESCRIPTION = "\
Python agent for the New Relic web application performance monitoring \
service. Check the release notes for what has changed in this version. \
"
SECTION = "devel/python"
LICENSE = "BSD-3-Clause & MIT & Python-2.0 & BSD-2-Clause & NewRelic"
LIC_FILES_CHKSUM = "file://LICENSE;md5=2b42edef8fa55315f34f2370b4715ca9"
SRC_URI[sha256sum] = "1492f0fe510cdc0c1347f597baca2a3ddd7e0662895a800e19fe524396f7bf05"
inherit pypi python_setuptools_build_meta
DEPENDS += "python3-setuptools-scm-native"
# Upstream pyproject.toml pins setuptools_scm<10 (line 61) but oe-core ships
# 10.0.5, so the PEP 517 build-meta backend's requirement check rejects the
# available version with "Missing dependencies: setuptools_scm<10,>=6.4".
# Relax the upper bound in-place; the v10 release was non-breaking for the
# setuptools_scm features newrelic actually uses (just version derivation
# from git tags via [tool.setuptools_scm] in the same file).
do_configure:prepend() {
sed -i 's|"setuptools_scm>=6.4,<10"|"setuptools_scm>=6.4"|g' ${S}/pyproject.toml ${S}/setup.py
}
FILES:${PN}-dbg += "\
${PYTHON_SITEPACKAGES_DIR}/newrelic-${PV}/newrelic/*/.debug \
${PYTHON_SITEPACKAGES_DIR}/newrelic-${PV}/newrelic/packages/*/.debug/ \
"
# The opentelemetry_proto vendored submodule (new in 13.x) ships a
# generate_pb2.sh dev helper that regenerates the protobuf python bindings
# from the .proto files. It has a bash shebang and is not used at runtime —
# only by maintainers when refreshing the bundled pb2.py outputs. Shipping
# it pulls bash into RDEPENDS (do_package_qa [file-rdeps] catches the
# /bin/bash shebang) for no runtime benefit; drop it from the install.
do_install:append() {
rm -f ${D}${PYTHON_SITEPACKAGES_DIR}/newrelic/packages/opentelemetry_proto/generate_pb2.sh
}
|