summaryrefslogtreecommitdiff
path: root/dev-python/webencodings
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/webencodings')
-rw-r--r--dev-python/webencodings/Manifest1
-rw-r--r--dev-python/webencodings/metadata.xml13
-rw-r--r--dev-python/webencodings/webencodings-0.5.1-r2.ebuild26
3 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/webencodings/Manifest b/dev-python/webencodings/Manifest
new file mode 100644
index 000000000000..25b9ea738528
--- /dev/null
+++ b/dev-python/webencodings/Manifest
@@ -0,0 +1 @@
+DIST webencodings-0.5.1.tar.gz 9721 BLAKE2B f62ee91cf0230f55bfbe9973a621bbaf3aa250f511b2e1e2c0c6db00bf52760bb058957040600cb33d6f9208987302a70783b04325be4ff344c428a43664290a SHA512 b727b01bac6ec79bca517960d27b4c0668b295f25559471b9641c2c33dab55db6dac9c990952177964c6418382c22831b14d57df5e632d51d7abf97b61f24326
diff --git a/dev-python/webencodings/metadata.xml b/dev-python/webencodings/metadata.xml
new file mode 100644
index 000000000000..6272d45918ed
--- /dev/null
+++ b/dev-python/webencodings/metadata.xml
@@ -0,0 +1,13 @@
+<?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>
+ <doc>https://pythonhosted.org/webencodings/</doc>
+ </upstream>
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
diff --git a/dev-python/webencodings/webencodings-0.5.1-r2.ebuild b/dev-python/webencodings/webencodings-0.5.1-r2.ebuild
new file mode 100644
index 000000000000..14d905c23619
--- /dev/null
+++ b/dev-python/webencodings/webencodings-0.5.1-r2.ebuild
@@ -0,0 +1,26 @@
+# 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="Character encoding aliases for legacy web content"
+HOMEPAGE="
+ https://github.com/gsnedders/python-webencodings/
+ https://pypi.org/project/webencodings/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest -o 'python_files=test*.py'
+}