summaryrefslogtreecommitdiff
path: root/dev-python/pyformance
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pyformance')
-rw-r--r--dev-python/pyformance/Manifest2
-rw-r--r--dev-python/pyformance/metadata.xml15
-rw-r--r--dev-python/pyformance/pyformance-0.4-r2.ebuild44
3 files changed, 0 insertions, 61 deletions
diff --git a/dev-python/pyformance/Manifest b/dev-python/pyformance/Manifest
deleted file mode 100644
index 675193548324..000000000000
--- a/dev-python/pyformance/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST pyformance-0.4-patches.tar.xz 3500 BLAKE2B 511001e9011db5ef25b802739dca51337d039193a9d3322bbf94bcb120bbbeff2e1a818217970a1a97d77cd8d7da462792248910acbb3ef586704596276b7056 SHA512 858cefd6c8b151db10c63e0d8117cd6c226bd153103993040909e8fd2ab7a41a7770a2ae6de0f395a4f9f6cce3213d7ecabc0bf647657ee04fc10d76f51e07e3
-DIST pyformance-0.4.tar.gz 20683 BLAKE2B d818832b7ff43a7e1db888bdb7dc333a532c7d3365dd472f9dbb3300f676cd3cc8f82f8d1c444aa277404ff8e72843eca35e3905542700ea37b1dad3e05c8b4c SHA512 a03324977b40f5097ae4608dd7c36bdbd2a20b261c9d3e32d1be19e5fca50e17fcc24df781b6c3ab60314534368c5e9cf08bc3863d4d2d7ecc59f9af26f8d20e
diff --git a/dev-python/pyformance/metadata.xml b/dev-python/pyformance/metadata.xml
deleted file mode 100644
index 0e6854d8d21e..000000000000
--- a/dev-python/pyformance/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <upstream>
- <remote-id type="pypi">pyformance</remote-id>
- <remote-id type="github">omergertel/pyformance</remote-id>
- </upstream>
- <maintainer type="person">
- <email>zmedico@gentoo.org</email>
- </maintainer>
-<maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
-</pkgmetadata>
diff --git a/dev-python/pyformance/pyformance-0.4-r2.ebuild b/dev-python/pyformance/pyformance-0.4-r2.ebuild
deleted file mode 100644
index 6d1b4fcc1b88..000000000000
--- a/dev-python/pyformance/pyformance-0.4-r2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# 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 pypi
-
-DESCRIPTION="Performance metrics, based on Coda Hale's Yammer metrics"
-HOMEPAGE="
- https://pyformance.readthedocs.io/
- https://github.com/omergertel/pyformance/
- https://pypi.org/project/pyformance/
-"
-SRC_URI+="
- https://dev.gentoo.org/~chutzpah/dist/python/${P}-patches.tar.xz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- dev-python/six[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/mock[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-PATCHES=(
- "${WORKDIR}/${P}-patches"
-)
-
-src_prepare() {
- sed -e "s/find_packages()/find_packages(exclude=['tests'])/" \
- -i setup.py || die
- distutils-r1_src_prepare
-}