2016-01-05 09:58:10 +00:00
|
|
|
From 4fc1be3af3f58621bb751c9e63c208b15c0e8d16 Mon Sep 17 00:00:00 2001
|
|
|
|
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
|
|
|
|
Date: Tue, 31 Mar 2015 16:21:04 +0200
|
|
|
|
Subject: [PATCH 1/4] Use ruby_version_dir_name for versioned directories.
|
|
|
|
|
|
|
|
This disallows changing the ruby_version constant by --with-ruby-version
|
|
|
|
configuration options. The two places version numbers are disallowed as
|
|
|
|
well, since there are a lot of places which cannot handle this format
|
|
|
|
properly.
|
|
|
|
|
|
|
|
ruby_version_dir_name now specifies custom version string for versioned
|
|
|
|
directories, e.g. instead of default X.Y.Z, you can specify whatever
|
|
|
|
string.
|
|
|
|
---
|
2019-01-17 07:31:01 +00:00
|
|
|
configure.ac | 64 ++++++++++++++++++++++++---------------------
|
2016-01-05 09:58:10 +00:00
|
|
|
template/ruby.pc.in | 1 +
|
2017-01-09 14:58:21 +00:00
|
|
|
2 files changed, 35 insertions(+), 30 deletions(-)
|
2016-01-05 09:58:10 +00:00
|
|
|
|
2018-01-03 11:06:40 +00:00
|
|
|
diff --git a/configure.ac b/configure.ac
|
2020-01-15 15:26:13 +00:00
|
|
|
index 80b137e380..63cd3b4f8b 100644
|
2018-01-03 11:06:40 +00:00
|
|
|
--- a/configure.ac
|
|
|
|
+++ b/configure.ac
|
2021-07-13 12:54:44 +00:00
|
|
|
@@ -3832,9 +3832,6 @@ AS_CASE(["$target_os"],
|
2016-01-05 09:58:10 +00:00
|
|
|
rubyw_install_name='$(RUBYW_INSTALL_NAME)'
|
|
|
|
])
|
|
|
|
|
|
|
|
-rubylibdir='${rubylibprefix}/${ruby_version}'
|
|
|
|
-rubyarchdir=${multiarch+'${rubyarchprefix}/${ruby_version}'}${multiarch-'${rubylibdir}/${arch}'}
|
|
|
|
-
|
|
|
|
rubyarchprefix=${multiarch+'${archlibdir}/${RUBY_BASE_NAME}'}${multiarch-'${rubylibprefix}/${arch}'}
|
|
|
|
AC_ARG_WITH(rubyarchprefix,
|
|
|
|
AS_HELP_STRING([--with-rubyarchprefix=DIR],
|
2021-11-25 16:46:12 +00:00
|
|
|
@@ -3857,56 +3854,62 @@ AC_ARG_WITH(ridir,
|
2016-01-05 09:58:10 +00:00
|
|
|
AC_SUBST(ridir)
|
|
|
|
AC_SUBST(RI_BASE_NAME)
|
|
|
|
|
|
|
|
-AC_ARG_WITH(ruby-version,
|
|
|
|
- AS_HELP_STRING([--with-ruby-version=STR], [ruby version string for version specific directories [[full]] (full|minor|STR)]),
|
|
|
|
- [ruby_version=$withval],
|
|
|
|
- [ruby_version=full])
|
|
|
|
unset RUBY_LIB_VERSION
|
|
|
|
-unset RUBY_LIB_VERSION_STYLE
|
|
|
|
-AS_CASE(["$ruby_version"],
|
|
|
|
- [full], [RUBY_LIB_VERSION_STYLE='3 /* full */'],
|
|
|
|
- [minor], [RUBY_LIB_VERSION_STYLE='2 /* minor */'])
|
2018-01-03 11:06:40 +00:00
|
|
|
-AS_IF([test ${RUBY_LIB_VERSION_STYLE+set}], [
|
2016-01-05 09:58:10 +00:00
|
|
|
- {
|
|
|
|
- echo "#define RUBY_LIB_VERSION_STYLE $RUBY_LIB_VERSION_STYLE"
|
|
|
|
- echo '#define STRINGIZE(x) x'
|
|
|
|
- test -f revision.h -o -f "${srcdir}/revision.h" || echo '#define RUBY_REVISION 0'
|
|
|
|
- echo '#include "version.h"'
|
|
|
|
- echo 'ruby_version=RUBY_LIB_VERSION'
|
|
|
|
- } > conftest.c
|
|
|
|
- ruby_version="`$CPP -I. -I"${srcdir}" -I"${srcdir}/include" conftest.c | sed '/^ruby_version=/!d;s/ //g'`"
|
|
|
|
- eval $ruby_version
|
2018-01-03 11:06:40 +00:00
|
|
|
-], [test -z "${ruby_version}"], [
|
2016-01-05 09:58:10 +00:00
|
|
|
- AC_MSG_ERROR([No ruby version, No place for bundled libraries])
|
2018-01-03 11:06:40 +00:00
|
|
|
-], [
|
2016-01-05 09:58:10 +00:00
|
|
|
- RUBY_LIB_VERSION="${ruby_version}"
|
2018-01-03 11:06:40 +00:00
|
|
|
-])
|
2016-01-05 09:58:10 +00:00
|
|
|
+RUBY_LIB_VERSION_STYLE='3 /* full */'
|
|
|
|
+{
|
|
|
|
+echo "#define RUBY_LIB_VERSION_STYLE $RUBY_LIB_VERSION_STYLE"
|
|
|
|
+echo '#define STRINGIZE(x) x'
|
|
|
|
+test -f revision.h -o -f "${srcdir}/revision.h" || echo '#define RUBY_REVISION 0'
|
|
|
|
+echo '#include "version.h"'
|
|
|
|
+echo 'ruby_version=RUBY_LIB_VERSION'
|
|
|
|
+} > conftest.c
|
|
|
|
+ruby_version="`$CPP -I. -I"${srcdir}" -I"${srcdir}/include" conftest.c | sed '/^ruby_version=/!d;s/ //g'`"
|
|
|
|
+eval $ruby_version
|
|
|
|
+
|
|
|
|
+RUBY_LIB_VERSION="${ruby_version}"
|
|
|
|
+
|
|
|
|
AC_SUBST(RUBY_LIB_VERSION_STYLE)
|
|
|
|
AC_SUBST(RUBY_LIB_VERSION)
|
|
|
|
|
|
|
|
+AC_ARG_WITH(ruby-version,
|
|
|
|
+ AS_HELP_STRING([--with-ruby-version=STR], [ruby version string for version specific directories [[full]] (full|STR)]),
|
|
|
|
+ [ruby_version_dir_name=$withval],
|
|
|
|
+ [ruby_version_dir_name=full])
|
|
|
|
+AS_CASE(["$ruby_version_dir_name"],
|
|
|
|
+ [full], [ruby_version_dir_name='${ruby_version}'])
|
|
|
|
+
|
|
|
|
+ruby_version_dir=/'${ruby_version_dir_name}'
|
|
|
|
+
|
|
|
|
+if test -z "${ruby_version_dir_name}"; then
|
|
|
|
+ AC_MSG_ERROR([No ruby version, No place for bundled libraries])
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
+rubylibdir='${rubylibprefix}'${ruby_version_dir}
|
|
|
|
+rubyarchdir=${multiarch+'${rubyarchprefix}'${ruby_version_dir}}${multiarch-'${rubylibdir}/${arch}'}
|
|
|
|
+
|
|
|
|
AC_ARG_WITH(sitedir,
|
|
|
|
AS_HELP_STRING([--with-sitedir=DIR], [site libraries in DIR [[RUBY_LIB_PREFIX/site_ruby]], "no" to disable site directory]),
|
|
|
|
[sitedir=$withval],
|
|
|
|
[sitedir='${rubylibprefix}/site_ruby'])
|
|
|
|
-sitelibdir='${sitedir}/${ruby_version}'
|
|
|
|
+sitelibdir='${sitedir}'${ruby_version_dir}
|
|
|
|
|
|
|
|
AC_ARG_WITH(sitearchdir,
|
|
|
|
AS_HELP_STRING([--with-sitearchdir=DIR],
|
|
|
|
[architecture dependent site libraries in DIR [[SITEDIR/SITEARCH]], "no" to disable site directory]),
|
|
|
|
[sitearchdir=$withval],
|
|
|
|
- [sitearchdir=${multiarch+'${rubysitearchprefix}/site_ruby/${ruby_version}'}${multiarch-'${sitelibdir}/${sitearch}'}])
|
|
|
|
+ [sitearchdir=${multiarch+'${rubysitearchprefix}/site_ruby'${ruby_version_dir}}${multiarch-'${sitelibdir}/${sitearch}'}])
|
|
|
|
|
|
|
|
AC_ARG_WITH(vendordir,
|
|
|
|
AS_HELP_STRING([--with-vendordir=DIR], [vendor libraries in DIR [[RUBY_LIB_PREFIX/vendor_ruby]], "no" to disable vendor directory]),
|
|
|
|
[vendordir=$withval],
|
|
|
|
[vendordir='${rubylibprefix}/vendor_ruby'])
|
|
|
|
-vendorlibdir='${vendordir}/${ruby_version}'
|
|
|
|
+vendorlibdir='${vendordir}'${ruby_version_dir}
|
|
|
|
|
|
|
|
AC_ARG_WITH(vendorarchdir,
|
|
|
|
AS_HELP_STRING([--with-vendorarchdir=DIR],
|
|
|
|
[architecture dependent vendor libraries in DIR [[VENDORDIR/SITEARCH]], "no" to disable vendor directory]),
|
|
|
|
[vendorarchdir=$withval],
|
|
|
|
- [vendorarchdir=${multiarch+'${rubysitearchprefix}/vendor_ruby/${ruby_version}'}${multiarch-'${vendorlibdir}/${sitearch}'}])
|
|
|
|
+ [vendorarchdir=${multiarch+'${rubysitearchprefix}/vendor_ruby'${ruby_version_dir}}${multiarch-'${vendorlibdir}/${sitearch}'}])
|
|
|
|
|
2018-01-03 11:06:40 +00:00
|
|
|
AS_IF([test "${LOAD_RELATIVE+set}"], [
|
2016-01-05 09:58:10 +00:00
|
|
|
AC_DEFINE_UNQUOTED(LOAD_RELATIVE, $LOAD_RELATIVE)
|
2021-11-25 16:46:12 +00:00
|
|
|
@@ -3923,6 +3926,7 @@ AC_SUBST(sitearchincludedir)dnl
|
2016-01-05 09:58:10 +00:00
|
|
|
AC_SUBST(arch)dnl
|
|
|
|
AC_SUBST(sitearch)dnl
|
|
|
|
AC_SUBST(ruby_version)dnl
|
|
|
|
+AC_SUBST(ruby_version_dir_name)dnl
|
|
|
|
AC_SUBST(rubylibdir)dnl
|
|
|
|
AC_SUBST(rubyarchdir)dnl
|
|
|
|
AC_SUBST(sitedir)dnl
|
|
|
|
diff --git a/template/ruby.pc.in b/template/ruby.pc.in
|
|
|
|
index 8a2c066..c81b211 100644
|
|
|
|
--- a/template/ruby.pc.in
|
|
|
|
+++ b/template/ruby.pc.in
|
|
|
|
@@ -9,6 +9,7 @@ MAJOR=@MAJOR@
|
|
|
|
MINOR=@MINOR@
|
|
|
|
TEENY=@TEENY@
|
|
|
|
ruby_version=@ruby_version@
|
|
|
|
+ruby_version_dir_name=@ruby_version_dir_name@
|
2018-01-03 11:06:40 +00:00
|
|
|
RUBY_API_VERSION=@RUBY_API_VERSION@
|
2016-01-05 09:58:10 +00:00
|
|
|
RUBY_PROGRAM_VERSION=@RUBY_PROGRAM_VERSION@
|
|
|
|
RUBY_BASE_NAME=@RUBY_BASE_NAME@
|
|
|
|
--
|
|
|
|
2.1.0
|
|
|
|
|
|
|
|
|
|
|
|
From 518850aba6eee76de7715aae8d37330e34b01983 Mon Sep 17 00:00:00 2001
|
|
|
|
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
|
|
|
|
Date: Tue, 31 Mar 2015 16:37:26 +0200
|
|
|
|
Subject: [PATCH 2/4] Add ruby_version_dir_name support for RDoc.
|
|
|
|
|
|
|
|
---
|
|
|
|
lib/rdoc/ri/paths.rb | 2 +-
|
|
|
|
tool/rbinstall.rb | 2 +-
|
|
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/lib/rdoc/ri/paths.rb b/lib/rdoc/ri/paths.rb
|
|
|
|
index 970cb91..5bf8230 100644
|
|
|
|
--- a/lib/rdoc/ri/paths.rb
|
|
|
|
+++ b/lib/rdoc/ri/paths.rb
|
|
|
|
@@ -10,7 +10,7 @@ module RDoc::RI::Paths
|
|
|
|
#:stopdoc:
|
|
|
|
require 'rbconfig'
|
|
|
|
|
|
|
|
- version = RbConfig::CONFIG['ruby_version']
|
|
|
|
+ version = RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
|
|
|
|
|
2021-01-04 15:25:55 +00:00
|
|
|
BASE = File.join RbConfig::CONFIG['ridir'], version
|
|
|
|
|
2016-01-05 09:58:10 +00:00
|
|
|
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
|
|
|
|
index d4c110e..d39c9a6 100755
|
|
|
|
--- a/tool/rbinstall.rb
|
|
|
|
+++ b/tool/rbinstall.rb
|
2021-07-13 12:54:44 +00:00
|
|
|
@@ -439,7 +439,7 @@ def CONFIG.[](name, mandatory = false)
|
2016-01-05 09:58:10 +00:00
|
|
|
|
|
|
|
install?(:doc, :rdoc) do
|
|
|
|
if $rdocdir
|
|
|
|
- ridatadir = File.join(CONFIG['ridir'], CONFIG['ruby_version'], "system")
|
|
|
|
+ ridatadir = File.join(CONFIG['ridir'], CONFIG['ruby_version_dir_name'] || CONFIG['ruby_version'], "system")
|
|
|
|
prepare "rdoc", ridatadir
|
2019-01-17 07:31:01 +00:00
|
|
|
install_recursive($rdocdir, ridatadir, :no_install => rdoc_noinst, :mode => $data_mode)
|
2016-01-05 09:58:10 +00:00
|
|
|
end
|
|
|
|
--
|
2020-01-15 15:26:13 +00:00
|
|
|
2.23.0
|
2016-01-05 09:58:10 +00:00
|
|
|
|
|
|
|
|
2020-01-15 15:26:13 +00:00
|
|
|
From 9f0ec0233f618cbb862629816b22491c3df79578 Mon Sep 17 00:00:00 2001
|
2016-01-05 09:58:10 +00:00
|
|
|
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
|
|
|
|
Date: Tue, 31 Mar 2015 16:37:44 +0200
|
|
|
|
Subject: [PATCH 3/4] Add ruby_version_dir_name support for RubyGems.
|
|
|
|
|
|
|
|
---
|
2020-01-15 15:26:13 +00:00
|
|
|
lib/rubygems/defaults.rb | 9 +++++----
|
|
|
|
test/rubygems/test_gem.rb | 5 +++--
|
|
|
|
2 files changed, 8 insertions(+), 6 deletions(-)
|
2016-01-05 09:58:10 +00:00
|
|
|
|
|
|
|
diff --git a/lib/rubygems/defaults.rb b/lib/rubygems/defaults.rb
|
2020-01-15 15:26:13 +00:00
|
|
|
index d4ff4a262c..3f9a5bf590 100644
|
2016-01-05 09:58:10 +00:00
|
|
|
--- a/lib/rubygems/defaults.rb
|
|
|
|
+++ b/lib/rubygems/defaults.rb
|
2021-01-04 15:25:55 +00:00
|
|
|
@@ -38,13 +38,13 @@ def self.default_dir
|
2016-01-05 09:58:10 +00:00
|
|
|
[
|
|
|
|
File.dirname(RbConfig::CONFIG['sitedir']),
|
|
|
|
'Gems',
|
2021-01-04 15:25:55 +00:00
|
|
|
- RbConfig::CONFIG['ruby_version'],
|
2019-01-17 07:31:01 +00:00
|
|
|
+ RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
|
2016-01-05 09:58:10 +00:00
|
|
|
]
|
|
|
|
else
|
|
|
|
[
|
2020-01-15 15:26:13 +00:00
|
|
|
RbConfig::CONFIG['rubylibprefix'],
|
2016-01-05 09:58:10 +00:00
|
|
|
'gems',
|
2021-01-04 15:25:55 +00:00
|
|
|
- RbConfig::CONFIG['ruby_version'],
|
2016-01-05 09:58:10 +00:00
|
|
|
+ RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2021-01-04 15:25:55 +00:00
|
|
|
@@ -117,7 +117,8 @@ def self.user_dir
|
|
|
|
gem_dir = File.join(Gem.user_home, ".gem")
|
|
|
|
gem_dir = File.join(Gem.data_home, "gem") unless File.exist?(gem_dir)
|
|
|
|
parts = [gem_dir, ruby_engine]
|
2016-01-05 09:58:10 +00:00
|
|
|
- parts << RbConfig::CONFIG['ruby_version'] unless RbConfig::CONFIG['ruby_version'].empty?
|
|
|
|
+ ruby_version_dir_name = RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
|
|
|
|
+ parts << ruby_version_dir_name unless ruby_version_dir_name.empty?
|
|
|
|
File.join parts
|
|
|
|
end
|
|
|
|
|
2021-01-04 15:25:55 +00:00
|
|
|
@@ -252,7 +253,7 @@ def self.vendor_dir # :nodoc:
|
2016-01-05 09:58:10 +00:00
|
|
|
return nil unless RbConfig::CONFIG.key? 'vendordir'
|
|
|
|
|
|
|
|
File.join RbConfig::CONFIG['vendordir'], 'gems',
|
|
|
|
- RbConfig::CONFIG['ruby_version']
|
|
|
|
+ RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
|
|
|
|
end
|
|
|
|
|
2017-01-09 14:58:21 +00:00
|
|
|
##
|
2016-01-05 09:58:10 +00:00
|
|
|
diff --git a/test/rubygems/test_gem.rb b/test/rubygems/test_gem.rb
|
2020-01-15 15:26:13 +00:00
|
|
|
index b25068405d..e9fef4a311 100644
|
2016-01-05 09:58:10 +00:00
|
|
|
--- a/test/rubygems/test_gem.rb
|
|
|
|
+++ b/test/rubygems/test_gem.rb
|
2021-11-25 16:46:12 +00:00
|
|
|
@@ -1440,7 +1440,8 @@ def test_self_use_paths
|
2016-01-05 09:58:10 +00:00
|
|
|
|
|
|
|
def test_self_user_dir
|
|
|
|
parts = [@userhome, '.gem', Gem.ruby_engine]
|
|
|
|
- parts << RbConfig::CONFIG['ruby_version'] unless RbConfig::CONFIG['ruby_version'].empty?
|
|
|
|
+ ruby_version_dir_name = RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
|
|
|
|
+ parts << ruby_version_dir_name unless ruby_version_dir_name.empty?
|
|
|
|
|
2021-01-04 15:25:55 +00:00
|
|
|
FileUtils.mkdir_p File.join(parts)
|
|
|
|
|
2021-11-25 16:46:12 +00:00
|
|
|
@@ -1516,7 +1517,7 @@ def test_self_vendor_dir
|
2020-01-15 15:26:13 +00:00
|
|
|
vendordir(File.join(@tempdir, 'vendor')) do
|
|
|
|
expected =
|
|
|
|
File.join RbConfig::CONFIG['vendordir'], 'gems',
|
|
|
|
- RbConfig::CONFIG['ruby_version']
|
|
|
|
+ RbConfig::CONFIG['ruby_version_dir_name'] || RbConfig::CONFIG['ruby_version']
|
2016-01-05 09:58:10 +00:00
|
|
|
|
2020-01-15 15:26:13 +00:00
|
|
|
assert_equal expected, Gem.vendor_dir
|
|
|
|
end
|
2016-01-05 09:58:10 +00:00
|
|
|
--
|
|
|
|
2.1.0
|
|
|
|
|
|
|
|
|
|
|
|
From 88c38a030c22dbf9422ece847bdfbf87d6659313 Mon Sep 17 00:00:00 2001
|
|
|
|
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
|
|
|
|
Date: Wed, 1 Apr 2015 14:55:37 +0200
|
|
|
|
Subject: [PATCH 4/4] Let headers directories follow the configured version
|
|
|
|
name.
|
|
|
|
|
|
|
|
---
|
2018-01-03 11:06:40 +00:00
|
|
|
configure.ac | 2 +-
|
2016-01-05 09:58:10 +00:00
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
2018-01-03 11:06:40 +00:00
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
|
|
index a00f2b6776..999e2d6d5d 100644
|
|
|
|
--- a/configure.ac
|
|
|
|
+++ b/configure.ac
|
2021-07-13 12:54:44 +00:00
|
|
|
@@ -107,7 +107,7 @@ RUBY_BASE_NAME=`echo ruby | sed "$program_transform_name"`
|
2016-01-05 09:58:10 +00:00
|
|
|
RUBYW_BASE_NAME=`echo rubyw | sed "$program_transform_name"`
|
|
|
|
AC_SUBST(RUBY_BASE_NAME)
|
|
|
|
AC_SUBST(RUBYW_BASE_NAME)
|
|
|
|
-AC_SUBST(RUBY_VERSION_NAME, '${RUBY_BASE_NAME}-${ruby_version}')
|
|
|
|
+AC_SUBST(RUBY_VERSION_NAME, '${RUBY_BASE_NAME}-${ruby_version_dir_name}')
|
|
|
|
|
2021-01-04 15:25:55 +00:00
|
|
|
dnl checks for alternative programs
|
|
|
|
AC_CANONICAL_BUILD
|
2016-01-05 09:58:10 +00:00
|
|
|
--
|
|
|
|
2.1.0
|
|
|
|
|