Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/nqp: nqp-2012.08.ebuild ChangeLog
Date: Fri, 24 Aug 2012 03:03:53
Message-Id: 20120824030335.BD2BD2050F@flycatcher.gentoo.org
1 patrick 12/08/24 03:03:35
2
3 Modified: ChangeLog
4 Added: nqp-2012.08.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha122/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.14 dev-lang/nqp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nqp/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nqp/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nqp/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/nqp/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 26 Jul 2012 05:24:06 -0000 1.13
24 +++ ChangeLog 24 Aug 2012 03:03:35 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-lang/nqp
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqp/ChangeLog,v 1.13 2012/07/26 05:24:06 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/nqp/ChangeLog,v 1.14 2012/08/24 03:03:35 patrick Exp $
30 +
31 +*nqp-2012.08 (24 Aug 2012)
32 +
33 + 24 Aug 2012; Patrick Lauer <patrick@g.o> +nqp-2012.08.ebuild:
34 + Bump
35
36 *nqp-2012.07 (26 Jul 2012)
37
38
39
40
41 1.1 dev-lang/nqp/nqp-2012.08.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nqp/nqp-2012.08.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/nqp/nqp-2012.08.ebuild?rev=1.1&content-type=text/plain
45
46 Index: nqp-2012.08.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-lang/nqp/nqp-2012.08.ebuild,v 1.1 2012/08/24 03:03:35 patrick Exp $
51
52 EAPI=3
53
54 inherit eutils multilib
55
56 PARROT_VERSION="4.4.0"
57
58 DESCRIPTION="Not Quite Perl, a Perl 6 bootstrapping compiler"
59 HOMEPAGE="http://rakudo.org/"
60 SRC_URI="http://github.com/perl6/${PN}/tarball/${PV} -> ${P}.tar.gz"
61
62 LICENSE="Artistic-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc"
66
67 RDEPEND=">=dev-lang/parrot-${PARROT_VERSION}[unicode]"
68 DEPEND="${RDEPEND}
69 dev-lang/perl"
70
71 src_prepare() {
72 cd "${WORKDIR}"
73 ln -s * "${S}" || die
74 cd "${S}"
75 echo "${PV}" > VERSION
76 }
77
78 src_configure() {
79 perl Configure.pl || die
80 }
81
82 src_compile() {
83 emake -j1 || die
84 }
85
86 src_test() {
87 emake -j1 test || die
88 }
89
90 src_install() {
91 emake DESTDIR="${ED}" install || die
92
93 dodoc CREDITS README || die
94
95 if use doc; then
96 dodoc docs/* || die
97 fi
98 }