nokogiri 1.18.3-x86_64-linux-musl → 1.18.4-x86_64-linux-musl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: de25785748730fa962144214d74eccaa9c57d0afd0efe43c1f4d5df9e71d53ab
4
- data.tar.gz: 8f84a02adfda6004e4e5330154bfecc478ae7dafe6d2798e67f0cece59b77fbe
3
+ metadata.gz: fc3f2bf3a5b12435a954048dbaad5a0a8a5cd4826cba84757c7608e9f45b3738
4
+ data.tar.gz: 5519c845e6e73324a710051d0ef65b93ed46afc68ff6d40608de6709dfd72d1f
5
5
  SHA512:
6
- metadata.gz: 1349c3b1c00f589f822c0591666b36d72821928a678c9f7ca8e9f4cef786f13d10c55256d28d00fb1a4da56019bd05bbe463e44e8a996f53ca9533c9b7c35c14
7
- data.tar.gz: bc07856219ae9df188ea35e0f6cf9de4e3f1321372a993c2199fa56ade5f290d826311df5a2752fe82122613dbb123b902a26538c6774d2eab5d1316cff33e9e
6
+ metadata.gz: 800d9228f6350f13884d86c74614563a29596fa5f1f080ddb00b4388e6df75bde922e0c43252772e8b7e4f9fa04d49d63f9ee9048f680a384fb32c0f0a71757c
7
+ data.tar.gz: f44849867378114d3d4bb029011402a4ac934e32b7c6928ba47c26f530c8c1f74d36f9428ccea1951fb4f4b925cb1ea05676fc7d2bc340e3926ecdf7fa154c95
data/dependencies.yml CHANGED
@@ -5,9 +5,9 @@ libxml2:
5
5
  # sha-256 hash provided in https://download.gnome.org/sources/libxml2/2.13/libxml2-2.13.6.sha256sum
6
6
 
7
7
  libxslt:
8
- version: "1.1.42"
9
- sha256: "85ca62cac0d41fc77d3f6033da9df6fd73d20ea2fc18b0a3609ffb4110e1baeb"
10
- # sha-256 hash provided in https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.42.sha256sum
8
+ version: "1.1.43"
9
+ sha256: "5a3d6b383ca5afc235b171118e90f5ff6aa27e9fea3303065231a6d403f0183a"
10
+ # sha-256 hash provided in https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.43.sha256sum
11
11
 
12
12
  zlib:
13
13
  version: "1.3.1"
@@ -240,15 +240,7 @@ def zlib_source(version_string)
240
240
  end
241
241
 
242
242
  def gnome_source
243
- # As of 2022-02-20, some mirrors have expired SSL certificates. I'm able to retrieve from my home,
244
- # but whatever host is resolved on the github actions workers see an expired cert.
245
- #
246
- # See https://github.com/sparklemotion/nokogiri/runs/5266206403?check_suite_focus=true
247
- if ENV["NOKOGIRI_USE_CANONICAL_GNOME_SOURCE"]
248
- "https://download.gnome.org"
249
- else
250
- "https://muug.ca/mirror/gnome" # old reliable
251
- end
243
+ "https://download.gnome.org"
252
244
  end
253
245
 
254
246
  LOCAL_PACKAGE_RESPONSE = Object.new
@@ -18,21 +18,21 @@ extern "C" {
18
18
  *
19
19
  * the version string like "1.2.3"
20
20
  */
21
- #define LIBEXSLT_DOTTED_VERSION "0.8.23"
21
+ #define LIBEXSLT_DOTTED_VERSION "0.8.24"
22
22
 
23
23
  /**
24
24
  * LIBEXSLT_VERSION:
25
25
  *
26
26
  * the version number: 1.2.3 value is 10203
27
27
  */
28
- #define LIBEXSLT_VERSION 823
28
+ #define LIBEXSLT_VERSION 824
29
29
 
30
30
  /**
31
31
  * LIBEXSLT_VERSION_STRING:
32
32
  *
33
33
  * the version number string, 1.2.3 value is "10203"
34
34
  */
35
- #define LIBEXSLT_VERSION_STRING "823"
35
+ #define LIBEXSLT_VERSION_STRING "824"
36
36
 
37
37
  /**
38
38
  * LIBEXSLT_VERSION_EXTRA:
@@ -20,21 +20,21 @@ extern "C" {
20
20
  *
21
21
  * the version string like "1.2.3"
22
22
  */
23
- #define LIBXSLT_DOTTED_VERSION "1.1.42"
23
+ #define LIBXSLT_DOTTED_VERSION "1.1.43"
24
24
 
25
25
  /**
26
26
  * LIBXSLT_VERSION:
27
27
  *
28
28
  * the version number: 1.2.3 value is 10203
29
29
  */
30
- #define LIBXSLT_VERSION 10142
30
+ #define LIBXSLT_VERSION 10143
31
31
 
32
32
  /**
33
33
  * LIBXSLT_VERSION_STRING:
34
34
  *
35
35
  * the version number string, 1.2.3 value is "10203"
36
36
  */
37
- #define LIBXSLT_VERSION_STRING "10142"
37
+ #define LIBXSLT_VERSION_STRING "10143"
38
38
 
39
39
  /**
40
40
  * LIBXSLT_VERSION_EXTRA:
@@ -83,7 +83,7 @@ extern "C" {
83
83
  * is insignifiant.
84
84
  * On by default unless --without-debugger is passed to configure
85
85
  */
86
- #if 1
86
+ #if 0
87
87
  #ifndef WITH_DEBUGGER
88
88
  #define WITH_DEBUGGER
89
89
  #endif
@@ -112,7 +112,7 @@ extern "C" {
112
112
  #ifndef WITH_MODULES
113
113
  #define WITH_MODULES
114
114
  #endif
115
- #define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/aarch64-linux-musl/libxslt/1.1.42/lib/libxslt-plugins"
115
+ #define LIBXSLT_DEFAULT_PLUGINS_PATH() ""
116
116
  #endif
117
117
 
118
118
  /**
Binary file
Binary file
Binary file
Binary file
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Nokogiri
4
4
  # The version of Nokogiri you are using
5
- VERSION = "1.18.3"
5
+ VERSION = "1.18.4"
6
6
  end
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.18.3
4
+ version: 1.18.4
5
5
  platform: x86_64-linux-musl
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: 2025-02-18 00:00:00.000000000 Z
23
+ date: 2025-03-14 00:00:00.000000000 Z
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: racc