summaryrefslogtreecommitdiff
path: root/dev-python/ratelimit
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/ratelimit')
-rw-r--r--dev-python/ratelimit/Manifest1
-rw-r--r--dev-python/ratelimit/metadata.xml18
-rw-r--r--dev-python/ratelimit/ratelimit-2.2.1-r1.ebuild27
3 files changed, 0 insertions, 46 deletions
diff --git a/dev-python/ratelimit/Manifest b/dev-python/ratelimit/Manifest
deleted file mode 100644
index cc1a11905663..000000000000
--- a/dev-python/ratelimit/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ratelimit-2.2.1.gh.tar.gz 12366 BLAKE2B 7c810bd111202ef6cd86a789627367665457eb2fd88f13d91b18c934210b72f8f4b0ca1ae0e26b502234c4bf3e74d1c6608260d51a022f9f733d10eb061de023 SHA512 a9a2347e9f9e152e5b1ffcf346cf750c5c52471aa2216b485d989edfc55686077990676a35e0125277313ad50a656a14ab72b7aac61b661e2fc4ec74611b5990
diff --git a/dev-python/ratelimit/metadata.xml b/dev-python/ratelimit/metadata.xml
deleted file mode 100644
index 3955b7b7473e..000000000000
--- a/dev-python/ratelimit/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <longdescription lang="en">
- ratelimit introduces a method decorator preventing a method from being
- called more than once within a given time period. It prevents API providers
- from banning your applications by conforming to set rate limits.
- </longdescription>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="github">tomasbasham/ratelimit</remote-id>
- <remote-id type="pypi">ratelimit</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/ratelimit/ratelimit-2.2.1-r1.ebuild b/dev-python/ratelimit/ratelimit-2.2.1-r1.ebuild
deleted file mode 100644
index d0bf783fc367..000000000000
--- a/dev-python/ratelimit/ratelimit-2.2.1-r1.ebuild
+++ /dev/null
@@ -1,27 +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
-
-DESCRIPTION="An API rate limit decorator for Python"
-HOMEPAGE="https://github.com/tomasbasham/ratelimit"
-SRC_URI="
- https://github.com/tomasbasham/${PN}/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-distutils_enable_tests pytest
-
-src_prepare() {
- # remove --cov args injection
- rm pytest.ini || die
- distutils-r1_src_prepare
-}