[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/08: gnu: Add perl-xml-xpathengine.
From: |
Ricardo Wurmus |
Subject: |
01/08: gnu: Add perl-xml-xpathengine. |
Date: |
Mon, 23 Oct 2017 18:07:00 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 3b6958021df2d26a56b3ae78cff9f08cd79f06fc
Author: Petter <address@hidden>
Date: Mon Oct 23 08:23:21 2017 +0200
gnu: Add perl-xml-xpathengine.
* gnu/packages/xml.scm (perl-xml-xpathengine): New variable.
Signed-off-by: Ricardo Wurmus <address@hidden>
---
gnu/packages/xml.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index d889e60..add9311 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -17,6 +17,7 @@
;;; Copyright © 2017 Adriano Peluso <address@hidden>
;;; Copyright © 2017 Gregor Giesen <address@hidden>
;;; Copyright © 2017 Alex Vong <address@hidden>
+;;; Copyright © 2017 Petter <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1266,3 +1267,28 @@ This framework aids the development of XML systems with
minimal effort and
reduced errors. It offers full object serialization and deserialization,
maintaining each reference encountered.")
(license license:asl2.0)))
+
+(define-public perl-xml-xpathengine
+ (package
+ (name "perl-xml-xpathengine")
+ (version "0.14")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cpan/authors/id/M/MI/MIROD/"
+ "XML-XPathEngine-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0r72na14bmsxfd16s9nlza155amqww0k8wsa9x2a3sqbpp5ppznj"))))
+ (build-system perl-build-system)
+ (home-page "http://search.cpan.org/dist/XML-XPathEngine/")
+ (synopsis "Re-usable XPath engine for DOM-like trees")
+ (description
+ "This module provides an XPath engine, that can be re-used by other
+modules/classes that implement trees.
+
+In order to use the XPath engine, nodes in the user module need to mimick DOM
+nodes. The degree of similitude between the user tree and a DOM dictates how
+much of the XPath features can be used. A module implementing all of the DOM
+should be able to use this module very easily (you might need to add the
address@hidden method on nodes in order to get ordered result sets).")
+ (license license:perl-license)))
- branch master updated (6768e0a -> 7a04ddd), Ricardo Wurmus, 2017/10/23
- 02/08: gnu: Add perl-tree-xpathengine., Ricardo Wurmus, 2017/10/23
- 01/08: gnu: Add perl-xml-xpathengine.,
Ricardo Wurmus <=
- 07/08: gnu: Add tidyp., Ricardo Wurmus, 2017/10/23
- 05/08: gnu: Add perl-xml-handler-yawriter., Ricardo Wurmus, 2017/10/23
- 08/08: gnu: Add perl-html-tidy., Ricardo Wurmus, 2017/10/23
- 04/08: gnu: Add perl-xml-sax-writer., Ricardo Wurmus, 2017/10/23
- 06/08: gnu: Add perl-lwp-online., Ricardo Wurmus, 2017/10/23
- 03/08: gnu: Add perl-xml-filter-buffertext., Ricardo Wurmus, 2017/10/23