summaryrefslogtreecommitdiff
path: root/dev-ruby/ruby-shadow/files/ruby-shadow-2.5.1-ruby32.patch
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-ruby/ruby-shadow/files/ruby-shadow-2.5.1-ruby32.patch
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-ruby/ruby-shadow/files/ruby-shadow-2.5.1-ruby32.patch')
-rw-r--r--dev-ruby/ruby-shadow/files/ruby-shadow-2.5.1-ruby32.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-ruby/ruby-shadow/files/ruby-shadow-2.5.1-ruby32.patch b/dev-ruby/ruby-shadow/files/ruby-shadow-2.5.1-ruby32.patch
deleted file mode 100644
index 3cbcf4b088b3..000000000000
--- a/dev-ruby/ruby-shadow/files/ruby-shadow-2.5.1-ruby32.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From eab4aba3f5e06ea8f124d3e5ff6b3fa88c4807cd Mon Sep 17 00:00:00 2001
-From: Mamoru TASAKA <mtasaka@fedoraproject.org>
-Date: Thu, 1 Dec 2022 12:23:05 +0900
-Subject: [PATCH] extconf.rb: use Rbconfig::CONFIG instead of mkmf CONFIG
-
-In mkmf.rb CONFIG is defined as CONFIG is defined as RbConfig::MAKEFILE_CONFIG
-and RbConfig::MAKEFILE_CONFIG is almost same as RbConfig::CONFIG
-except that RbConfig::MAKEFILE_CONFIG uses reference for other variables.
-
-Using CONFIG in extconf.rb causes error with ruby3.2 because now
-CONFIG['host_os'] uses reference for target_os variable, and extconf.rb
-expects that this variable is all expanded. So instead, use RbConfig::CONFIG .
-
-Closes #30
----
- extconf.rb | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/extconf.rb b/extconf.rb
-index d17f926..55dcff5 100644
---- a/extconf.rb
-+++ b/extconf.rb
-@@ -14,7 +14,7 @@
- else; ''
- end
-
--implementation = case CONFIG['host_os']
-+implementation = case RbConfig::CONFIG['host_os']
- when /linux/i; 'shadow'
- when /sunos|solaris/i; 'shadow'
- when /freebsd|mirbsd|netbsd|openbsd/i; 'pwd'