Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-lang/rubinius
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/rubinius/ChangeLog,v 1.2 2008/02/08 15:23:39 caleb Exp $
*rubinius-0.8_pre20080208 (08 Feb 2008)
08 Feb 2008; Caleb Tennis
+rubinius-0.8_pre20080208.ebuild:
version bump, now grab straight from git sources
*rubinius-0.8_pre20080129 (29 Jan 2008)
29 Jan 2008; Caleb Tennis
+rubinius-0.8_pre20080129.ebuild:
Initial import
DIST rubinius-036797603833bdb20468134d242b44fae9791477.tar.gz 5832619 RMD160 1d554c1b3135d4bfc32060927a1c1174bd65e970 SHA1 c1d9bd8f8f9c9a89541d9eaa63bbca002be6a2dd SHA256 1fb7445b9a8f211b5546ee01cfa77ba6b8ca3c8bd788efa82967888f2261970f
EBUILD rubinius-0.8_pre20080129.ebuild 1284 RMD160 00a05efae61f702313a1d8b8ee94ec852ba80419 SHA1 c2bff0c4d3aa9164bb3e240245189ab1d15c661b SHA256 d189eb2a153c4157b11c8b1824ff6590ce808a5696a306be6d5e123359f16206
EBUILD rubinius-0.8_pre20080208.ebuild 1296 RMD160 7584717b41ce08c4829fd0fcb3c20c66086821de SHA1 fdd1ded685f85bb7a2a07b194e022ec72f20137a SHA256 f7acfac0d0a06e0a23237652c6d3cac894a567585870c9011e4641992f78c0ed
MISC ChangeLog 539 RMD160 bbd629e60714a648e28e66eee99ed51ff02a31b2 SHA1 02efee72369c1f52ed5802fe0dd2c96b65703b7a SHA256 993ebf160e6f5088f10af1a1b78eba452f474d4ca04538b9f132c2512eedbaf7
MISC metadata.xml 428 RMD160 898943ed5a53d7395809685bb3e12408a358f0ee SHA1 c985b29ad7ef2ac60bd48c89e85289bdab62998e SHA256 3e7a9ee371b08b15f88c81eff3e8dd6d7e9d80797a06db1fe319ac3a78a1dc96
Rubinius is an alternative Ruby interpreter, aiming to be compliant with MRI while providing
a underlying VM and other nitfy features.
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/rubinius/rubinius-0.8_pre20080129.ebuild,v 1.1 2008/01/29 18:42:20 caleb Exp $
inherit multilib
EAPI=1
DESCRIPTION="An alternative ruby interpreter"
HOMEPAGE="http://rubini.us"
GIT_COMMIT="036797603833bdb20468134d242b44fae9791477"
SRC_URI="mirror://gentoo/rubinius-${GIT_COMMIT}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="debug"
RDEPEND=">=dev-lang/ruby-1.8.6_p110:1.8
dev-ruby/rubygems"
DEPEND="sys-devel/bison
dev-util/pkgconfig
dev-ruby/rake
${RDEPEND}"
S=${WORKDIR}/code
src_unpack() {
unpack ${A}
sed -ie "s:PREFIX=/usr/local:PREFIX=/usr:g" "${S}":/shotgun/vars.mk
}
src_compile() {
if use debug; then
DEV=1 rake build
else
rake build
fi
}
src_install() {
LIBDIR=$(get_libdir)
RDIR=/usr/${LIBDIR}/rubinius
dodir ${RDIR}/shotgun
cp -pR "${S}"/runtime "${D}"/${RDIR}
cp -pR "${S}"/lib "${D}"/${RDIR}
install shotgun/lib/librubinius-0.8.0.so "${D}"/usr/${LIBDIR}
install shotgun/rubinius "${D}"/${RDIR}/shotgun
install shotgun/rubinius.bin "${D}"/${RDIR}/shotgun
install shotgun/gdb* "${D}"/${RDIR}/shotgun
dosym ${RDIR}/shotgun/rubinius /usr/bin/rbx
}
src_test() {
./bin/ci
}
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/rubinius/rubinius-0.8_pre20080208.ebuild,v 1.1 2008/02/08 15:23:39 caleb Exp $
EAPI=1
EGIT_REPO_URI="git://git.rubini.us/code"
inherit multilib git
# Must go after inherit git
# This is the tree shaid that we want to grab
EGIT_TREE="f60fd914037838ac01032d85336675f0afd0964c"
DESCRIPTION="An alternative ruby interpreter"
HOMEPAGE="http://rubini.us"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="debug"
RDEPEND=">=dev-lang/ruby-1.8.6_p110:1.8
dev-ruby/rubygems"
DEPEND="sys-devel/bison
dev-util/pkgconfig
dev-ruby/rake
${RDEPEND}"
src_compile() {
sed -ie "s:PREFIX=/usr/local:PREFIX=/usr:g" "${S}"/shotgun/vars.mk
if use debug; then
DEV=1 rake build
else
rake build
fi
}
src_install() {
LIBDIR=$(get_libdir)
RDIR=/usr/${LIBDIR}/rubinius
dodir ${RDIR}/shotgun
cp -pR "${S}"/runtime "${D}"/${RDIR}
cp -pR "${S}"/lib "${D}"/${RDIR}
install shotgun/lib/librubinius-0.8.0.so "${D}"/usr/${LIBDIR}
install shotgun/rubinius "${D}"/${RDIR}/shotgun
install shotgun/rubinius.bin "${D}"/${RDIR}/shotgun
install shotgun/gdb* "${D}"/${RDIR}/shotgun
dosym ${RDIR}/shotgun/rubinius /usr/bin/rbx
}
src_test() {
./bin/ci
}