Blame SOURCES/ruby-2.3.0-ruby_version.patch

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