update to 1.2.2; see the CHANGES file for a detailed Changelog;

This commit is contained in:
xsa 2004-10-23 16:48:12 +00:00
parent a44a74380c
commit 2aae0dc0d8
4 changed files with 11 additions and 18 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.2 2004/08/03 14:27:33 xsa Exp $
# $OpenBSD: Makefile,v 1.3 2004/10/23 16:48:12 xsa Exp $
COMMENT= "Python parsing module"
DISTNAME= pyparsing-1.2
DISTNAME= pyparsing-1.2.2
PKGNAME= ${DISTNAME:S/py/py-/}
CATEGORIES= devel
@ -28,6 +28,7 @@ EXAMPLESDIR= ${PREFIX}/share/examples/py-parsing
post-install:
${INSTALL_DATA_DIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/CHANGES ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/HowToUsePyparsing.html ${DOCSDIR}
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}

View File

@ -1,3 +1,3 @@
MD5 (pyparsing-1.2.tar.gz) = 71a1482d7c66a6463599a9621b7c9e6a
RMD160 (pyparsing-1.2.tar.gz) = 7284bded2e66b37bf32dd378333419e34132935a
SHA1 (pyparsing-1.2.tar.gz) = bdf59334280744c8d347d5c2df02f2a109b17286
MD5 (pyparsing-1.2.2.tar.gz) = 700967c4c78e171783fae1073f74ea8d
RMD160 (pyparsing-1.2.2.tar.gz) = 3efe52e3cf06da5037469aa429e8bddfacba2030
SHA1 (pyparsing-1.2.2.tar.gz) = efa062de21d290ba2e01df13d3304d9d7ad3f9d8

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-README,v 1.1.1.1 2004/07/23 08:39:24 xsa Exp $
--- README.orig Thu Jan 8 21:40:56 2004
+++ README Sat Jul 3 14:59:36 2004
@@ -13,7 +13,7 @@ that client code uses to construct the g
Here is a program to parse "Hello, World!" (or any greeting of the form
"<salutation>, <addressee>!"):
- from parsing import Word, alphas
+ from pyparsing import Word, alphas
greet = Word( alphas ) + "," + Word( alphas ) + "!"
hello = "Hello, World!"
print hello, "->", greet.parseString( hello )

View File

@ -1,7 +1,8 @@
@comment $OpenBSD: PLIST,v 1.2 2004/09/14 23:44:01 espie Exp $
@comment $OpenBSD: PLIST,v 1.3 2004/10/23 16:48:12 xsa Exp $
lib/python${MODPY_VERSION}/site-packages/pyparsing.py
lib/python${MODPY_VERSION}/site-packages/pyparsing.pyc
share/doc/py-parsing/
share/doc/py-parsing/CHANGES
share/doc/py-parsing/HowToUsePyparsing.html
share/doc/py-parsing/README
share/examples/py-parsing/
@ -21,6 +22,9 @@ share/examples/py-parsing/getNTPservers.py
share/examples/py-parsing/greeting.py
share/examples/py-parsing/httpServerLogParser.py
share/examples/py-parsing/idlParse.py
share/examples/py-parsing/mozilla.ics
share/examples/py-parsing/mozillaCalendarParser.py
share/examples/py-parsing/pgn.py
share/examples/py-parsing/scanExamples.py
share/examples/py-parsing/simpleSQL.py
share/examples/py-parsing/urlExtractor.py