From d92ac2a6b2bf46fd8ad85ff8c0390fc2869f2e7c Mon Sep 17 00:00:00 2001 From: Tom Scogland Date: Thu, 11 Jun 2015 13:51:31 -0700 Subject: Small ruby enhancement and tmuxinator package It is currently less painful to pull the source from github, compile it into a gem, then install the gem, than it is to download a gem and install it. This still lacks an activation mechanism, but `spack use tmuxinator` is functional. --- var/spack/packages/ruby/package.py | 25 +++++++++++++++++++++++++ var/spack/packages/tmuxinator/package.py | 17 +++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 var/spack/packages/tmuxinator/package.py (limited to 'var') diff --git a/var/spack/packages/ruby/package.py b/var/spack/packages/ruby/package.py index 718fd0a3be..6b6242362c 100644 --- a/var/spack/packages/ruby/package.py +++ b/var/spack/packages/ruby/package.py @@ -1,4 +1,6 @@ from spack import * +import spack +import os class Ruby(Package): """A dynamic, open source programming language with a focus on @@ -7,6 +9,8 @@ class Ruby(Package): homepage = "https://www.ruby-lang.org/" url = "http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.0.tar.gz" + extendable = True + version('2.2.0', 'cd03b28fd0b555970f5c4fd481700852') def install(self, spec, prefix): @@ -14,3 +18,24 @@ class Ruby(Package): make() make("install") + + def setup_dependent_environment(self, module, spec, ext_spec): + """Called before ruby modules' install() methods. Sets GEM_HOME + and GEM_PATH to values appropriate for the package being built. + + In most cases, extensions will only need to have one line:: + + gem('install', '.gem') + """ + # Ruby extension builds have global ruby and gem functions + module.ruby = Executable(join_path(spec.prefix.bin, 'ruby')) + module.gem = Executable(join_path(spec.prefix.bin, 'gem')) + + # Set GEM_PATH to include dependent gem directories + ruby_paths = [] + for d in ext_spec.traverse(): + if d.package.extends(self.spec): + ruby_paths.append(d.prefix) + os.environ['GEM_PATH'] = ':'.join(ruby_paths) + # The actual installation path for this gem + os.environ['GEM_HOME'] = ext_spec.prefix diff --git a/var/spack/packages/tmuxinator/package.py b/var/spack/packages/tmuxinator/package.py new file mode 100644 index 0000000000..26c061cbd6 --- /dev/null +++ b/var/spack/packages/tmuxinator/package.py @@ -0,0 +1,17 @@ +from spack import * + +class Tmuxinator(Package): + """A session configuration creator and manager for tmux""" + homepage = "https://github.com/tmuxinator/tmuxinator" + url = "https://github.com/tmuxinator/tmuxinator" + + version('0.6.11', + git='https://github.com/tmuxinator/tmuxinator', + tag='v0.6.11') + + extends('ruby') + + def install(self, spec, prefix): + gem('build', 'tmuxinator.gemspec') + gem('install', 'tmuxinator-{}.gem'.format(self.version)) + -- cgit v1.2.3-60-g2f50