2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-07 04:08:00 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ruby < Formula
|
2013-11-26 13:37:54 +00:00
|
|
|
homepage 'https://www.ruby-lang.org/'
|
2013-12-25 17:07:03 +00:00
|
|
|
url 'http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.0.tar.bz2'
|
|
|
|
sha256 '1d3f4ad5f619ec15229206b6667586dcec7cc986672c8fbb8558161ecf07e277'
|
2013-12-17 04:53:37 +00:00
|
|
|
|
2013-09-22 01:47:37 +00:00
|
|
|
head do
|
|
|
|
url 'http://svn.ruby-lang.org/repos/ruby/trunk/'
|
|
|
|
depends_on :autoconf
|
|
|
|
end
|
2009-10-15 18:59:18 +00:00
|
|
|
|
2012-09-14 16:07:47 +00:00
|
|
|
option :universal
|
2013-12-25 22:26:22 +00:00
|
|
|
option 'with-suffix', 'Suffix commands with "21"'
|
2012-09-14 16:07:47 +00:00
|
|
|
option 'with-doc', 'Install documentation'
|
2012-09-17 01:17:32 +00:00
|
|
|
option 'with-tcltk', 'Install with Tcl/Tk support'
|
2012-09-14 16:07:47 +00:00
|
|
|
|
2012-04-20 17:05:30 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2013-09-12 18:17:45 +00:00
|
|
|
depends_on 'readline' => :recommended
|
|
|
|
depends_on 'gdbm' => :optional
|
2014-02-06 01:37:36 +00:00
|
|
|
depends_on 'gmp' => :optional
|
|
|
|
depends_on 'libffi' => :optional
|
2010-08-20 02:44:18 +00:00
|
|
|
depends_on 'libyaml'
|
2014-02-06 01:37:36 +00:00
|
|
|
depends_on 'openssl'
|
2013-04-12 05:26:10 +00:00
|
|
|
depends_on :x11 if build.with? 'tcltk'
|
2010-07-09 19:40:41 +00:00
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2326
|
|
|
|
end
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2014-02-06 06:32:58 +00:00
|
|
|
# pthread_setname_np() is unavailable before Snow Leopard
|
|
|
|
# Reported upstream: https://bugs.ruby-lang.org/issues/9492
|
|
|
|
def patches; DATA; end if MacOS.version < :snow_leopard
|
|
|
|
|
2009-09-07 04:08:00 +00:00
|
|
|
def install
|
2012-08-13 15:04:09 +00:00
|
|
|
system "autoconf" if build.head?
|
2010-08-20 03:00:37 +00:00
|
|
|
|
2014-02-06 01:37:36 +00:00
|
|
|
args = %W[--prefix=#{prefix} --enable-shared --disable-silent-rules]
|
2013-12-25 22:26:22 +00:00
|
|
|
args << "--program-suffix=21" if build.with? "suffix"
|
2013-08-02 03:51:36 +00:00
|
|
|
args << "--with-arch=#{Hardware::CPU.universal_archs.join(',')}" if build.universal?
|
2013-04-12 05:26:10 +00:00
|
|
|
args << "--with-out-ext=tk" unless build.with? "tcltk"
|
|
|
|
args << "--disable-install-doc" unless build.with? "doc"
|
2013-03-18 13:23:54 +00:00
|
|
|
args << "--disable-dtrace" unless MacOS::CLT.installed?
|
2014-02-06 01:37:36 +00:00
|
|
|
|
|
|
|
paths = []
|
|
|
|
|
|
|
|
paths.concat %w[readline gdbm gmp libffi].map { |dep|
|
|
|
|
Formula.factory(dep).opt_prefix if build.with? dep
|
|
|
|
}.compact
|
|
|
|
|
|
|
|
paths.concat %w[libyaml openssl].map { |dep|
|
|
|
|
Formula.factory(dep).opt_prefix
|
|
|
|
}
|
|
|
|
|
|
|
|
args << "--with-opt-dir=#{paths.join(":")}"
|
2013-02-24 17:46:34 +00:00
|
|
|
|
2010-08-20 03:00:37 +00:00
|
|
|
# Put gem, site and vendor folders in the HOMEBREW_PREFIX
|
2012-05-16 05:11:13 +00:00
|
|
|
ruby_lib = HOMEBREW_PREFIX/"lib/ruby"
|
|
|
|
(ruby_lib/'site_ruby').mkpath
|
|
|
|
(ruby_lib/'vendor_ruby').mkpath
|
|
|
|
(ruby_lib/'gems').mkpath
|
|
|
|
|
|
|
|
(lib/'ruby').install_symlink ruby_lib/'site_ruby',
|
|
|
|
ruby_lib/'vendor_ruby',
|
|
|
|
ruby_lib/'gems'
|
2010-08-21 01:29:38 +00:00
|
|
|
|
2010-01-19 11:41:37 +00:00
|
|
|
system "./configure", *args
|
2009-09-07 04:08:00 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
2010-07-09 19:40:41 +00:00
|
|
|
|
2010-07-18 19:31:09 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2013-11-23 03:40:32 +00:00
|
|
|
By default, gem installed executables will be placed into:
|
2013-01-26 06:36:48 +00:00
|
|
|
#{opt_prefix}/bin
|
2010-08-20 03:00:37 +00:00
|
|
|
|
2013-11-23 03:40:32 +00:00
|
|
|
You may want to add this to your PATH. After upgrades, you can run
|
|
|
|
gem pristine --all --only-executables
|
|
|
|
|
|
|
|
to restore binstubs for installed gems.
|
2009-12-02 12:41:23 +00:00
|
|
|
EOS
|
|
|
|
end
|
2009-09-07 04:08:00 +00:00
|
|
|
end
|
2014-02-06 06:32:58 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
diff --git a/thread_pthread.c b/thread_pthread.c
|
|
|
|
index 3911f8f..74d1ab7 100644
|
|
|
|
--- a/thread_pthread.c
|
|
|
|
+++ b/thread_pthread.c
|
|
|
|
@@ -1416,15 +1416,6 @@ timer_thread_sleep(rb_global_vm_lock_t* unused)
|
|
|
|
}
|
|
|
|
#endif /* USE_SLEEPY_TIMER_THREAD */
|
|
|
|
|
|
|
|
-#if defined(__linux__) && defined(PR_SET_NAME)
|
|
|
|
-# define SET_THREAD_NAME(name) prctl(PR_SET_NAME, name)
|
|
|
|
-#elif defined(__APPLE__)
|
|
|
|
-/* pthread_setname_np() on Darwin does not have target thread argument */
|
|
|
|
-# define SET_THREAD_NAME(name) pthread_setname_np(name)
|
|
|
|
-#else
|
|
|
|
-# define SET_THREAD_NAME(name) (void)0
|
|
|
|
-#endif
|
|
|
|
-
|
|
|
|
static void *
|
|
|
|
thread_timer(void *p)
|
|
|
|
{
|
|
|
|
@@ -1432,7 +1423,9 @@ thread_timer(void *p)
|
|
|
|
|
|
|
|
if (TT_DEBUG) WRITE_CONST(2, "start timer thread\n");
|
|
|
|
|
|
|
|
- SET_THREAD_NAME("ruby-timer-thr");
|
|
|
|
+#if defined(__linux__) && defined(PR_SET_NAME)
|
|
|
|
+ prctl(PR_SET_NAME, "ruby-timer-thr");
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
#if !USE_SLEEPY_TIMER_THREAD
|
|
|
|
native_mutex_initialize(&timer_thread_lock);
|