dev-python/pathable: Bump to 0.5.0_beta4

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-02-14 08:15:24 +01:00
parent 398972b56e
commit 5b5454043a
2 changed files with 37 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
DIST pathable-0.4.4.gh.tar.gz 21381 BLAKE2B f0ba3579204a636948f96259bc67b3a6e923af1de7b6fcf4021152c9482f82fc362d5d50cb1bcd6b5393c49d2914c6d36e941647754ef7bc2554722ad02f38ad SHA512 4b1ec32f7e952749ec0384036e7becf5343e92cbec9160627c2a678e314d7387bd4ad56a3953171038a38102c715469e973218cb3995df414bd9dd750986e046
DIST pathable-0.5.0b1.gh.tar.gz 32636 BLAKE2B 6052ac15b68f0b0492667ffc805cfec3d433dae1d0d90a0baed7fff932459bd8ec8bf093b271225e5e0d6d9641aed6ee499a85c077c323c40ed2a413e7192c31 SHA512 bbad392866f9f1741eee53646f1f3c530d53644441d05f48bc9ed21299cc49ef7ae9036867bc5e4991f00a13897564eda7e4664d0c769290744d69d83b854ddf
DIST pathable-0.5.0b2.gh.tar.gz 32674 BLAKE2B d34e3e27a56cc491c63beaba4d70122a445f7c07c063abaa26cf7cb4e5b7070867eb6eb0e4c01627c2123ee0654f45a89b9b59a3995f2e5e52693fdc60e590bf SHA512 5a20c97c98a7345b1ec0d1d7cb1d451559091ffe4a16bd79710db3ee6f4d36834e3e334ec3bdc6a2efc615dcee0a9fab5435ad2d554c16dc2270d233ac4cf540
DIST pathable-0.5.0b4.gh.tar.gz 54659 BLAKE2B 6cec02acc10591cdc08c37dd9642a0cd9fa4003ef5ca0b1fbaf1821bbbdcfedc45d9addfb9a43946bd8d76d844b8ce2479d6651e06e86bf05c19a7d529fedd8a SHA512 d7eccfc948fcabe5313fee1f3fd21401146b0f1e61861c660a14c8ad6d30471ad7b99ff5a50bd25ed61670537c6826d1d66278dd739dafcf0b59411c8a55e8f2

View File

@@ -0,0 +1,36 @@
# Copyright 2022-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( pypy3_11 python3_{11..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"
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
}