app-misc/koleo-cli: Bump to 0.2.137.26

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-12-22 05:42:11 +01:00
parent 5c43c6cd84
commit 4d85b0924b
2 changed files with 35 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST koleo_cli-0.2.137.25.tar.gz 39978 BLAKE2B 86e0df615f7be1dd584aeebce279cdb1850660bf4b53f4a63c89d700d85fdab46515a51e32e4b47fd547818a4196959df0ff32804e23c4c006354a13f809a3b8 SHA512 01dbe8df36a0bd45b1a42f67000f5d04f45fb3cdbde8d0519b8bde5f907ef4f98273ffa08728cb985caf36929726cbbbf2708e46d45a687ae647ce5d02253654
DIST koleo_cli-0.2.137.26.tar.gz 40058 BLAKE2B 51565822c073280a856a16b1e360531191700f4f8bbbb7f257c802a818a82a2d360440aae799e12e3821a69fbce69d48d79f0091ee378367d2c50a23ae9e75ec SHA512 6593bb454c2a6353012f630428fc5841c1b2ac725cc7126e08266d2125c3673920d62608d287e4232f582b0e7b60450469a86bfaf22d6ca938a1b5610a343f63

View File

@@ -0,0 +1,34 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..14} )
inherit distutils-r1 pypi
DESCRIPTION="A simple CLI for koleo.pl railway planner"
HOMEPAGE="
https://github.com/lzgirlcat/koleo-cli/
https://pypi.org/project/koleo-cli/
"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/aiohttp-3.2.13[${PYTHON_USEDEP}]
>=dev-python/orjson-3.10.18[${PYTHON_USEDEP}]
>=dev-python/rich-14.0.0[${PYTHON_USEDEP}]
"
distutils_enable_tests import-check
src_prepare() {
distutils-r1_src_prepare
# unpin deps
sed -i -e 's:~=:>=:' requirements.txt || die
}