f9af5e812e
3.0.20: 2021-08-20 ------------------ New features: - Add support for strikethrough text attributes. - Set up custom breakpointhook while an application is running (if no other breakpointhook was installed). This enhances the usage of PDB for debugging applications. - Strict type checking is now enabled. Fixes: - Ensure that `print_formatted_text` is always printed above the running application, like `patch_stdout`. (Before, `patch_stdout` was even completely ignored in case of `print_formatted_text, so there was no proper way to use it in a running application.) - Fix handling of non-bmp unicode input on Windows. - Set minimum Python version to 3.6.2 (Some 3.6.2 features were used).
23 lines
688 B
Makefile
23 lines
688 B
Makefile
# $NetBSD: Makefile,v 1.6 2021/08/21 16:59:14 adam Exp $
|
|
|
|
DISTNAME= prompt_toolkit-3.0.20
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/prompt_toolkit/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/jonathanslenders/python-prompt-toolkit
|
|
COMMENT= Library for building powerful interactive command lines
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-wcwidth-[0-9]*:../../devel/py-wcwidth
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYSETUPTESTTARGET= pytest
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|