summaryrefslogtreecommitdiff
path: root/dev-python/pathable
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-01-11 06:52:05 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-01-11 06:52:05 +0000
commit73a38834cde93a1e36bab5bdb6b8216429e96d31 (patch)
tree71c0b4ecac088e2356a8566a32d022cc4e24ba6f /dev-python/pathable
parent4e389044f51c3307c5987f5678d64b1532a529f5 (diff)
downloadbaldeagleos-repo-73a38834cde93a1e36bab5bdb6b8216429e96d31.tar.gz
baldeagleos-repo-73a38834cde93a1e36bab5bdb6b8216429e96d31.tar.xz
baldeagleos-repo-73a38834cde93a1e36bab5bdb6b8216429e96d31.zip
Adding metadata
Diffstat (limited to 'dev-python/pathable')
-rw-r--r--dev-python/pathable/Manifest1
-rw-r--r--dev-python/pathable/pathable-0.4.4.ebuild28
2 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/pathable/Manifest b/dev-python/pathable/Manifest
index 28d17c8e2e1b..a4d1afd46d33 100644
--- a/dev-python/pathable/Manifest
+++ b/dev-python/pathable/Manifest
@@ -1 +1,2 @@
DIST pathable-0.4.3.gh.tar.gz 21412 BLAKE2B 6f62cd879723ff14c2fd7100c9ce7135d200fe04afb473180518ed2e80c5bc5836f82334b1dbbbc8fa80b428fa33db1a8ffafcd8b756cc00a24a809094f61dd2 SHA512 5481ba1e6f4ab4318b9a7bd1d1ddd152f715b001bc7edd1b1221501da1a95578ee6601ce4ce0bdb98773c7954212687d249418e69acef1b350fc5d6cb188dbfc
+DIST pathable-0.4.4.gh.tar.gz 21381 BLAKE2B f0ba3579204a636948f96259bc67b3a6e923af1de7b6fcf4021152c9482f82fc362d5d50cb1bcd6b5393c49d2914c6d36e941647754ef7bc2554722ad02f38ad SHA512 4b1ec32f7e952749ec0384036e7becf5343e92cbec9160627c2a678e314d7387bd4ad56a3953171038a38102c715469e973218cb3995df414bd9dd750986e046
diff --git a/dev-python/pathable/pathable-0.4.4.ebuild b/dev-python/pathable/pathable-0.4.4.ebuild
new file mode 100644
index 000000000000..f54b1e8b4310
--- /dev/null
+++ b/dev-python/pathable/pathable-0.4.4.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2022-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{9,10,11,12,13} pypy3 )
+inherit distutils-r1
+
+DESCRIPTION="Object-oriented paths"
+HOMEPAGE="
+ https://pypi.org/project/pathable/
+ https://github.com/p1c2u/pathable
+"
+SRC_URI="
+ https://github.com/p1c2u/pathable/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ sed -e '/--cov/d' -i pyproject.toml || die
+ distutils-r1_src_prepare
+}