svn commit: r478707 - in head/devel: . py-lineedit
Yuri Victorovich
yuri at FreeBSD.org
Sat Sep 1 15:41:45 UTC 2018
Author: yuri
Date: Sat Sep 1 15:41:43 2018
New Revision: 478707
URL: https://svnweb.freebsd.org/changeset/ports/478707
Log:
New port: devel/py-lineedit: Readline library based on prompt_toolkit which supports multiple modes
Added:
head/devel/py-lineedit/
head/devel/py-lineedit/Makefile (contents, props changed)
head/devel/py-lineedit/distinfo (contents, props changed)
head/devel/py-lineedit/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Sep 1 15:39:55 2018 (r478706)
+++ head/devel/Makefile Sat Sep 1 15:41:43 2018 (r478707)
@@ -4703,6 +4703,7 @@
SUBDIR += py-libvirt
SUBDIR += py-libzfs
SUBDIR += py-linecache2
+ SUBDIR += py-lineedit
SUBDIR += py-llfuse
SUBDIR += py-llvmcpy
SUBDIR += py-llvmlite
Added: head/devel/py-lineedit/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-lineedit/Makefile Sat Sep 1 15:41:43 2018 (r478707)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME= lineedit
+PORTVERSION= 0.1.1
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= yuri at FreeBSD.org
+COMMENT= Readline library based on prompt_toolkit which supports multiple modes
+
+LICENSE= MIT
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}wcwidth>=0:devel/py-wcwidth@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= distutils autoplist
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/py-lineedit/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-lineedit/distinfo Sat Sep 1 15:41:43 2018 (r478707)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1535814668
+SHA256 (lineedit-0.1.1.tar.gz) = 1000583c0adb16a8fde859d8eb026bfc499a370ee51bdae445dc037180683c3d
+SIZE (lineedit-0.1.1.tar.gz) = 258976
Added: head/devel/py-lineedit/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-lineedit/pkg-descr Sat Sep 1 15:41:43 2018 (r478707)
@@ -0,0 +1,4 @@
+lineedit provides some subclasses inherited from prompt_toolkit to mimic Julia
+LineEdit.jl with multiple modal support.
+
+WWW: https://github.com/randy3k/lineedit
More information about the svn-ports-head
mailing list