summaryrefslogtreecommitdiff
path: root/dev-python/priority
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/priority')
-rw-r--r--dev-python/priority/Manifest1
-rw-r--r--dev-python/priority/metadata.xml22
-rw-r--r--dev-python/priority/priority-2.0.0-r1.ebuild23
3 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/priority/Manifest b/dev-python/priority/Manifest
new file mode 100644
index 000000000000..8b1a266fa081
--- /dev/null
+++ b/dev-python/priority/Manifest
@@ -0,0 +1 @@
+DIST priority-2.0.0.tar.gz 24792 BLAKE2B c230f74aba3153edafba4bf85965a726ac3d3f5e2293d7c496b65fda260722cc44e4582666eee9d715e0d0686695434f8e0cbbd089c105bb45b777bf6eb4d72c SHA512 f90648a3ff1ee4131f30e99ecd8c36110abf484733f507edefcede8fdcb9ec3a618b9278e85724855709f41facee438061e4c5cae201b6e916c22f4a451db575
diff --git a/dev-python/priority/metadata.xml b/dev-python/priority/metadata.xml
new file mode 100644
index 000000000000..9981acebf581
--- /dev/null
+++ b/dev-python/priority/metadata.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ <name>Python</name>
+ </maintainer>
+ <stabilize-allarches />
+ <upstream>
+ <maintainer>
+ <email>cory@lukasa.co.uk</email>
+ <name>Cory Benfield</name>
+ </maintainer>
+ </upstream>
+ <longdescription>Priority is a pure-Python implementation of the priority
+ logic for HTTP/2, set out in RFC 7540 Section 5.3 (Stream Priority).
+ This logic allows for clients to express a preference for how the
+ server allocates its (limited) resources to the many outstanding HTTP
+ requests that may be running over a single HTTP/2 connection.
+ </longdescription>
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
diff --git a/dev-python/priority/priority-2.0.0-r1.ebuild b/dev-python/priority/priority-2.0.0-r1.ebuild
new file mode 100644
index 000000000000..c7c18075e29b
--- /dev/null
+++ b/dev-python/priority/priority-2.0.0-r1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2026 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="A pure-Python implementation of the HTTP/2 priority tree"
+HOMEPAGE="
+ https://python-hyper.org/projects/priority/en/latest/
+ https://github.com/python-hyper/priority/
+ https://pypi.org/project/priority/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
+
+EPYTEST_PLUGINS=( hypothesis )
+distutils_enable_tests pytest