patrick 14/03/31 06:17:20
Modified: ChangeLog
Added: rakudo-2014.03.01.ebuild
Removed: rakudo-2013.08.ebuild rakudo-2013.11-r1.ebuild
rakudo-2013.12.ebuild rakudo-2013.11.ebuild
rakudo-2013.09.ebuild
Log:
Bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.54 dev-lang/rakudo/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rakudo/ChangeLog?rev=1.54&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rakudo/ChangeLog?rev=1.54&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rakudo/ChangeLog?r1=1.53&r2=1.54
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/rakudo/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog 26 Feb 2014 08:28:02 -0000 1.53
+++ ChangeLog 31 Mar 2014 06:17:20 -0000 1.54
@@ -1,6 +1,13 @@
# ChangeLog for dev-lang/rakudo
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/rakudo/ChangeLog,v 1.53 2014/02/26
08:28:02 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/rakudo/ChangeLog,v 1.54 2014/03/31
06:17:20 patrick Exp $
+
+*rakudo-2014.03.01 (31 Mar 2014)
+
+ 31 Mar 2014; Patrick Lauer <[email protected]> +rakudo-2014.03.01.ebuild,
+ -rakudo-2013.08.ebuild, -rakudo-2013.09.ebuild, -rakudo-2013.11-r1.ebuild,
+ -rakudo-2013.11.ebuild, -rakudo-2013.12.ebuild:
+ Bump
*rakudo-2014.02 (26 Feb 2014)
1.1 dev-lang/rakudo/rakudo-2014.03.01.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rakudo/rakudo-2014.03.01.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/rakudo/rakudo-2014.03.01.ebuild?rev=1.1&content-type=text/plain
Index: rakudo-2014.03.01.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/rakudo/rakudo-2014.03.01.ebuild,v
1.1 2014/03/31 06:17:20 patrick Exp $
EAPI=5
PARROT_VERSION="5.9.0"
# hack for this specific version, don't copy to future releases
NQP_VERSION="${PV/01/}"
inherit eutils multilib
DESCRIPTION="A Perl 6 implementation built on the Parrot virtual machine"
HOMEPAGE="http://rakudo.org/"
SRC_URI="http://rakudo.org/downloads/${PN}/${P}.tar.gz"
LICENSE="Artistic-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc +parrot java"
RDEPEND=">=dev-lang/parrot-${PARROT_VERSION}:=[unicode]
>=dev-lang/nqp-${NQP_VERSION}[parrot?,java?]"
DEPEND="${RDEPEND}
dev-lang/perl"
src_prepare() {
sed -i "s,\$(DOCDIR)/rakudo$,&-${PVR}," tools/build/Makefile-Parrot.in
|| die
}
src_configure() {
use parrot && myconf+="parrot,"
use java && myconf+="jvm,"
perl Configure.pl --backends=${myconf} --prefix=/usr || die
}
src_test() {
emake -j1 test || die
}
src_install() {
emake -j1 DESTDIR="${ED}" install || die
dodoc CREDITS README.md docs/ChangeLog docs/ROADMAP || die
if use doc; then
dohtml -A svg docs/architecture.html docs/architecture.svg ||
die
dodoc docs/*.pod || die
docinto announce
dodoc docs/announce/* || die
fi
}