Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Aug 2020 22:04:09 +0000 (UTC)
From:      Dan Langille <dvl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r546116 - in head/devel: . py-pyinquirer
Message-ID:  <202008242204.07OM4924085560@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dvl
Date: Mon Aug 24 22:04:08 2020
New Revision: 546116
URL: https://svnweb.freebsd.org/changeset/ports/546116

Log:
  Add PythonInquirer: a collection of common interactive command line user interfaces
  
  PR:		248890
  Submitted by:	Gilbert Morgan <gmm@tutanota.com>

Added:
  head/devel/py-pyinquirer/
  head/devel/py-pyinquirer/Makefile   (contents, props changed)
  head/devel/py-pyinquirer/distinfo   (contents, props changed)
  head/devel/py-pyinquirer/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Aug 24 21:50:42 2020	(r546115)
+++ head/devel/Makefile	Mon Aug 24 22:04:08 2020	(r546116)
@@ -4848,6 +4848,7 @@
     SUBDIR += py-pyhcl
     SUBDIR += py-pyicu
     SUBDIR += py-pyinotify
+    SUBDIR += py-pyinquirer
     SUBDIR += py-pyinstaller
     SUBDIR += py-pyjq
     SUBDIR += py-pyjsparser

Added: head/devel/py-pyinquirer/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyinquirer/Makefile	Mon Aug 24 22:04:08 2020	(r546116)
@@ -0,0 +1,22 @@
+# Created by: Gilbert Morgan <gmm@tutanota.com>
+# $FreeBSD$
+
+PORTNAME=	PyInquirer
+PORTVERSION=	1.0.3
+CATEGORIES=	devel
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	gmm@tutanota.com
+COMMENT=	Collection of common interactive command line user interfaces
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}prompt_toolkit>0:devel/py-prompt_toolkit@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments@${PY_FLAVOR}
+
+USES=		localbase python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-pyinquirer/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyinquirer/distinfo	Mon Aug 24 22:04:08 2020	(r546116)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1598060029
+SHA256 (PyInquirer-1.0.3.tar.gz) = c9a92d68d7727fbd886a7908c08fd9e9773e5dc211bf5cbf836ba90d366dee51
+SIZE (PyInquirer-1.0.3.tar.gz) = 27980

Added: head/devel/py-pyinquirer/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyinquirer/pkg-descr	Mon Aug 24 22:04:08 2020	(r546116)
@@ -0,0 +1,8 @@
+PyInquirer strives to be an easily embeddable and
+beautiful command line interface for Python. PyInquirer
+wants to make it easy for existing Inquirer.js users
+to write immersive command line applications in Python.
+
+Note: PyInquirer provides the user interface and the inquiry session flow.
+
+WWW: https://github.com/CITGuru/PyInquirer/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008242204.07OM4924085560>