git: 750787e28d71 - main - devel/py-lark-parser: Remove obsoleted port

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Thu, 09 Jun 2022 23:34:45 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=750787e28d71cb870c3aa89b61cabf930ea83dd1

commit 750787e28d71cb870c3aa89b61cabf930ea83dd1
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-06-09 23:32:46 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-06-09 23:32:46 +0000

    devel/py-lark-parser: Remove obsoleted port
    
    Use devel/py-lark instead.
---
 MOVED                          |  1 +
 devel/Makefile                 |  1 -
 devel/py-lark-parser/Makefile  | 30 ------------------------------
 devel/py-lark-parser/distinfo  |  3 ---
 devel/py-lark-parser/pkg-descr | 22 ----------------------
 5 files changed, 1 insertion(+), 56 deletions(-)

diff --git a/MOVED b/MOVED
index 7ac110270ffb..62685c04d35a 100644
--- a/MOVED
+++ b/MOVED
@@ -17199,3 +17199,4 @@ net/libgnetwork||2022-06-08|Gnome2 library unused anymore
 x11-wm/compizconfig-backend-gconf||2022-06-08|gconf support has been removed from compiz
 devel/android-tools-adb|devel/android-tools|2022-06-09|Port has been updated, unbroken and consolidated into devel/android-tools
 devel/android-tools-fastboot|devel/android-tools|2022-06-09|Port has been updated and consolidated into devel/android-tools
+devel/py-lark-parser|devel/py-lark|2022-06-09|Remove obsoleted port. Use devel/py-lark instead
diff --git a/devel/Makefile b/devel/Makefile
index 7bfde6d375e9..c66502eae4cd 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4750,7 +4750,6 @@
     SUBDIR += py-knack
     SUBDIR += py-l18n
     SUBDIR += py-lark
-    SUBDIR += py-lark-parser
     SUBDIR += py-launchpadlib
     SUBDIR += py-lazr.config
     SUBDIR += py-lazr.delegates
diff --git a/devel/py-lark-parser/Makefile b/devel/py-lark-parser/Makefile
deleted file mode 100644
index 7f27a73d3164..000000000000
--- a/devel/py-lark-parser/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
-
-PORTNAME=	lark-parser
-PORTVERSION=	0.12.0
-CATEGORIES=	devel python
-MASTER_SITES=	CHEESESHOP
-PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER=	sunpoet@FreeBSD.org
-COMMENT=	Modern parsing library for Python
-
-LICENSE=	MIT
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-USES=		python:3.6+
-USE_PYTHON=	autoplist concurrent distutils
-
-NO_ARCH=	yes
-
-OPTIONS_DEFINE=	ATOMIC_CACHE NEARLEY REGEX
-OPTIONS_DEFAULT=ATOMIC_CACHE REGEX
-ATOMIC_CACHE_DESC=	Multiprocess caching and crash recovery support
-NEARLEY_DESC=		Import grammars from Nearley.js
-REGEX_DESC=		Use third-party regex instead of standard library re
-
-ATOMIC_CACHE_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}atomicwrites>=0:devel/py-atomicwrites@${PY_FLAVOR}
-NEARLEY_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Js2Py>=0:devel/py-Js2Py@${PY_FLAVOR}
-REGEX_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}regex>=0:textproc/py-regex@${PY_FLAVOR}
-
-.include <bsd.port.mk>
diff --git a/devel/py-lark-parser/distinfo b/devel/py-lark-parser/distinfo
deleted file mode 100644
index 27ee6cfccdb8..000000000000
--- a/devel/py-lark-parser/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1632037092
-SHA256 (lark-parser-0.12.0.tar.gz) = 15967db1f1214013dca65b1180745047b9be457d73da224fcda3d9dd4e96a138
-SIZE (lark-parser-0.12.0.tar.gz) = 235029
diff --git a/devel/py-lark-parser/pkg-descr b/devel/py-lark-parser/pkg-descr
deleted file mode 100644
index ac09ba1c3a3e..000000000000
--- a/devel/py-lark-parser/pkg-descr
+++ /dev/null
@@ -1,22 +0,0 @@
-Lark can parse any context-free grammar, FAST and EASY!
-
-For beginners, Lark is not just another parser. It can parse any grammar you
-throw at it, no matter how complicated or ambiguous, and do so efficiently. It
-also constructs a parse-tree for you, without additional code on your part.
-
-For Experts, Lark lets you choose between Earley and LALR(1), to trade-off power
-and speed. It also contains a CYK parser and unique features such as a
-contextual-lexer.
-
-Lark can:
-- Parse all context-free grammars, and handle any ambiguity
-- Build a parse-tree automagically, no construction code required
-- Outperform all other Python libraries when using LALR(1) (Yes, including PLY)
-- Run on every Python interpreter (it's pure-python)
-- Generate a stand-alone parser (for LALR(1) grammars)
-- And many more features. Read ahead and find out.
-
-Most importantly, Lark will save you time and prevent you from getting parsing
-headaches.
-
-WWW: https://github.com/lark-parser/lark