summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authortsarna <tsarna@pkgsrc.org>2002-04-17 20:47:20 +0000
committertsarna <tsarna@pkgsrc.org>2002-04-17 20:47:20 +0000
commit5fccf6f582dc7c186e8c6cdd36009f45d3730b68 (patch)
tree08cdcd025584a2d9f4fc0a0cb68ef3433b61da6a /devel
parentd3a92da505a3ac0d3bee021025328cf1f362e73c (diff)
downloadpkgsrc-5fccf6f582dc7c186e8c6cdd36009f45d3730b68.tar.gz
Plex, a very nice lexical analysis module for Python
Diffstat (limited to 'devel')
-rw-r--r--devel/py-plex/DESCR1
-rw-r--r--devel/py-plex/Makefile20
-rw-r--r--devel/py-plex/PLIST26
-rw-r--r--devel/py-plex/distinfo4
-rwxr-xr-xdevel/py-plex/files/setup.py16
5 files changed, 67 insertions, 0 deletions
diff --git a/devel/py-plex/DESCR b/devel/py-plex/DESCR
new file mode 100644
index 00000000000..f05f570044f
--- /dev/null
+++ b/devel/py-plex/DESCR
@@ -0,0 +1 @@
+A very nice lexical analysis module for Python.
diff --git a/devel/py-plex/Makefile b/devel/py-plex/Makefile
new file mode 100644
index 00000000000..d8308d6fb1b
--- /dev/null
+++ b/devel/py-plex/Makefile
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1.1.1 2002/04/17 20:47:20 tsarna Exp $
+
+DISTNAME= Plex1.1.2
+PKGNAME= ${PYPKGPREFIX}-plex-1.1.2
+CATEGORIES= devel
+MASTER_SITES= http://www.cosc.canterbury.ac.nz/~greg/python/Plex/
+
+MAINTAINER= tsarna@netbsd.org
+HOMEPAGE= http://www.cosc.canterbury.ac.nz/~greg/python/Plex/
+COMMENT= Lexical analysis module for Python
+
+WRKSRC= ${WRKDIR}
+
+pre-configure:
+ ${CP} ${FILESDIR}/setup.py ${WRKSRC}
+
+PYDISTUTILSPKG= # defined
+
+.include "../../lang/python/extension.buildlink.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/devel/py-plex/PLIST b/devel/py-plex/PLIST
new file mode 100644
index 00000000000..5daaf1cc3f3
--- /dev/null
+++ b/devel/py-plex/PLIST
@@ -0,0 +1,26 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2002/04/17 20:47:20 tsarna Exp $
+${PYSITELIB}/Plex/Actions.py
+${PYSITELIB}/Plex/Actions.pyc
+${PYSITELIB}/Plex/DFA.py
+${PYSITELIB}/Plex/DFA.pyc
+${PYSITELIB}/Plex/Errors.py
+${PYSITELIB}/Plex/Errors.pyc
+${PYSITELIB}/Plex/Lexicons.py
+${PYSITELIB}/Plex/Lexicons.pyc
+${PYSITELIB}/Plex/Machines.py
+${PYSITELIB}/Plex/Machines.pyc
+${PYSITELIB}/Plex/Regexps.py
+${PYSITELIB}/Plex/Regexps.pyc
+${PYSITELIB}/Plex/Scanners.py
+${PYSITELIB}/Plex/Scanners.pyc
+${PYSITELIB}/Plex/test_tm.py
+${PYSITELIB}/Plex/test_tm.pyc
+${PYSITELIB}/Plex/Timing.py
+${PYSITELIB}/Plex/Timing.pyc
+${PYSITELIB}/Plex/Traditional.py
+${PYSITELIB}/Plex/Traditional.pyc
+${PYSITELIB}/Plex/Transitions.py
+${PYSITELIB}/Plex/Transitions.pyc
+${PYSITELIB}/Plex/__init__.py
+${PYSITELIB}/Plex/__init__.pyc
+@dirrm ${PYSITELIB}/Plex
diff --git a/devel/py-plex/distinfo b/devel/py-plex/distinfo
new file mode 100644
index 00000000000..9bf93944e8b
--- /dev/null
+++ b/devel/py-plex/distinfo
@@ -0,0 +1,4 @@
+$NetBSD: distinfo,v 1.1.1.1 2002/04/17 20:47:20 tsarna Exp $
+
+SHA1 (Plex1.1.2.tar.gz) = 691ff3f0d2517cb49990a84ffd8df058bad99dfd
+Size (Plex1.1.2.tar.gz) = 47824 bytes
diff --git a/devel/py-plex/files/setup.py b/devel/py-plex/files/setup.py
new file mode 100755
index 00000000000..3f298aa76e3
--- /dev/null
+++ b/devel/py-plex/files/setup.py
@@ -0,0 +1,16 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+setup(
+ name="Plex",
+ version="1.1.2",
+ description="A very nice lexical analysis module for Python",
+
+ author="Greg Ewing",
+ author_email="greg@cosc.canterbury.ac.nz",
+
+ url="http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/",
+
+ packages = ['Plex'],
+)