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