nokogiri 1.13.1 → 1.13.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +0 -3
- data/dependencies.yml +6 -56
- data/ext/nokogiri/extconf.rb +18 -3
- data/lib/nokogiri/version/constant.rb +1 -1
- data/patches/libxml2/0004-use-glibc-strlen.patch +3 -3
- data/patches/libxml2/0006-update-automake-files-for-arm64.patch +2443 -1914
- data/patches/libxslt/0001-update-automake-files-for-arm64.patch +2445 -1919
- data/ports/archives/libxml2-2.9.13.tar.xz +0 -0
- data/ports/archives/libxslt-1.1.35.tar.xz +0 -0
- metadata +7 -9
- data/patches/libxml2/0007-Fix-XPath-recursion-limit.patch +0 -31
- data/patches/libxslt/0002-Fix-xml2-config-check-in-configure-script.patch +0 -19
- data/ports/archives/libxml2-2.9.12.tar.gz +0 -0
- data/ports/archives/libxslt-1.1.34.tar.gz +0 -0
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nokogiri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.13.
|
4
|
+
version: 1.13.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Dalessio
|
@@ -20,7 +20,7 @@ authors:
|
|
20
20
|
autorequire:
|
21
21
|
bindir: bin
|
22
22
|
cert_chain: []
|
23
|
-
date: 2022-
|
23
|
+
date: 2022-02-21 00:00:00.000000000 Z
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: mini_portile2
|
@@ -28,14 +28,14 @@ dependencies:
|
|
28
28
|
requirements:
|
29
29
|
- - "~>"
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 2.
|
31
|
+
version: 2.8.0
|
32
32
|
type: :runtime
|
33
33
|
prerelease: false
|
34
34
|
version_requirements: !ruby/object:Gem::Requirement
|
35
35
|
requirements:
|
36
36
|
- - "~>"
|
37
37
|
- !ruby/object:Gem::Version
|
38
|
-
version: 2.
|
38
|
+
version: 2.8.0
|
39
39
|
- !ruby/object:Gem::Dependency
|
40
40
|
name: racc
|
41
41
|
requirement: !ruby/object:Gem::Requirement
|
@@ -490,13 +490,11 @@ files:
|
|
490
490
|
- patches/libxml2/0004-use-glibc-strlen.patch
|
491
491
|
- patches/libxml2/0005-avoid-isnan-isinf.patch
|
492
492
|
- patches/libxml2/0006-update-automake-files-for-arm64.patch
|
493
|
-
- patches/libxml2/0007-Fix-XPath-recursion-limit.patch
|
494
493
|
- patches/libxml2/0008-htmlParseComment-handle-abruptly-closed-comments.patch
|
495
494
|
- patches/libxml2/0009-allow-wildcard-namespaces.patch
|
496
495
|
- patches/libxslt/0001-update-automake-files-for-arm64.patch
|
497
|
-
-
|
498
|
-
- ports/archives/
|
499
|
-
- ports/archives/libxslt-1.1.34.tar.gz
|
496
|
+
- ports/archives/libxml2-2.9.13.tar.xz
|
497
|
+
- ports/archives/libxslt-1.1.35.tar.xz
|
500
498
|
homepage: https://nokogiri.org
|
501
499
|
licenses:
|
502
500
|
- MIT
|
@@ -524,7 +522,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
524
522
|
- !ruby/object:Gem::Version
|
525
523
|
version: '0'
|
526
524
|
requirements: []
|
527
|
-
rubygems_version: 3.3.
|
525
|
+
rubygems_version: 3.3.5
|
528
526
|
signing_key:
|
529
527
|
specification_version: 4
|
530
528
|
summary: Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.
|
@@ -1,31 +0,0 @@
|
|
1
|
-
From 3e1aad4fe584747fd7d17cc7b2863a78e2d21a77 Mon Sep 17 00:00:00 2001
|
2
|
-
From: Nick Wellnhofer <wellnhofer@aevum.de>
|
3
|
-
Date: Wed, 2 Jun 2021 17:31:49 +0200
|
4
|
-
Subject: [PATCH] Fix XPath recursion limit
|
5
|
-
|
6
|
-
Fix accounting of recursion depth when parsing XPath expressions.
|
7
|
-
|
8
|
-
This silly bug introduced in commit 804c5297 could lead to spurious
|
9
|
-
errors when parsing larger expressions or XSLT documents.
|
10
|
-
|
11
|
-
Should fix #264.
|
12
|
-
---
|
13
|
-
xpath.c | 2 +-
|
14
|
-
1 file changed, 1 insertion(+), 1 deletion(-)
|
15
|
-
|
16
|
-
diff --git a/xpath.c b/xpath.c
|
17
|
-
index 7497ba0..1aa2f1a 100644
|
18
|
-
--- a/xpath.c
|
19
|
-
+++ b/xpath.c
|
20
|
-
@@ -10983,7 +10983,7 @@ xmlXPathCompileExpr(xmlXPathParserContextPtr ctxt, int sort) {
|
21
|
-
}
|
22
|
-
|
23
|
-
if (xpctxt != NULL)
|
24
|
-
- xpctxt->depth -= 1;
|
25
|
-
+ xpctxt->depth -= 10;
|
26
|
-
}
|
27
|
-
|
28
|
-
/**
|
29
|
-
--
|
30
|
-
2.31.0
|
31
|
-
|
@@ -1,19 +0,0 @@
|
|
1
|
-
From: Nick Wellnhofer <wellnhofer@aevum.de>
|
2
|
-
Date: Fri, 15 Nov 2019 11:53:11 +0100
|
3
|
-
Subject: [PATCH] Fix xml2-config check in configure script
|
4
|
-
|
5
|
-
A 'print' option has never been supported. After a recent change to
|
6
|
-
libxml2, invalid options cause xml2-config to fail.
|
7
|
-
diff --git a/configure b/configure
|
8
|
-
index c63adc5..6061227 100755
|
9
|
-
--- a/configure
|
10
|
-
+++ b/configure
|
11
|
-
@@ -14860,7 +14860,7 @@ PKG_CONFIG=$_save_PKG_CONFIG
|
12
|
-
fi
|
13
|
-
|
14
|
-
|
15
|
-
-if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs print > /dev/null 2>&1
|
16
|
-
+if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs > /dev/null 2>&1
|
17
|
-
then
|
18
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libxml libraries >= $LIBXML_REQUIRED_VERSION" >&5
|
19
|
-
$as_echo_n "checking for libxml libraries >= $LIBXML_REQUIRED_VERSION... " >&6; }
|
Binary file
|
Binary file
|