git: b243a59ec725 - main - textproc/py-grako: Remove because this project is abandoned
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 31 Dec 2023 17:46:34 UTC
The branch main has been updated by yuri:
URL: https://cgit.FreeBSD.org/ports/commit/?id=b243a59ec725d623e33e7d49afc3627a791eb721
commit b243a59ec725d623e33e7d49afc3627a791eb721
Author: Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2023-12-31 17:42:43 +0000
Commit: Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2023-12-31 17:46:04 +0000
textproc/py-grako: Remove because this project is abandoned
See the README in the mirror https://github.com/apalala/grako
Reported by: wen heping <wenheping2000@hotmail.com>
---
MOVED | 1 +
textproc/Makefile | 1 -
textproc/py-grako/Makefile | 19 -------------------
textproc/py-grako/distinfo | 3 ---
textproc/py-grako/pkg-descr | 6 ------
5 files changed, 1 insertion(+), 29 deletions(-)
diff --git a/MOVED b/MOVED
index 123063c5acf2..bcbfb664fc25 100644
--- a/MOVED
+++ b/MOVED
@@ -8366,3 +8366,4 @@ databases/postgresql11-pgtcl|databases/postgresql12-pgtcl|2023-12-31|Has expired
www/py-dj41-djangorestframework|www/py-dj42-djangorestframework|2023-12-31|Has expired: Extended support of Django 4.1 ends December 2023, upgrade to the Django 4.2+ version of this port. See https://www.djangoproject.com/download/
www/py-django41|www/py-django42|2023-12-31|Has expired: Extended support of Django 4.1 ends December 2023, upgrade to a newer version of Django. See https://www.djangoproject.com/download/
www/qt5-webkit||2023-12-31|Has expired: No longer actively maintained, increasing security concers
+textproc/py-grako||2023-12-31|Project is abandoned
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.