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