From b590c8d7572b727d565cc0b8ff660d43569845de Mon Sep 17 00:00:00 2001 From: root Date: Fri, 12 Jun 2026 19:09:37 -0500 Subject: Adding metadata --- dev-python/pathable/Manifest | 3 +++ dev-python/pathable/metadata.xml | 10 ++++++++ dev-python/pathable/pathable-0.4.4.ebuild | 28 ++++++++++++++++++++++ dev-python/pathable/pathable-0.5.0.ebuild | 39 +++++++++++++++++++++++++++++++ dev-python/pathable/pathable-0.6.0.ebuild | 39 +++++++++++++++++++++++++++++++ 5 files changed, 119 insertions(+) create mode 100644 dev-python/pathable/Manifest create mode 100644 dev-python/pathable/metadata.xml create mode 100644 dev-python/pathable/pathable-0.4.4.ebuild create mode 100644 dev-python/pathable/pathable-0.5.0.ebuild create mode 100644 dev-python/pathable/pathable-0.6.0.ebuild (limited to 'dev-python/pathable') diff --git a/dev-python/pathable/Manifest b/dev-python/pathable/Manifest new file mode 100644 index 000000000000..d7ce2d093893 --- /dev/null +++ b/dev-python/pathable/Manifest @@ -0,0 +1,3 @@ +DIST pathable-0.4.4.gh.tar.gz 21381 BLAKE2B f0ba3579204a636948f96259bc67b3a6e923af1de7b6fcf4021152c9482f82fc362d5d50cb1bcd6b5393c49d2914c6d36e941647754ef7bc2554722ad02f38ad SHA512 4b1ec32f7e952749ec0384036e7becf5343e92cbec9160627c2a678e314d7387bd4ad56a3953171038a38102c715469e973218cb3995df414bd9dd750986e046 +DIST pathable-0.5.0.gh.tar.gz 58424 BLAKE2B 638caa4f7c143e27b671aedcb1ed32b79eb3b48723f367f771882922b380c843e7982c9c821cac5b082cc7af875a668f8bdcc0373ee8c269bfd3566716ca3b20 SHA512 ccd94c910205cc4950bdcee4b06f2c7be59f0ee4688f8ec342b071d1e79e1595dff309cb5c69b50090d33a67af5ea9e8dc26f5b68cb0b9c698554339eaee5cb9 +DIST pathable-0.6.0.gh.tar.gz 62152 BLAKE2B c0f3984838b27aa566744b4f81080d7081f839fe01a714c049ff114b005cbcf4719de9c664632a6ba3b48c692b35c911c1e1e9b08cd69c079026d3573b33cb7d SHA512 b45f075224f870cde80e4c28a8938b7bb857a804609f82b66d0692fe20f6cf00a2dc692d6eb32d6d30c0316837f47237334df92c711977cc032b96e55ebf14da diff --git a/dev-python/pathable/metadata.xml b/dev-python/pathable/metadata.xml new file mode 100644 index 000000000000..5e95859f915a --- /dev/null +++ b/dev-python/pathable/metadata.xml @@ -0,0 +1,10 @@ + + + + + python@gentoo.org + Python + + + baldeagleos-repo + 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..b7759c677a0f --- /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_{13..14} ) +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 +} diff --git a/dev-python/pathable/pathable-0.5.0.ebuild b/dev-python/pathable/pathable-0.5.0.ebuild new file mode 100644 index 000000000000..6334ea8b1814 --- /dev/null +++ b/dev-python/pathable/pathable-0.5.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 2022-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{13..14} ) + +inherit distutils-r1 + +MY_P=${P/_beta/b} +DESCRIPTION="Object-oriented paths" +HOMEPAGE=" + https://pypi.org/project/pathable/ + https://github.com/p1c2u/pathable +" +SRC_URI=" + https://github.com/p1c2u/pathable/archive/${PV/_beta/b}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="Apache-2.0" +SLOT="0" +if [[ ${PV} != *_beta* ]]; then + KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86" +fi + +RDEPEND=" + =dev-python/pyrsistent-0.20*[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +src_prepare() { + sed -e '/--cov/d' -i pyproject.toml || die + distutils-r1_src_prepare +} diff --git a/dev-python/pathable/pathable-0.6.0.ebuild b/dev-python/pathable/pathable-0.6.0.ebuild new file mode 100644 index 000000000000..1bcc0b220ffc --- /dev/null +++ b/dev-python/pathable/pathable-0.6.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 2022-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{13..14} ) + +inherit distutils-r1 + +MY_P=${P/_beta/b} +DESCRIPTION="Object-oriented paths" +HOMEPAGE=" + https://pypi.org/project/pathable/ + https://github.com/p1c2u/pathable +" +SRC_URI=" + https://github.com/p1c2u/pathable/archive/${PV/_beta/b}.tar.gz + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="Apache-2.0" +SLOT="0" +if [[ ${PV} != *_beta* ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +RDEPEND=" + =dev-python/pyrsistent-0.20*[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +src_prepare() { + sed -e '/--cov/d' -i pyproject.toml || die + distutils-r1_src_prepare +} -- cgit v1.3.1