summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2023-12-31 17:42:43 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2023-12-31 17:46:04 +0000
commitb243a59ec725d623e33e7d49afc3627a791eb721 (patch)
tree843cf84e85e7a882fd5e1cf2c229edb5510ddb2b /textproc
parent2e64d572f04a2f59ca9fd767a8bb2b8b3df8c722 (diff)
Diffstat (limited to 'textproc')
-rw-r--r--textproc/Makefile1
-rw-r--r--textproc/py-grako/Makefile19
-rw-r--r--textproc/py-grako/distinfo3
-rw-r--r--textproc/py-grako/pkg-descr6
4 files changed, 0 insertions, 29 deletions
diff --git a/textproc/Makefile b/textproc/Makefile
index 56a69a32abe4..9626d9770b24 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -1364,7 +1364,6 @@
SUBDIR += py-genshi
SUBDIR += py-gensim
SUBDIR += py-gi-docgen
- SUBDIR += py-grako
SUBDIR += py-grapheme
SUBDIR += py-griffe
SUBDIR += py-guess-language
diff --git a/textproc/py-grako/Makefile b/textproc/py-grako/Makefile
deleted file mode 100644
index 8a097fab46a0..000000000000
--- a/textproc/py-grako/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-PORTNAME= grako
-DISTVERSION= 3.99.9
-CATEGORIES= textproc python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= yuri@FreeBSD.org
-COMMENT= Convert EBNF grammar to PEG/Packrat parser in Python
-WWW= https://bitbucket.org/neogeny/grako
-
-LICENSE= BSD2CLAUSE
-LICENSE_FILE= ${WRKSRC}/LICENSE.txt
-
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR}
-
-USES= python:3.8-3.9 zip
-USE_PYTHON= distutils cython autoplist
-
-.include <bsd.port.mk>
diff --git a/textproc/py-grako/distinfo b/textproc/py-grako/distinfo
deleted file mode 100644
index 0bacce330e3d..000000000000
--- a/textproc/py-grako/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1530596270
-SHA256 (grako-3.99.9.zip) = fcc37309eab7cd0cbbb26cfd6a54303fbb80a00a58ab295d1e665bc69189c364
-SIZE (grako-3.99.9.zip) = 159278
diff --git a/textproc/py-grako/pkg-descr b/textproc/py-grako/pkg-descr
deleted file mode 100644
index 7b759c575bb7..000000000000
--- a/textproc/py-grako/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-Grako (for grammar compiler) is a tool that takes grammars in a variation of
-EBNF as input, and outputs memoizing (Packrat) PEG parsers in Python.
-
-Grako can also compile a grammar stored in a string into a Grammar object that
-can be used to parse any given input, much like the re module does with regular
-expressions.