Skip to content

Commit 18f184b

Browse files
committed
dev-python/inquirerpy: new package, add 0.3.4
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent f73f0ca commit 18f184b

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

dev-python/inquirerpy/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST inquirerpy-0.3.4.gh.tar.gz 118225 BLAKE2B b485d7bb07e4d22dc9b2a240cf2c2bdf8dba47ddcd5ee628268dec2fa5ede94a00123eaa93e24b0b853145fd040899ecb9f1c9c8e05f77e7699620bfec89ab50 SHA512 7a1c5c8fdda450bce77db39d67fa2a79c740ae3d34b112e144903a29301bf3c50189c9a7ed4b61f835e749403043c46674394399af70d56b910838fe8e2cb416
2+
EBUILD inquirerpy-0.3.4.ebuild 870 BLAKE2B 8cad3cdea8d122623a4b1fb1033a886d8d5375754ccf50707f10e3b37649e20c312e54126fc1d17ae1b3457fe14aeb03a154403311821fa8aec9ca423af48e25 SHA512 074074bdf01e2bb9e89677e3d6bf940e701ac3ffcfcdc0df6cc9880c41729f26696082a5d40049b3a7458b8fc1f108279664cc3a14b2491f2a20791cb6eefb9a
3+
MISC metadata.xml 514 BLAKE2B ebb3ed5e8e1dc0e7e09063e0432d295cef6059c34f71efeb7aabcfb90e6eef45780dc88cc8b5858c39496fcdf5f7784b657f8f3b36eb01fe90ffb99356005590 SHA512 14517aec2bec171e9e4e0e03c933b79e89850754213126a39eaaa9296df5693dd921b9503f5c57dd97fc43d8ca048cc421e006eaa7ed63d052eea5e595a4a917
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Copyright 1999-2023 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{10..12} )
7+
DISTUTILS_USE_PEP517=poetry
8+
inherit distutils-r1
9+
10+
DESCRIPTION="Python port of Inquirer.js (A collection of common interactive command-line user interfaces)"
11+
HOMEPAGE="https://github.com/kazhala/InquirerPy https://pypi.org/project/inquirerpy/"
12+
MY_PN="InquirerPy"
13+
SRC_URI="https://github.com/kazhala/InquirerPy/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
14+
S=${WORKDIR}/${MY_PN}-${PV}
15+
16+
LICENSE="MIT"
17+
SLOT="0"
18+
KEYWORDS="amd64 arm arm64 x86"
19+
IUSE="test"
20+
RESTRICT="!test? ( test )"
21+
22+
DOCS="README.md"
23+
24+
RDEPEND="dev-python/prompt-toolkit[${PYTHON_USEDEP}]
25+
dev-python/pfzy[${PYTHON_USEDEP}]"
26+
BDEPEND="
27+
test? (
28+
dev-python/pytest[${PYTHON_USEDEP}]
29+
)"
30+
31+
python_test() {
32+
py.test -v -v || die
33+
}
34+
35+
distutils_enable_tests pytest

dev-python/inquirerpy/metadata.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">inquirerpy</remote-id>
10+
<remote-id type="github">kazhala/InquirerPy</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>Kevin Zhuang</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>

0 commit comments

Comments
 (0)