summaryrefslogtreecommitdiff
path: root/dev-python/humanize
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-02-15 21:50:55 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-02-15 21:50:55 +0000
commit4540b44fc06d88f61fe449f282e93eb20581dc95 (patch)
tree5f5b5c279d1cbb7f7bfeef8ab3362677a3fa8539 /dev-python/humanize
parente84f6493df97257f7a0706489cd51eb0fe6f934d (diff)
downloadbaldeagleos-repo-4540b44fc06d88f61fe449f282e93eb20581dc95.tar.gz
baldeagleos-repo-4540b44fc06d88f61fe449f282e93eb20581dc95.tar.xz
baldeagleos-repo-4540b44fc06d88f61fe449f282e93eb20581dc95.zip
Adding metadata
Diffstat (limited to 'dev-python/humanize')
-rw-r--r--dev-python/humanize/Manifest1
-rw-r--r--dev-python/humanize/humanize-4.12.0.ebuild33
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/humanize/Manifest b/dev-python/humanize/Manifest
index 44f92a233d3d..cc833cb4d268 100644
--- a/dev-python/humanize/Manifest
+++ b/dev-python/humanize/Manifest
@@ -1 +1,2 @@
DIST humanize-4.11.0.tar.gz 80374 BLAKE2B 880ebf6f14c04c323528ee95c4c32c775bd2662b0d47eb6761c84024199066e69e1d571f7edc2235d81261693f1fbd3c166ec24afeb4dab28f39dd4256d37fcf SHA512 0f872b86643276bd58543d47b72719763b52ea9a434076b99d0db72d89642c2bd77e240bf506cdd04fad049fe1575919b006376d99c037936e9b9e1beb25e1a9
+DIST humanize-4.12.0.tar.gz 80785 BLAKE2B 014a748eb5345c78f4922a982ae302688ee4dd86b3a8e4041939fcdabe45bbd19064ed8197ea33140d2d358705a93866feb2f269abe678930423f08daa44e46a SHA512 6ebb11c2595ee9b1dfb7a3f0a5225ea82b1ab2ebeaf8505ed09ff93c6ba2338a3ef23c6d784ca8b501eac152a637989a46fd1bfbbd8d3750ce372cd1a4df9b26
diff --git a/dev-python/humanize/humanize-4.12.0.ebuild b/dev-python/humanize/humanize-4.12.0.ebuild
new file mode 100644
index 000000000000..c262c6b3dcb8
--- /dev/null
+++ b/dev-python/humanize/humanize-4.12.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{9,10,11,12,13} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Common humanization utilities"
+HOMEPAGE="
+ https://github.com/python-humanize/humanize/
+ https://pypi.org/project/humanize/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+BDEPEND="
+ dev-python/hatch-vcs[${PYTHON_USEDEP}]
+ test? (
+ dev-python/freezegun[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ sed -e '/coverage/d' -i pyproject.toml || die
+ distutils-r1_src_prepare
+}