Tag-stream is a library for parsing HTML//XML to a token stream. It can
parse unstructured and malformed HTML from the web. It also provides an Enumeratee which can parse streamline html, which means it consumes constant memory. You can start from the `tests/Tests.hs` module to see what it can do. WWW: http://github.com/yihuang/tagstream-conduit Obtained from: FreeBSD Haskell
This commit is contained in:
parent
d6d6d4fa76
commit
fb914fae14
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=299853
5 changed files with 33 additions and 0 deletions
|
@ -267,6 +267,7 @@ system-fileio_port= devel/hs-system-fileio
|
|||
system-filepath_port= devel/hs-system-filepath
|
||||
tagged_port= devel/hs-tagged
|
||||
tagsoup_port= textproc/hs-tagsoup # executable
|
||||
tagstream-conduit_port= textproc/hs-tagstream-conduit
|
||||
tar_port= archivers/hs-tar
|
||||
temporary_port= devel/hs-temporary
|
||||
Tensor_port= devel/hs-Tensor
|
||||
|
|
|
@ -268,6 +268,7 @@
|
|||
SUBDIR += hs-regex-posix
|
||||
SUBDIR += hs-stringsearch
|
||||
SUBDIR += hs-tagsoup
|
||||
SUBDIR += hs-tagstream-conduit
|
||||
SUBDIR += hs-texmath
|
||||
SUBDIR += hs-xhtml
|
||||
SUBDIR += hs-xml
|
||||
|
|
23
textproc/hs-tagstream-conduit/Makefile
Normal file
23
textproc/hs-tagstream-conduit/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# New ports collection makefile for: hs-tagstream-conduit
|
||||
# Date created: June 10, 2012
|
||||
# Whom: haskell@FreeBSD.org
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= tagstream-conduit
|
||||
PORTVERSION= 0.3.2
|
||||
CATEGORIES= textproc haskell
|
||||
|
||||
MAINTAINER= haskell@FreeBSD.org
|
||||
COMMENT= streamlined html tag parser
|
||||
|
||||
LICENSE= BSD
|
||||
|
||||
CABAL_SETUP= Setup.hs
|
||||
|
||||
USE_CABAL= attoparsec blaze-builder blaze-builder-conduit>=0.4 \
|
||||
conduit>=0.4
|
||||
|
||||
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
||||
.include <bsd.port.mk>
|
2
textproc/hs-tagstream-conduit/distinfo
Normal file
2
textproc/hs-tagstream-conduit/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (cabal/tagstream-conduit-0.3.2.tar.gz) = ae66739ab4b7999f0f8476c68c21e31d780c5d7d2803f7e1ac17a17fb2b3c8cc
|
||||
SIZE (cabal/tagstream-conduit-0.3.2.tar.gz) = 6543
|
6
textproc/hs-tagstream-conduit/pkg-descr
Normal file
6
textproc/hs-tagstream-conduit/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
Tag-stream is a library for parsing HTML//XML to a token stream. It can
|
||||
parse unstructured and malformed HTML from the web. It also provides an
|
||||
Enumeratee which can parse streamline html, which means it consumes constant
|
||||
memory.
|
||||
|
||||
WWW: http://github.com/yihuang/tagstream-conduit
|
Loading…
Reference in a new issue