summaryrefslogtreecommitdiff
path: root/dev-python/sentry-sdk
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-04-25 19:12:18 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-04-25 19:12:18 +0000
commit084f58a92a8c19bc67dc624bcef1059cf4ddaaef (patch)
tree8afc97e93b5181db451e014a54aafffdd1c537e6 /dev-python/sentry-sdk
parenta43502817a72a3c88571f94b178b64e1a21634da (diff)
downloadbaldeagleos-repo-084f58a92a8c19bc67dc624bcef1059cf4ddaaef.tar.gz
baldeagleos-repo-084f58a92a8c19bc67dc624bcef1059cf4ddaaef.tar.xz
baldeagleos-repo-084f58a92a8c19bc67dc624bcef1059cf4ddaaef.zip
Adding metadata
Diffstat (limited to 'dev-python/sentry-sdk')
-rw-r--r--dev-python/sentry-sdk/Manifest1
-rw-r--r--dev-python/sentry-sdk/metadata.xml19
-rw-r--r--dev-python/sentry-sdk/sentry-sdk-2.26.1.ebuild37
3 files changed, 57 insertions, 0 deletions
diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
new file mode 100644
index 000000000000..d88b17fbecff
--- /dev/null
+++ b/dev-python/sentry-sdk/Manifest
@@ -0,0 +1 @@
+DIST sentry-python-2.26.1.gh.tar.gz 683526 BLAKE2B f53f39e5a860c607cfdb46b66d401688063d55bb3f782c82493b1f3cf8e74d7140e4976c94fde458bc7e2b5dc92a218b312a9519911a6c2217638da40858748d SHA512 964e0108a89537f43db873915de30620856662837536a5150c6f8e041dcd75da7869f93208faccdc1a6d8731afe4e3dcaaa9b8b67bc9a9d5940a9dd9ef2a564d
diff --git a/dev-python/sentry-sdk/metadata.xml b/dev-python/sentry-sdk/metadata.xml
new file mode 100644
index 000000000000..af4d26b3c690
--- /dev/null
+++ b/dev-python/sentry-sdk/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>beatussum@protonmail.com</email>
+ <name>Mattéo Rossillol‑‑Laruelle</name>
+ </maintainer>
+ <upstream>
+ <maintainer status="active">
+ <email>hello@sentry.io</email>
+ <name>Sentry Team and Contributors</name>
+ </maintainer>
+ <changelog>https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md</changelog>
+ <bugs-to>https://github.com/getsentry/sentry-python/issues</bugs-to>
+ <doc>https://docs.sentry.io/platforms/python/</doc>
+ </upstream>
+ <origin>gentoo-guru-overlay</origin>
+ <stabilize-allarches/>
+</pkgmetadata> \ No newline at end of file
diff --git a/dev-python/sentry-sdk/sentry-sdk-2.26.1.ebuild b/dev-python/sentry-sdk/sentry-sdk-2.26.1.ebuild
new file mode 100644
index 000000000000..dcbe4eedb56d
--- /dev/null
+++ b/dev-python/sentry-sdk/sentry-sdk-2.26.1.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_{9,10,11,12,13} )
+
+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
+)