This library supports full W3C XML Schema regular expressions inclusive all

Unicode character sets and blocks.  The complete grammar can be found under
<http://www.w3.org/TR/xmlschema11-2/#regexs>.  It is implemented by the
technique of derivations of regular expressions.  The W3C syntax is extended
to support not only union of regular sets, but also intersection, set
difference, exor.  Matching of subexpressions is also supported.
The library can be used for constricting lightweight scanners and tokenizers.
It is a standalone library, no external regex libraries are used.
This package is a substitute for the old regex-xmlschema package.

WWW: http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2011-05-08 18:40:30 +00:00
parent 7b6bb01d97
commit cb177271fc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=273781
3 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# New ports collection makefile for: hs-hxt-regex-xmlschema
# Date created: March 13, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= hxt-regex-xmlschema
PORTVERSION= 9.0.0
CATEGORIES= textproc haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= A regular expression library for W3C XML Schema regular expressions
CABAL_SETUP= Setup.hs
USE_CABAL= hxt-charproperties>=9 parsec>=2.1
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/hxt-regex-xmlschema-9.0.0.tar.gz) = 6cfec39130d89c5926a9ccc67ebb9ec9f8ca66affb2fa2000d6d7a895e3f5b02
SIZE (cabal/hxt-regex-xmlschema-9.0.0.tar.gz) = 26407

View File

@ -0,0 +1,11 @@
This library supports full W3C XML Schema regular expressions inclusive all
Unicode character sets and blocks. The complete grammar can be found under
<http://www.w3.org/TR/xmlschema11-2/#regexs>. It is implemented by the
technique of derivations of regular expressions. The W3C syntax is extended
to support not only union of regular sets, but also intersection, set
difference, exor. Matching of subexpressions is also supported.
The library can be used for constricting lightweight scanners and tokenizers.
It is a standalone library, no external regex libraries are used.
This package is a substitute for the old regex-xmlschema package.
WWW: http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema