summaryrefslogtreecommitdiff
path: root/dev-python/sentry-sdk
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:48:38 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:48:38 -0500
commitbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (patch)
tree0d7a74b4463ee387f9cf9368ceb1b757f694f72a /dev-python/sentry-sdk
parentf716a9fe6455d39eef01e718aae68dae61c19704 (diff)
downloadbaldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.tar.gz
baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.tar.xz
baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.zip
Revert "Adding metadata"
This reverts commit f716a9fe6455d39eef01e718aae68dae61c19704.
Diffstat (limited to 'dev-python/sentry-sdk')
-rw-r--r--dev-python/sentry-sdk/Manifest1
-rw-r--r--dev-python/sentry-sdk/metadata.xml22
-rw-r--r--dev-python/sentry-sdk/sentry-sdk-2.30.0.ebuild37
3 files changed, 60 insertions, 0 deletions
diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
new file mode 100644
index 000000000000..9d0509574390
--- /dev/null
+++ b/dev-python/sentry-sdk/Manifest
@@ -0,0 +1 @@
+DIST sentry-python-2.30.0.gh.tar.gz 692893 BLAKE2B 49afcb991985b1b3c255dc6685d1026bddcfc9d7ba387dfcb180a49761e3c404c6e25100bc8174ad4b8b255dba9a3582d109563453e8a6892145ab76ed7b9934 SHA512 8d926e0c94240cd842d3c1fa022e723ef0dbbbedfa22d39aeccc2395388401ce8a481a20072fc750e89eb87607b85126e4159ea571f766d223c3c326e0ddc158
diff --git a/dev-python/sentry-sdk/metadata.xml b/dev-python/sentry-sdk/metadata.xml
new file mode 100644
index 000000000000..09f8824950d1
--- /dev/null
+++ b/dev-python/sentry-sdk/metadata.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+ <!-- maintainer-needed -->
+
+ <stabilize-allarches/>
+
+ <upstream>
+ <maintainer status="active">
+ <name>Sentry Team and Contributors</name>
+ <email>hello@sentry.io</email>
+ </maintainer>
+
+ <changelog>https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md</changelog>
+ <doc>https://docs.sentry.io/platforms/python/</doc>
+ <bugs-to>https://github.com/getsentry/sentry-python/issues</bugs-to>
+
+ <remote-id type="github">getsentry/sentry-python</remote-id>
+ <remote-id type="pypi">sentry-sdk</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/sentry-sdk/sentry-sdk-2.30.0.ebuild b/dev-python/sentry-sdk/sentry-sdk-2.30.0.ebuild
new file mode 100644
index 000000000000..59f4585007c7
--- /dev/null
+++ b/dev-python/sentry-sdk/sentry-sdk-2.30.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{13..14} )
+
+inherit distutils-r1
+
+MY_P="sentry-python-${PV}"
+DESCRIPTION="Python client for Sentry"
+
+HOMEPAGE="
+ https://sentry.io/
+ https://github.com/getsentry/sentry-python/
+ https://pypi.org/project/sentry-sdk/
+"
+
+SRC_URI="https://github.com/getsentry/sentry-python/archive/${PV}.tar.gz -> ${MY_P}.gh.tar.gz"
+S="${WORKDIR}/${MY_P}"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="test"
+
+RDEPEND="
+ >=dev-python/urllib3-1.26.11[${PYTHON_USEDEP}]
+ dev-python/certifi[${PYTHON_USEDEP}]
+"
+
+DOCS=(
+ CHANGELOG.md
+ CONTRIBUTING.md
+ MIGRATION_GUIDE.md
+ README.md
+)