[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/17: gnu: Add hubbub.
From: |
Eric Bavier |
Subject: |
05/17: gnu: Add hubbub. |
Date: |
Mon, 13 Feb 2017 23:37:16 -0500 (EST) |
bavier pushed a commit to branch master
in repository guix.
commit 43bfbf137043c2e86ae907528ab830d66e86c642
Author: Eric Bavier <address@hidden>
Date: Sat Feb 11 21:23:52 2017 -0600
gnu: Add hubbub.
* gnu/packages/web.scm (hubbub): New variable.
---
gnu/local.mk | 1 +
gnu/packages/patches/hubbub-sort-entities.patch | 13 +++++++++++
gnu/packages/web.scm | 31 +++++++++++++++++++++++++
3 files changed, 45 insertions(+)
diff --git a/gnu/local.mk b/gnu/local.mk
index fcc7eb0..20fe3a2 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -634,6 +634,7 @@ dist_patch_DATA =
\
%D%/packages/patches/hdf-eos5-fortrantests.patch \
%D%/packages/patches/higan-remove-march-native-flag.patch \
%D%/packages/patches/hop-linker-flags.patch \
+ %D%/packages/patches/hubbub-sort-entities.patch \
%D%/packages/patches/hydra-disable-darcs-test.patch \
%D%/packages/patches/hypre-doc-tables.patch \
%D%/packages/patches/hypre-ldflags.patch \
diff --git a/gnu/packages/patches/hubbub-sort-entities.patch
b/gnu/packages/patches/hubbub-sort-entities.patch
new file mode 100644
index 0000000..012e3c3
--- /dev/null
+++ b/gnu/packages/patches/hubbub-sort-entities.patch
@@ -0,0 +1,13 @@
+Traverse the entities hash's keys in sorted order to ensure reproducibility.
+
+--- libhubbub-0.3.3/build/make-entities.pl
++++ libhubbub-0.3.3/build/make-entities.pl
+@@ -86,7 +86,7 @@
+
+ my $trie;
+
+-foreach my $key (keys %entities) {
++foreach my $key (sort keys %entities) {
+ $trie = insert_node($trie, $key, $entities{$key});
+ }
+
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 37ea4e8..5ace1eb 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -3791,6 +3791,37 @@ libraries.")
C. It is developed as part of the NetSurf project.")
(license l:expat)))
+(define-public hubbub
+ (package
+ (name "hubbub")
+ (version "0.3.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://download.netsurf-browser.org/libs/releases/"
+ "lib" name "-" version "-src.tar.gz"))
+ (sha256
+ (base32
+ "101781iw32p47386fxqr01nrkywi12w17ajh02k2vlga4z8zyv86"))
+ (patches (search-patches "hubbub-sort-entities.patch"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("netsurf-buildsystem" ,netsurf-buildsystem)
+ ("pkg-config" ,pkg-config)
+ ("doxygen" ,doxygen)
+ ("json-c" ,json-c)
+ ("perl" ,perl)))
+ (propagated-inputs
+ `(("libparserutils" ,libparserutils))) ;for libhubbub.pc
+ (arguments netsurf-buildsystem-arguments)
+ (home-page "http://www.netsurf-browser.org/projects/hubbub/")
+ (synopsis "HTML5 compliant parsing library")
+ (description
+ "Hubbub is an HTML5 compliant parsing library, written in C, which can
+parse both valid and invalid web content. It is developed as part of the
+NetSurf project.")
+ (license l:expat)))
+
(define-public netsurf
(package
(name "netsurf")
- 09/17: gnu: Add LibDOM., (continued)
- 09/17: gnu: Add LibDOM., Eric Bavier, 2017/02/13
- 08/17: gnu: Add perl-switch., Eric Bavier, 2017/02/13
- 06/17: gnu: Add LibWapcaplet., Eric Bavier, 2017/02/13
- 04/17: gnu: Add libparserutils., Eric Bavier, 2017/02/13
- 12/17: gnu: Add libnsgif., Eric Bavier, 2017/02/13
- 07/17: gnu: Add libcss., Eric Bavier, 2017/02/13
- 14/17: gnu: Add libnspsl., Eric Bavier, 2017/02/13
- 10/17: gnu: Add libsvgtiny., Eric Bavier, 2017/02/13
- 01/17: gnu: netsurf: Upgrade to 3.6., Eric Bavier, 2017/02/13
- 15/17: gnu: Add nsgenbind., Eric Bavier, 2017/02/13
- 05/17: gnu: Add hubbub.,
Eric Bavier <=
- 17/17: gnu: netsurf: Enable tests., Eric Bavier, 2017/02/13
- 11/17: gnu: Add libnsbmp., Eric Bavier, 2017/02/13
- 13/17: gnu: Add libnsutils., Eric Bavier, 2017/02/13
- 16/17: gnu: netsurf: Use unbundled source., Eric Bavier, 2017/02/13