diff options
author | 2015-05-16 08:36:38 +0000 | |
---|---|---|
committer | 2015-05-16 08:36:38 +0000 | |
commit | 6af7d10530dded2a361f1cab82fbc683257685f5 (patch) | |
tree | 76ae09173b5d49b1c8ff9443dd11894613f60f29 /dev-lang/rubinius | |
parent | Cleanup. (diff) | |
download | gentoo-2-6af7d10530dded2a361f1cab82fbc683257685f5.tar.gz gentoo-2-6af7d10530dded2a361f1cab82fbc683257685f5.tar.bz2 gentoo-2-6af7d10530dded2a361f1cab82fbc683257685f5.zip |
Version bump.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-lang/rubinius')
-rw-r--r-- | dev-lang/rubinius/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/rubinius/rubinius-2.5.5.ebuild | 86 |
2 files changed, 92 insertions, 1 deletions
diff --git a/dev-lang/rubinius/ChangeLog b/dev-lang/rubinius/ChangeLog index 116c65a504a6..c9458fb31651 100644 --- a/dev-lang/rubinius/ChangeLog +++ b/dev-lang/rubinius/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/rubinius # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/rubinius/ChangeLog,v 1.22 2015/05/11 19:19:04 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/rubinius/ChangeLog,v 1.23 2015/05/16 08:36:38 graaff Exp $ + +*rubinius-2.5.5 (16 May 2015) + + 16 May 2015; Hans de Graaff <graaff@gentoo.org> +rubinius-2.5.5.ebuild: + Version bump. 11 May 2015; Hans de Graaff <graaff@gentoo.org> rubinius-2.5.3.ebuild: Fix rbx symlink for new file location. diff --git a/dev-lang/rubinius/rubinius-2.5.5.ebuild b/dev-lang/rubinius/rubinius-2.5.5.ebuild new file mode 100644 index 000000000000..2dafe6f64ec5 --- /dev/null +++ b/dev-lang/rubinius/rubinius-2.5.5.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/rubinius/rubinius-2.5.5.ebuild,v 1.1 2015/05/16 08:36:38 graaff Exp $ + +EAPI=5 +inherit eutils flag-o-matic multilib versionator + +DESCRIPTION="A re-implementation of the Ruby VM designed for speed" +HOMEPAGE="http://rubini.us" +SRC_URI="http://releases.rubini.us/${P}.tar.bz2" + +LICENSE="BSD" +KEYWORDS="~amd64" +SLOT="0" +IUSE="+llvm" + +RDEPEND=" + llvm? ( >=sys-devel/llvm-3.2 ) + dev-libs/openssl:0 + sys-libs/ncurses + sys-libs/readline:0 + dev-libs/libyaml + virtual/libffi + sys-libs/zlib +" + +DEPEND="${RDEPEND} + =dev-ruby/rake-10* + dev-ruby/bundler +" + +pkg_setup() { + unset RUBYOPT +} + +src_prepare() { + # src_test will wait until all processes are reaped, so tune down + # the long sleep process a bit. + sed -i -e 's/sleep 1000/sleep 300/' spec/ruby/core/io/popen_spec.rb || die + + # Drop error CFLAGS per Gentoo policy. + sed -i -e '/Werror/ s:^:#:' rakelib/blueprint.rb || die + + bundle --local || die +} + +src_configure() { + conf="" + if ! use llvm ; then + conf+="--disable-llvm " + fi + + #Rubinius uses a non-autoconf ./configure script which balks at econf + INSTALL="${EPREFIX}/usr/bin/install -c" ./configure \ + --prefix /usr/$(get_libdir) \ + --mandir /usr/share/man \ + --without-rpath \ + --with-vendor-zlib \ + ${conf} \ + || die "Configure failed" +} + +src_compile() { + RBXOPT="-Xsystem.log=/dev/null" rake build || die "Compilation failed" +} + +src_test() { + rake spec || die "Tests failed" + einfo "Waiting for forked processes to die" +} + +src_install() { + # The install phase tries to determine if there are relevant + addpredict /usr/local/lib64/ruby + + local minor_version=$(get_version_component_range 1-2) + local librbx="usr/$(get_libdir)/rubinius" + + RBXOPT="-Xsystem.log=/dev/null" DESTDIR="${D}" rake install || die "Installation failed" + + dosym /${librbx}/bin/rbx /usr/bin/rbx || die "Couldn't make rbx symlink" + + insinto /${librbx}/${minor_version}/site + doins "${FILESDIR}/auto_gem.rb" || die "Couldn't install rbx auto_gem.rb" + RBXOPT="-Xsystem.log=/dev/null" RBX_RUNTIME="${S}/runtime" RBX_LIB="${S}/lib" bin/rbx compile "${D}/${librbx}/${minor_version}/site/auto_gem.rb" || die "Couldn't bytecompile auto_gem.rb" +} |