summaryrefslogtreecommitdiff
path: root/textproc/py-jtextfsm
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/py-jtextfsm')
-rw-r--r--textproc/py-jtextfsm/Makefile21
-rw-r--r--textproc/py-jtextfsm/distinfo3
-rw-r--r--textproc/py-jtextfsm/pkg-descr20
3 files changed, 0 insertions, 44 deletions
diff --git a/textproc/py-jtextfsm/Makefile b/textproc/py-jtextfsm/Makefile
deleted file mode 100644
index 0a08c60c58d7..000000000000
--- a/textproc/py-jtextfsm/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-PORTNAME= jtextfsm
-DISTVERSION= 0.3.1
-PORTREVISION= 1
-CATEGORIES= textproc python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= kai@FreeBSD.org
-COMMENT= Smaller fork of py-textfsm, a parser for semi-structured text
-WWW= https://github.com/jonathanslenders/textfsm
-
-LICENSE= APACHE20
-
-DEPRECATED= Upstream inactive for 9+ years and the port is now obsolete. Please use textproc/py-textfsm instead
-EXPIRATION_DATE=2025-06-30
-
-USES= python
-USE_PYTHON= distutils autoplist
-NO_ARCH= yes
-
-.include <bsd.port.mk>
diff --git a/textproc/py-jtextfsm/distinfo b/textproc/py-jtextfsm/distinfo
deleted file mode 100644
index 89d58a8640ef..000000000000
--- a/textproc/py-jtextfsm/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1522337241
-SHA256 (jtextfsm-0.3.1.tar.gz) = bd3ae3538b6d744d1e148326c486b95bd3614ea14f15ddd15ca1e5a327e188f2
-SIZE (jtextfsm-0.3.1.tar.gz) = 10166
diff --git a/textproc/py-jtextfsm/pkg-descr b/textproc/py-jtextfsm/pkg-descr
deleted file mode 100644
index cd2d4cc6411e..000000000000
--- a/textproc/py-jtextfsm/pkg-descr
+++ /dev/null
@@ -1,20 +0,0 @@
-Python module which implements a template based state machine for parsing
-semi-formatted text. Originally developed to allow programmatic access to
-information returned from the command line interface (CLI) of networking
-devices.
-
-The engine takes two inputs - a template file, and text input (such as command
-responses from the CLI of a device) and returns a list of records that contains
-the data parsed from the text.
-
-A template file is needed for each uniquely structured text input. Some examples
-are provided with the code and users are encouraged to develop their own.
-
-By developing a pool of template files, scripts can call TextFSM to parse useful
-information from a variety of sources. It is also possible to use different
-templates on the same data in order to create different tables (or views).
-
-Note: This package was originally a fork of TextFSM because TextFSM had no
-support for Python3 at that time (that's not the case anymore, btw).
-Nevertheless this package is somewhat smaller compared to TextFSM and is used
-in some projects.