diff options
author | Steve Wills <swills@FreeBSD.org> | 2020-12-18 15:15:03 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2020-12-18 15:15:03 +0000 |
commit | 587fe9a7e9f53c49f780a5a4925c9c28e08d0f9d (patch) | |
tree | e00906e10315e4a1fd665d6e4f014245105efbc4 /editors | |
parent | d5c3b3f46ca1e7875710b507cbbfa629dc158233 (diff) |
editors/py-babi: create port
babi - a text editor, eventually...
WWW: https://github.com/asottile/babi
Notes
Notes:
svn path=/head/; revision=558385
Diffstat (limited to 'editors')
-rw-r--r-- | editors/Makefile | 1 | ||||
-rw-r--r-- | editors/py-babi/Makefile | 27 | ||||
-rw-r--r-- | editors/py-babi/distinfo | 3 | ||||
-rw-r--r-- | editors/py-babi/pkg-descr | 3 |
4 files changed, 34 insertions, 0 deletions
diff --git a/editors/Makefile b/editors/Makefile index 0591b03ac540..de48d57562f6 100644 --- a/editors/Makefile +++ b/editors/Makefile @@ -221,6 +221,7 @@ SUBDIR += poedit SUBDIR += psgml SUBDIR += puff + SUBDIR += py-babi SUBDIR += py-editorconfig SUBDIR += py-pynvim SUBDIR += quilter diff --git a/editors/py-babi/Makefile b/editors/py-babi/Makefile new file mode 100644 index 000000000000..6f240e7ddb6b --- /dev/null +++ b/editors/py-babi/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= babi +PORTVERSION= 0.0.19 +CATEGORIES= editors python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Text Editor written in Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}babi_grammars>=0:devel/py-babi_grammars@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}identify>=0:devel/py-identify@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=0:devel/py-importlib-metadata@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}onigurumacffi>=0.0.18:devel/py-onigurumacffi@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}babi_grammars>=0:devel/py-babi_grammars@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}identify>=0:devel/py-identify@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=0:devel/py-importlib-metadata@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}onigurumacffi>=0.0.18:devel/py-onigurumacffi@${PY_FLAVOR} + +USES= python:3.7+ +USE_PYTHON= autoplist distutils flavors + +.include <bsd.port.mk> diff --git a/editors/py-babi/distinfo b/editors/py-babi/distinfo new file mode 100644 index 000000000000..5cf484fdad80 --- /dev/null +++ b/editors/py-babi/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1608303332 +SHA256 (babi-0.0.19.tar.gz) = 4b5a9f0f5249e0efe7ebed3622dcf263b3f4379aefe68bf23ae548667107c8d9 +SIZE (babi-0.0.19.tar.gz) = 36807 diff --git a/editors/py-babi/pkg-descr b/editors/py-babi/pkg-descr new file mode 100644 index 000000000000..b4bec8c884f7 --- /dev/null +++ b/editors/py-babi/pkg-descr @@ -0,0 +1,3 @@ +babi - a text editor, eventually... + +WWW: https://github.com/asottile/babi |