git: 5f2b4ae4585a - main - devel/py-py-partiql-parser: Add py-py-partiql-parser 0.1.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 09 Apr 2023 13:39:10 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=5f2b4ae4585a19f72b120253d3898013ad252934 commit 5f2b4ae4585a19f72b120253d3898013ad252934 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2023-04-09 13:16:52 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2023-04-09 13:36:25 +0000 devel/py-py-partiql-parser: Add py-py-partiql-parser 0.1.0 py-partiql-parser is a tokenizer/parser/executor for the PartiQL-language, in Python. --- devel/Makefile | 1 + devel/py-py-partiql-parser/Makefile | 22 ++++++++++++++++++++++ devel/py-py-partiql-parser/distinfo | 3 +++ devel/py-py-partiql-parser/pkg-descr | 2 ++ 4 files changed, 28 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index e09e389979aa..d854d9d69f48 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5139,6 +5139,7 @@ SUBDIR += py-pure-eval SUBDIR += py-purl SUBDIR += py-py + SUBDIR += py-py-partiql-parser SUBDIR += py-py-ubjson SUBDIR += py-pyTooling SUBDIR += py-py_interface diff --git a/devel/py-py-partiql-parser/Makefile b/devel/py-py-partiql-parser/Makefile new file mode 100644 index 000000000000..b1a09355a3eb --- /dev/null +++ b/devel/py-py-partiql-parser/Makefile @@ -0,0 +1,22 @@ +PORTNAME= py-partiql-parser +PORTVERSION= 0.1.0 +CATEGORIES= devel python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Pure Python PartiQL Parser +WWW= https://github.com/getmoto/py-partiql-parser + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=59.0.0:devel/py-setuptools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} \ + +USES= python:3.7+ +USE_PYTHON= autoplist concurrent pep517 + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-py-partiql-parser/distinfo b/devel/py-py-partiql-parser/distinfo new file mode 100644 index 000000000000..d6112fa3d77d --- /dev/null +++ b/devel/py-py-partiql-parser/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1680726012 +SHA256 (py-partiql-parser-0.1.0.tar.gz) = 03ef60b871ee341204775201918b27da611b7b0ddfa63688ca393d5ea8ed2a26 +SIZE (py-partiql-parser-0.1.0.tar.gz) = 12821 diff --git a/devel/py-py-partiql-parser/pkg-descr b/devel/py-py-partiql-parser/pkg-descr new file mode 100644 index 000000000000..c4c1986e0221 --- /dev/null +++ b/devel/py-py-partiql-parser/pkg-descr @@ -0,0 +1,2 @@ +py-partiql-parser is a tokenizer/parser/executor for the PartiQL-language, in +Python.