summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorGabor Pali <pgj@FreeBSD.org>2012-06-03 19:28:57 +0000
committerGabor Pali <pgj@FreeBSD.org>2012-06-03 19:28:57 +0000
commit7fc30405844078eedec25b51b0f13d5a2f65850d (patch)
tree45f330250a3a26a223ac516bff486f81f03a2025 /textproc
parentCore modules of a blazingly fast markup combinator library for the Haskell (diff)
This package provides parsing and rendering functions for XML. It is
based on the datatypes found in the xml-types package. This package is broken up into the following modules: * Text.XML: DOM-based parsing and rendering. This is the most commonly used module. * Text.XML.Cursor: A wrapper around Text.XML which allows bidirectional traversing of the DOM, similar to XPath. * Text.XML.Unresolved: A slight modification to Text.XML which does not require all entities to be resolved at parsing. The datatypes are slightly more complicated here, and therefore this module is only recommended when you need to deal directly with raw entities. * Text.XML.Stream.Parse: Streaming parser, including some streaming parser combinators. * Text.XML.Stream.Render: Streaming renderer. WWW: http://github.com/snoyberg/xml Obtained from: FreeBSD Haskell
Notes
Notes: svn path=/head/; revision=298144
Diffstat (limited to 'textproc')
-rw-r--r--textproc/hs-xml-conduit/Makefile24
-rw-r--r--textproc/hs-xml-conduit/distinfo2
-rw-r--r--textproc/hs-xml-conduit/pkg-descr21
3 files changed, 47 insertions, 0 deletions
diff --git a/textproc/hs-xml-conduit/Makefile b/textproc/hs-xml-conduit/Makefile
new file mode 100644
index 000000000000..165001d4377b
--- /dev/null
+++ b/textproc/hs-xml-conduit/Makefile
@@ -0,0 +1,24 @@
+# New ports collection makefile for: hs-xml-conduit
+# Date created: December 30, 2011
+# Whom: haskell@FreeBSD.org
+#
+# $FreeBSD$
+#
+
+PORTNAME= xml-conduit
+PORTVERSION= 0.7.0.3
+CATEGORIES= textproc haskell
+
+MAINTAINER= haskell@FreeBSD.org
+COMMENT= Pure-Haskell utilities for dealing with XML with the conduit package
+
+LICENSE= BSD
+
+USE_CABAL= attoparsec>=0.10 attoparsec-conduit>=0.4 blaze-builder>=0.2 \
+ blaze-builder-conduit>=0.4 conduit>=0.4 data-default>=0.2 \
+ failure>=0.1 monad-control>=0.3 resourcet>=0.3 \
+ system-filepath>=0.4 text>=0.7 transformers>=0.2 \
+ xml-types>=0.3.1
+
+.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
+.include <bsd.port.mk>
diff --git a/textproc/hs-xml-conduit/distinfo b/textproc/hs-xml-conduit/distinfo
new file mode 100644
index 000000000000..0be5183d52a5
--- /dev/null
+++ b/textproc/hs-xml-conduit/distinfo
@@ -0,0 +1,2 @@
+SHA256 (cabal/xml-conduit-0.7.0.3.tar.gz) = 7bef1e2a5e5b1c2dcc994b0c6eaf4f88e73b8cadec88a13eb573b22e2b6a6c90
+SIZE (cabal/xml-conduit-0.7.0.3.tar.gz) = 26522
diff --git a/textproc/hs-xml-conduit/pkg-descr b/textproc/hs-xml-conduit/pkg-descr
new file mode 100644
index 000000000000..516e508c72ea
--- /dev/null
+++ b/textproc/hs-xml-conduit/pkg-descr
@@ -0,0 +1,21 @@
+This package provides parsing and rendering functions for XML. It is
+based on the datatypes found in the xml-types package. This package is
+broken up into the following modules:
+
+ * Text.XML: DOM-based parsing and rendering. This is the most commonly
+ used module.
+
+ * Text.XML.Cursor: A wrapper around Text.XML which allows bidirectional
+ traversing of the DOM, similar to XPath.
+
+ * Text.XML.Unresolved: A slight modification to Text.XML which does not
+ require all entities to be resolved at parsing. The datatypes are
+ slightly more complicated here, and therefore this module is only
+ recommended when you need to deal directly with raw entities.
+
+ * Text.XML.Stream.Parse: Streaming parser, including some streaming
+ parser combinators.
+
+ * Text.XML.Stream.Render: Streaming renderer.
+
+WWW: http://github.com/snoyberg/xml