summaryrefslogtreecommitdiff
path: root/dev-python/path
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/path')
-rw-r--r--dev-python/path/Manifest1
-rw-r--r--dev-python/path/metadata.xml10
-rw-r--r--dev-python/path/path-17.1.1.ebuild38
3 files changed, 49 insertions, 0 deletions
diff --git a/dev-python/path/Manifest b/dev-python/path/Manifest
new file mode 100644
index 000000000000..709ca148900d
--- /dev/null
+++ b/dev-python/path/Manifest
@@ -0,0 +1 @@
+DIST path-17.1.1.tar.gz 50528 BLAKE2B 44826c3e70e93872ad380a5a90cd4172113ca6e505389818e1dae949765dcd72a32ca1d17e8eeee11203620c6aa95b1fb61d6145d598a38e98700816b2b8bdf1 SHA512 1efc261485b45734fdcdee9126013f98c11f5ac59a1cf4f10bcd7fd9379d5008ffc4ba76c3d8c331ff4fc32148df52ad24db7c1ac27fae0b63f8e215810de495
diff --git a/dev-python/path/metadata.xml b/dev-python/path/metadata.xml
new file mode 100644
index 000000000000..5e95859f915a
--- /dev/null
+++ b/dev-python/path/metadata.xml
@@ -0,0 +1,10 @@
+<?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 />
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
diff --git a/dev-python/path/path-17.1.1.ebuild b/dev-python/path/path-17.1.1.ebuild
new file mode 100644
index 000000000000..155ccf4018cb
--- /dev/null
+++ b/dev-python/path/path-17.1.1.ebuild
@@ -0,0 +1,38 @@
+# 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="A module wrapper for os.path"
+HOMEPAGE="
+ https://github.com/jaraco/path/
+ https://pypi.org/project/path/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos"
+
+RDEPEND="
+ dev-python/appdirs[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ dev-python/setuptools-scm[${PYTHON_USEDEP}]
+ test? (
+ dev-python/more-itertools[${PYTHON_USEDEP}]
+ dev-python/packaging[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+ # unreliable, not really meaningful for end users
+ test_path.py::TestPerformance
+)