2020-09-04 17:10:35 +01:00
|
|
|
|
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
|
|
|
|
|
|
|
|
PortSystem 1.0
|
|
|
|
|
|
PortGroup python 1.0
|
|
|
|
|
|
|
|
|
|
|
|
name py-questionary
|
2020-12-20 16:37:13 +00:00
|
|
|
|
version 1.9.0
|
2020-09-04 17:10:35 +01:00
|
|
|
|
platforms darwin
|
|
|
|
|
|
license MIT
|
|
|
|
|
|
supported_archs noarch
|
|
|
|
|
|
|
|
|
|
|
|
maintainers {@harens gmail.com:harensdeveloper} \
|
|
|
|
|
|
openmaintainer
|
|
|
|
|
|
|
2020-12-20 16:37:13 +00:00
|
|
|
|
description Questionary is a Python library for effortlessly building \
|
|
|
|
|
|
pretty command line interfaces
|
|
|
|
|
|
long_description {*}${description}. It makes it very easy to query your user for input. \
|
|
|
|
|
|
You need your user to confirm a destructive action or enter a file path? \
|
|
|
|
|
|
We’ve got you covered
|
2020-09-04 17:10:35 +01:00
|
|
|
|
|
|
|
|
|
|
homepage https://github.com/tmbo/questionary
|
|
|
|
|
|
|
2020-12-20 16:37:13 +00:00
|
|
|
|
checksums rmd160 196efaff9938c43b88adfaec1a87674b88b73272 \
|
|
|
|
|
|
sha256 a050fdbb81406cddca679a6f492c6272da90cb09988963817828f697cf091c55 \
|
|
|
|
|
|
size 22810
|
2020-09-04 17:10:35 +01:00
|
|
|
|
|
2020-10-16 19:01:42 +01:00
|
|
|
|
python.versions 38 39
|
2020-09-04 17:10:35 +01:00
|
|
|
|
|
|
|
|
|
|
if {${name} ne ${subport}} {
|
|
|
|
|
|
|
|
|
|
|
|
depends_build-append \
|
|
|
|
|
|
port:py${python.version}-setuptools
|
|
|
|
|
|
|
|
|
|
|
|
depends_lib-append port:py${python.version}-prompt_toolkit
|
|
|
|
|
|
|
|
|
|
|
|
livecheck.type none
|
|
|
|
|
|
}
|