guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/08: gnu: Add perl-xml-filter-buffertext.


From: Ricardo Wurmus
Subject: 03/08: gnu: Add perl-xml-filter-buffertext.
Date: Mon, 23 Oct 2017 18:07:00 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit b7c591951468723f7a83d581f567136e497d081f
Author: Petter <address@hidden>
Date:   Mon Oct 23 08:49:30 2017 +0200

    gnu: Add perl-xml-filter-buffertext.
    
    * gnu/packages/xml.scm (perl-xml-filter-buffertext): New variable.
    
    Signed-off-by: Ricardo Wurmus <address@hidden>
---
 gnu/packages/xml.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index f8aea6f..749ea81 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1313,3 +1313,27 @@ module/classes that implement trees.  It is designed to 
be compatible with
 @code{Class::XPath}, ie it passes its tests if you replace @code{Class::XPath}
 by @code{Tree::XPathEngine}.")
     (license license:perl-license)))
+
+(define-public perl-xml-filter-buffertext
+  (package
+    (name "perl-xml-filter-buffertext")
+    (version "1.01")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/R/RB/RBERJON/"
+                           "XML-Filter-BufferText-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0p5785c1dsk6kdp505vapb5h54k8krrz8699hpgm9igf7dni5llg"))))
+    (build-system perl-build-system)
+    (propagated-inputs
+     `(("perl-xml-sax-base" ,perl-xml-sax-base)))
+    (home-page "http://search.cpan.org/dist/XML-Filter-BufferText/";)
+    (synopsis "Filter to put all characters() in one event")
+    (description "This is a very simple filter.  One common cause of
+grief (and programmer error) is that XML parsers aren't required to provide
+character events in one chunk.  They can, but are not forced to, and most
+don't.  This filter does the trivial but oft-repeated task of putting all
+characters into a single event.")
+    (license license:perl-license)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]