This is an automated email from the ASF dual-hosted git repository.
epugh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 7646353 SOLR-15793: ref-guide jrubyPrepare fails due to gems trying
to compile native code (#412)
7646353 is described below
commit 7646353f2b57db0b7130f14694565e65db2ec574
Author: Eric Pugh <[email protected]>
AuthorDate: Thu Nov 11 19:16:21 2021 -0500
SOLR-15793: ref-guide jrubyPrepare fails due to gems trying to compile
native code (#412)
* pick a specific (older.. 0.6.0) version of http_parser.rb that compiles
on jruby
---
solr/CHANGES.txt | 2 ++
solr/solr-ref-guide/build.gradle | 3 +++
2 files changed, 5 insertions(+)
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 710bd8a..931a6a7 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -174,6 +174,8 @@ Build
* SOLR-13671: Remove check for bare "var" declarations in
validate-source-patterns (Erick Erickson, Alex Bulygin, janhoy)
+* SOLR-15793: Pin http_parser.rb to specific version to allow Solr Ref Guide
on Jekyll to run (Eric Pugh)
+
Other Changes
----------------------
* SOLR-15603: Add an option to activate Gradle build cache, build task
cleanups (Alexis Tual, Dawid Weiss)
diff --git a/solr/solr-ref-guide/build.gradle b/solr/solr-ref-guide/build.gradle
index 884a154..021ca45 100644
--- a/solr/solr-ref-guide/build.gradle
+++ b/solr/solr-ref-guide/build.gradle
@@ -78,6 +78,9 @@ dependencies {
gems 'rubygems:tilt:2.0.10'
gems 'rubygems:slim:4.1.0'
gems 'rubygems:concurrent-ruby:1.1.9'
+ gems 'rubygems:http_parser.rb:0.6.0'
+
+
}
sourceSets {