]> git.pld-linux.org Git - packages/ruby.git/blame - ruby-version.patch
- started updated to 2.7.6 (2.6.x is EOL); fails on changed gems installation paths
[packages/ruby.git] / ruby-version.patch
CommitLineData
1c3d4237 1From 4fc1be3af3f58621bb751c9e63c208b15c0e8d16 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
3Date: Tue, 31 Mar 2015 16:21:04 +0200
4Subject: [PATCH 1/4] Use ruby_version_dir_name for versioned directories.
5
6This disallows changing the ruby_version constant by --with-ruby-version
7configuration options. The two places version numbers are disallowed as
8well, since there are a lot of places which cannot handle this format
9properly.
10
11ruby_version_dir_name now specifies custom version string for versioned
12directories, e.g. instead of default X.Y.Z, you can specify whatever
13string.
14---
2798ed3c 15 configure.ac | 64 ++++++++++++++++++++++++---------------------
1c3d4237 16 template/ruby.pc.in | 1 +
2798ed3c 17 2 files changed, 35 insertions(+), 30 deletions(-)
1c3d4237 18
2798ed3c 19diff --git a/configure.ac b/configure.ac
20index 8ea969412f..a00f2b6776 100644
21--- a/configure.ac
22+++ b/configure.ac
23@@ -3661,9 +3661,6 @@ AS_CASE(["$target_os"],
1c3d4237 24 rubyw_install_name='$(RUBYW_INSTALL_NAME)'
25 ])
26
27-rubylibdir='${rubylibprefix}/${ruby_version}'
28-rubyarchdir=${multiarch+'${rubyarchprefix}/${ruby_version}'}${multiarch-'${rubylibdir}/${arch}'}
29-
30 rubyarchprefix=${multiarch+'${archlibdir}/${RUBY_BASE_NAME}'}${multiarch-'${rubylibprefix}/${arch}'}
31 AC_ARG_WITH(rubyarchprefix,
32 AS_HELP_STRING([--with-rubyarchprefix=DIR],
2798ed3c 33@@ -3686,56 +3683,62 @@ AC_ARG_WITH(ridir,
1c3d4237 34 AC_SUBST(ridir)
35 AC_SUBST(RI_BASE_NAME)
36
37-AC_ARG_WITH(ruby-version,
38- AS_HELP_STRING([--with-ruby-version=STR], [ruby version string for version specific directories [[full]] (full|minor|STR)]),
39- [ruby_version=$withval],
40- [ruby_version=full])
41 unset RUBY_LIB_VERSION
42-unset RUBY_LIB_VERSION_STYLE
43-AS_CASE(["$ruby_version"],
44- [full], [RUBY_LIB_VERSION_STYLE='3 /* full */'],
45- [minor], [RUBY_LIB_VERSION_STYLE='2 /* minor */'])
2798ed3c 46-AS_IF([test ${RUBY_LIB_VERSION_STYLE+set}], [
1c3d4237 47- {
48- echo "#define RUBY_LIB_VERSION_STYLE $RUBY_LIB_VERSION_STYLE"
49- echo '#define STRINGIZE(x) x'
50- test -f revision.h -o -f "${srcdir}/revision.h" || echo '#define RUBY_REVISION 0'
1c3d4237 51- echo '#include "version.h"'
52- echo 'ruby_version=RUBY_LIB_VERSION'
53- } > conftest.c
1c3d4237 54- ruby_version="`$CPP -I. -I"${srcdir}" -I"${srcdir}/include" conftest.c | sed '/^ruby_version=/!d;s/ //g'`"
55- eval $ruby_version
2798ed3c 56-], [test -z "${ruby_version}"], [
1c3d4237 57- AC_MSG_ERROR([No ruby version, No place for bundled libraries])
2798ed3c 58-], [
1c3d4237 59- RUBY_LIB_VERSION="${ruby_version}"
2798ed3c 60-])
221b7043 61+RUBY_LIB_VERSION_STYLE='2 /* minor */'
1c3d4237 62+{
63+echo "#define RUBY_LIB_VERSION_STYLE $RUBY_LIB_VERSION_STYLE"
64+echo '#define STRINGIZE(x) x'
65+test -f revision.h -o -f "${srcdir}/revision.h" || echo '#define RUBY_REVISION 0'
1c3d4237 66+echo '#include "version.h"'
67+echo 'ruby_version=RUBY_LIB_VERSION'
68+} > conftest.c
1c3d4237 69+ruby_version="`$CPP -I. -I"${srcdir}" -I"${srcdir}/include" conftest.c | sed '/^ruby_version=/!d;s/ //g'`"
70+eval $ruby_version
71+
72+RUBY_LIB_VERSION="${ruby_version}"
73+
74 AC_SUBST(RUBY_LIB_VERSION_STYLE)
75 AC_SUBST(RUBY_LIB_VERSION)
76
77+AC_ARG_WITH(ruby-version,
78+ AS_HELP_STRING([--with-ruby-version=STR], [ruby version string for version specific directories [[full]] (full|STR)]),
79+ [ruby_version_dir_name=$withval],
80+ [ruby_version_dir_name=full])
81+AS_CASE(["$ruby_version_dir_name"],
82+ [full], [ruby_version_dir_name='${ruby_version}'])
83+
84+ruby_version_dir=/'${ruby_version_dir_name}'
85+
86+if test -z "${ruby_version_dir_name}"; then
87+ AC_MSG_ERROR([No ruby version, No place for bundled libraries])
88+fi
89+
90+rubylibdir='${rubylibprefix}'${ruby_version_dir}
91+rubyarchdir=${multiarch+'${rubyarchprefix}'${ruby_version_dir}}${multiarch-'${rubylibdir}/${arch}'}
92+
93 AC_ARG_WITH(sitedir,
94 AS_HELP_STRING([--with-sitedir=DIR], [site libraries in DIR [[RUBY_LIB_PREFIX/site_ruby]], "no" to disable site directory]),
95 [sitedir=$withval],
96 [sitedir='${rubylibprefix}/site_ruby'])
97-sitelibdir='${sitedir}/${ruby_version}'
98+sitelibdir='${sitedir}'${ruby_version_dir}
99
100 AC_ARG_WITH(sitearchdir,
101 AS_HELP_STRING([--with-sitearchdir=DIR],
102 [architecture dependent site libraries in DIR [[SITEDIR/SITEARCH]], "no" to disable site directory]),
103 [sitearchdir=$withval],
104- [sitearchdir=${multiarch+'${rubysitearchprefix}/site_ruby/${ruby_version}'}${multiarch-'${sitelibdir}/${sitearch}'}])
105+ [sitearchdir=${multiarch+'${rubysitearchprefix}/site_ruby'${ruby_version_dir}}${multiarch-'${sitelibdir}/${sitearch}'}])
106
107 AC_ARG_WITH(vendordir,
108 AS_HELP_STRING([--with-vendordir=DIR], [vendor libraries in DIR [[RUBY_LIB_PREFIX/vendor_ruby]], "no" to disable vendor directory]),
109 [vendordir=$withval],
110 [vendordir='${rubylibprefix}/vendor_ruby'])
111-vendorlibdir='${vendordir}/${ruby_version}'
112+vendorlibdir='${vendordir}'${ruby_version_dir}
113
114 AC_ARG_WITH(vendorarchdir,
115 AS_HELP_STRING([--with-vendorarchdir=DIR],
116 [architecture dependent vendor libraries in DIR [[VENDORDIR/SITEARCH]], "no" to disable vendor directory]),
117 [vendorarchdir=$withval],
118- [vendorarchdir=${multiarch+'${rubysitearchprefix}/vendor_ruby/${ruby_version}'}${multiarch-'${vendorlibdir}/${sitearch}'}])
119+ [vendorarchdir=${multiarch+'${rubysitearchprefix}/vendor_ruby'${ruby_version_dir}}${multiarch-'${vendorlibdir}/${sitearch}'}])
120
2798ed3c 121 AS_IF([test "${LOAD_RELATIVE+set}"], [
1c3d4237 122 AC_DEFINE_UNQUOTED(LOAD_RELATIVE, $LOAD_RELATIVE)
2798ed3c 123@@ -3752,6 +3755,7 @@ AC_SUBST(sitearchincludedir)dnl
1c3d4237 124 AC_SUBST(arch)dnl
125 AC_SUBST(sitearch)dnl
126 AC_SUBST(ruby_version)dnl
127+AC_SUBST(ruby_version_dir_name)dnl
128 AC_SUBST(rubylibdir)dnl
129 AC_SUBST(rubyarchdir)dnl
130 AC_SUBST(sitedir)dnl
131diff --git a/template/ruby.pc.in b/template/ruby.pc.in
132index 8a2c066..c81b211 100644
133--- a/template/ruby.pc.in
134+++ b/template/ruby.pc.in
135@@ -9,6 +9,7 @@ MAJOR=@MAJOR@
136 MINOR=@MINOR@
137 TEENY=@TEENY@
138 ruby_version=@ruby_version@
139+ruby_version_dir_name=@ruby_version_dir_name@
2798ed3c 140 RUBY_API_VERSION=@RUBY_API_VERSION@
1c3d4237 141 RUBY_PROGRAM_VERSION=@RUBY_PROGRAM_VERSION@
142 RUBY_BASE_NAME=@RUBY_BASE_NAME@
1c3d4237 143--
1442.1.0
145
146
147From 518850aba6eee76de7715aae8d37330e34b01983 Mon Sep 17 00:00:00 2001
148From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
149Date: Tue, 31 Mar 2015 16:37:26 +0200
150Subject: [PATCH 2/4] Add ruby_version_dir_name support for RDoc.
151
152---
153 lib/rdoc/ri/paths.rb | 2 +-
154 tool/rbinstall.rb | 2 +-
155 2 files changed, 2 insertions(+), 2 deletions(-)
156
157diff --git a/lib/rdoc/ri/paths.rb b/lib/rdoc/ri/paths.rb
158index 970cb91..5bf8230 100644
159--- a/lib/rdoc/ri/paths.rb
160+++ b/lib/rdoc/ri/paths.rb
161@@ -10,7 +10,7 @@ module RDoc::RI::Paths
162 #:stopdoc:
163 require 'rbconfig'
164
165- version = RbConfig::CONFIG['ruby_version']
166+ version = RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
167
168 BASE = if RbConfig::CONFIG.key? 'ridir' then
169 File.join RbConfig::CONFIG['ridir'], version
170diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
171index d4c110e..d39c9a6 100755
172--- a/tool/rbinstall.rb
173+++ b/tool/rbinstall.rb
2798ed3c 174@@ -424,7 +424,7 @@ def CONFIG.[](name, mandatory = false)
1c3d4237 175
176 install?(:doc, :rdoc) do
177 if $rdocdir
178- ridatadir = File.join(CONFIG['ridir'], CONFIG['ruby_version'], "system")
179+ ridatadir = File.join(CONFIG['ridir'], CONFIG['ruby_version_dir_name'] || CONFIG['ruby_version'], "system")
180 prepare "rdoc", ridatadir
2798ed3c 181 install_recursive($rdocdir, ridatadir, :no_install => rdoc_noinst, :mode => $data_mode)
1c3d4237 182 end
183--
1842.1.0
185
186
187From f8d136f9a46d1fe87eba622ab9665935d05e981b Mon Sep 17 00:00:00 2001
188From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
189Date: Tue, 31 Mar 2015 16:37:44 +0200
190Subject: [PATCH 3/4] Add ruby_version_dir_name support for RubyGems.
191
192---
193 lib/rubygems/defaults.rb | 11 ++++++-----
194 test/rubygems/test_gem.rb | 5 +++--
195 2 files changed, 9 insertions(+), 7 deletions(-)
196
3797574e
JB
197--- ruby-2.7.6/lib/rubygems/defaults.rb.orig 2022-04-12 13:25:48.000000000 +0200
198+++ ruby-2.7.6/lib/rubygems/defaults.rb 2022-09-08 19:29:57.011900694 +0200
199@@ -32,13 +32,13 @@ module Gem
1c3d4237 200 [
201 File.dirname(RbConfig::CONFIG['sitedir']),
202 'Gems',
203- RbConfig::CONFIG['ruby_version']
2798ed3c 204+ RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
1c3d4237 205 ]
206 else
207 [
3797574e 208 RbConfig::CONFIG['rubylibprefix'],
1c3d4237 209 'gems',
210- RbConfig::CONFIG['ruby_version']
211+ RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
212 ]
213 end
214
3797574e 215@@ -75,7 +75,8 @@ module Gem
1c3d4237 216
217 def self.user_dir
218 parts = [Gem.user_home, '.gem', ruby_engine]
219- parts << RbConfig::CONFIG['ruby_version'] unless RbConfig::CONFIG['ruby_version'].empty?
220+ ruby_version_dir_name = RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
221+ parts << ruby_version_dir_name unless ruby_version_dir_name.empty?
222 File.join parts
223 end
224
3797574e 225@@ -158,7 +159,7 @@ module Gem
1c3d4237 226 return nil unless RbConfig::CONFIG.key? 'vendordir'
227
228 File.join RbConfig::CONFIG['vendordir'], 'gems',
229- RbConfig::CONFIG['ruby_version']
230+ RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
231 end
232
2798ed3c 233 ##
3797574e
JB
234--- ruby-2.7.6/test/rubygems/test_gem.rb.orig 2022-04-12 13:25:48.000000000 +0200
235+++ ruby-2.7.6/test/rubygems/test_gem.rb 2022-09-08 19:32:06.067868205 +0200
236@@ -1378,7 +1378,8 @@ class TestGem < Gem::TestCase
1c3d4237 237
238 def test_self_user_dir
239 parts = [@userhome, '.gem', Gem.ruby_engine]
240- parts << RbConfig::CONFIG['ruby_version'] unless RbConfig::CONFIG['ruby_version'].empty?
241+ ruby_version_dir_name = RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
242+ parts << ruby_version_dir_name unless ruby_version_dir_name.empty?
243
244 assert_equal File.join(parts), Gem.user_dir
245 end
3797574e
JB
246@@ -1454,7 +1455,7 @@ class TestGem < Gem::TestCase
247 vendordir(File.join(@tempdir, 'vendor')) do
248 expected =
249 File.join RbConfig::CONFIG['vendordir'], 'gems',
250- RbConfig::CONFIG['ruby_version']
251+ RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
1c3d4237 252
3797574e
JB
253 assert_equal expected, Gem.vendor_dir
254 end
1c3d4237 255--
2562.1.0
257
258
259From 88c38a030c22dbf9422ece847bdfbf87d6659313 Mon Sep 17 00:00:00 2001
260From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
261Date: Wed, 1 Apr 2015 14:55:37 +0200
262Subject: [PATCH 4/4] Let headers directories follow the configured version
263 name.
264
265---
2798ed3c 266 configure.ac | 2 +-
1c3d4237 267 1 file changed, 1 insertion(+), 1 deletion(-)
268
2798ed3c 269diff --git a/configure.ac b/configure.ac
270index a00f2b6776..999e2d6d5d 100644
271--- a/configure.ac
272+++ b/configure.ac
273@@ -101,7 +101,7 @@ RUBY_BASE_NAME=`echo ruby | sed "$program_transform_name"`
1c3d4237 274 RUBYW_BASE_NAME=`echo rubyw | sed "$program_transform_name"`
275 AC_SUBST(RUBY_BASE_NAME)
276 AC_SUBST(RUBYW_BASE_NAME)
277-AC_SUBST(RUBY_VERSION_NAME, '${RUBY_BASE_NAME}-${ruby_version}')
278+AC_SUBST(RUBY_VERSION_NAME, '${RUBY_BASE_NAME}-${ruby_version_dir_name}')
279
280 AC_CANONICAL_TARGET
281 test x"$target_alias" = x &&
282--
2832.1.0
284
This page took 0.194073 seconds and 4 git commands to generate.