dev-python/inquirerpy: new package, add 0.3.4

Signed-off-by: Florian Albrechtskirchinger <falbrechtskirchinger@gmail.com>
This commit is contained in:
Florian Albrechtskirchinger
2026-07-05 16:46:47 +02:00
parent 490b6ef38f
commit d0e2309d02
3 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST inquirerpy-0.3.4-support-prompt-toolkit-3.0.47.patch.xz 2720 BLAKE2B d7b0ee36fa58cadc51197ada2758a262aa9738dd7626c96e1d6856603589ad3d8f82b8436b5144dca9c950c0555677cf4a17b023d62a4f8e0360aced7ddd85bf SHA512 c35f96f5372186484bf615a2d2a1521a9f597235d16b06eceee9deae49d8cec5394e3eaa950ebe6e04422658e57f9a431ec6e94be602903157018984a9c38b88
DIST inquirerpy-0.3.4.gh.tar.gz 118225 BLAKE2B b485d7bb07e4d22dc9b2a240cf2c2bdf8dba47ddcd5ee628268dec2fa5ede94a00123eaa93e24b0b853145fd040899ecb9f1c9c8e05f77e7699620bfec89ab50 SHA512 7a1c5c8fdda450bce77db39d67fa2a79c740ae3d34b112e144903a29301bf3c50189c9a7ed4b61f835e749403043c46674394399af70d56b910838fe8e2cb416

View File

@@ -0,0 +1,48 @@
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{12..15} )
inherit distutils-r1
MY_PN="InquirerPy"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Python port of Inquirer.js (A collection of common interactive CLI UIs)"
HOMEPAGE="
https://github.com/kazhala/InquirerPy
https://pypi.org/project/inquirerpy/
"
PATCH_BASE_URI="https://github.com/falbrechtskirchinger/overlay-assets/releases/download"
SRC_URI="
https://github.com/kazhala/${MY_PN}/archive/refs/tags/${PV}.tar.gz
-> ${P}.gh.tar.gz
${PATCH_BASE_URI}/v2026.06.27.0/${PN}-0.3.4-support-prompt-toolkit-3.0.47.patch.xz
"
S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
# prompt-toolkit raised from 3.0.1 to 3.0.47 for patch
RDEPEND="
>=dev-python/pfzy-0.3.1[${PYTHON_USEDEP}]
>=dev-python/prompt-toolkit-3.0.47[${PYTHON_USEDEP}]
"
PATCHES=(
"${WORKDIR}/${PN}-0.3.4-support-prompt-toolkit-3.0.47.patch"
)
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
src_test() {
# test expects non-empty home
touch "${HOME}/.dummy" || die
distutils-r1_src_test
}

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>falbrechtskirchinger@gmail.com</email>
<name>Florian Albrechtskirchinger</name>
</maintainer>
<upstream>
<remote-id type="pypi">inquirerpy</remote-id>
<remote-id type="github">kazhala/InquirerPy</remote-id>
</upstream>
</pkgmetadata>