summaryrefslogtreecommitdiff
path: root/dev-python/yappi
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/yappi
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'dev-python/yappi')
-rw-r--r--dev-python/yappi/Manifest1
-rw-r--r--dev-python/yappi/files/yappi-1.2.5-warnings.patch13
-rw-r--r--dev-python/yappi/metadata.xml16
-rw-r--r--dev-python/yappi/yappi-1.7.6.ebuild31
4 files changed, 0 insertions, 61 deletions
diff --git a/dev-python/yappi/Manifest b/dev-python/yappi/Manifest
deleted file mode 100644
index cd7c32378046..000000000000
--- a/dev-python/yappi/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST yappi-1.7.6.tar.gz 62639 BLAKE2B 86a27d57a2fd7ad833f00feb2064433da6f39baee2da4b95ec570c983e11fd8de0e18991f3d478650d1f9ff8b0269f9002980e0d77176c83fd1cb3ada4910123 SHA512 614fc8acdbafce46eab0090f55a436459ed6cc8818e8a9268bb75e6d452e259183c9b84dd5b06f699515d71e4a3541960d376e0c94ca9894237cc5e6390632e2
diff --git a/dev-python/yappi/files/yappi-1.2.5-warnings.patch b/dev-python/yappi/files/yappi-1.2.5-warnings.patch
deleted file mode 100644
index 1594c33ee3d2..000000000000
--- a/dev-python/yappi/files/yappi-1.2.5-warnings.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/setup.py b/setup.py
-index cd9a549..440043c 100644
---- a/setup.py
-+++ b/setup.py
-@@ -23,7 +23,7 @@ link_args = []
-
- if os.name == 'posix' and sys.platform != 'darwin':
- compiler = new_compiler()
-- if compiler.has_function('timer_create', libraries=('rt', )):
-+ if compiler.has_function('timer_create', libraries=('rt', ), includes=["signal.h", "time.h"]):
- user_macros.append(('LIB_RT_AVAILABLE', '1'))
- user_libraries.append('rt')
- if _DEBUG:
diff --git a/dev-python/yappi/metadata.xml b/dev-python/yappi/metadata.xml
deleted file mode 100644
index e68763865f8d..000000000000
--- a/dev-python/yappi/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>chutzpah@gentoo.org</email>
- <name>Patrick McLean</name>
- </maintainer>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <upstream>
- <remote-id type="pypi">yappi</remote-id>
- <remote-id type="github">sumerc/yappi</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/yappi/yappi-1.7.6.ebuild b/dev-python/yappi/yappi-1.7.6.ebuild
deleted file mode 100644
index 6aa45915d463..000000000000
--- a/dev-python/yappi/yappi-1.7.6.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Yet Another Python Profiler"
-HOMEPAGE="
- https://pypi.org/project/yappi/
- https://github.com/sumerc/yappi/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~riscv x86"
-
-distutils_enable_tests unittest
-
-PATCHES=(
- "${FILESDIR}/yappi-1.2.5-warnings.patch"
-)
-
-python_test() {
- local -x PYTHONPATH=tests
- eunittest
-}