ae98b08774
Fixes: - Don't shuffle tasks in the event loop. This fixes an issue where lines printed from background threads were printed in a different order if `patch_stdout=True`. - Only consider the text before the cursor when activating history search. - Pressing escape should accept the search, this is closer to how readline works. - Enable autowrap again when required. New features: - Add run_in_terminal option to disable cooked mode.
19 lines
606 B
Makefile
19 lines
606 B
Makefile
# $NetBSD: Makefile,v 1.3 2017/07/28 07:12:13 adam Exp $
|
|
|
|
DISTNAME= prompt_toolkit-1.0.15
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/prompt_toolkit/}
|
|
|
|
MAINTAINER= kamelderouiche@yahoo.com
|
|
HOMEPAGE= https://github.com/jonathanslenders/python-prompt-toolkit
|
|
COMMENT= Library for building powerful interactive command lines
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
|
|
DEPENDS+= ${PYPKGPREFIX}-wcwidth-[0-9]*:../../devel/py-wcwidth
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|