Gentoo Archives: gentoo-commits

From: "Alex Legler (a3li)" <a3li@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/canny: ChangeLog canny-0.1.0.ebuild
Date: Mon, 02 Mar 2009 09:02:36
Message-Id: E1Le42j-0004Qk-QV@stork.gentoo.org
1 a3li 09/03/02 09:02:33
2
3 Modified: ChangeLog canny-0.1.0.ebuild
4 Log:
5 Replaced USE_RUBY="any" with explicit version. Adding ~amd64.
6 (Portage version: 2.2_rc23/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.8 dev-ruby/canny/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/canny/ChangeLog?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/canny/ChangeLog?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/canny/ChangeLog?r1=1.7&r2=1.8
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/canny/ChangeLog,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- ChangeLog 13 Oct 2007 06:39:48 -0000 1.7
22 +++ ChangeLog 2 Mar 2009 09:02:33 -0000 1.8
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-ruby/canny
25 -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/canny/ChangeLog,v 1.7 2007/10/13 06:39:48 tgall Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/canny/ChangeLog,v 1.8 2009/03/02 09:02:33 a3li Exp $
29 +
30 + 02 Mar 2009; Alex Legler <a3li@g.o> canny-0.1.0.ebuild:
31 + Replace USE_RUBY="any" with explicit version. Not Ruby 1.9 compatible.
32 + Adding ~amd64 and cleaning up a little.
33
34 13 Oct 2007; Tom Gall <tgall@g.o> canny-0.1.0.ebuild:
35 stable on ppc64
36
37
38
39 1.8 dev-ruby/canny/canny-0.1.0.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/canny/canny-0.1.0.ebuild?rev=1.8&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/canny/canny-0.1.0.ebuild?rev=1.8&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/canny/canny-0.1.0.ebuild?r1=1.7&r2=1.8
44
45 Index: canny-0.1.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/canny/canny-0.1.0.ebuild,v
48 retrieving revision 1.7
49 retrieving revision 1.8
50 diff -u -r1.7 -r1.8
51 --- canny-0.1.0.ebuild 13 Oct 2007 06:39:48 -0000 1.7
52 +++ canny-0.1.0.ebuild 2 Mar 2009 09:02:33 -0000 1.8
53 @@ -1,29 +1,27 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/canny/canny-0.1.0.ebuild,v 1.7 2007/10/13 06:39:48 tgall Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/canny/canny-0.1.0.ebuild,v 1.8 2009/03/02 09:02:33 a3li Exp $
59
60 inherit ruby
61
62 IUSE=""
63 -USE_RUBY="any"
64 +USE_RUBY="ruby18"
65
66 DESCRIPTION="Canny is a template library for Ruby."
67 HOMEPAGE="http://canny.sourceforge.net/"
68 SRC_URI="mirror://sourceforge/canny/${P}.tar.gz"
69
70 -KEYWORDS="ia64 ~ppc ppc64 x86"
71 +KEYWORDS="~amd64 ia64 ~ppc ppc64 x86"
72 LICENSE="LGPL-2.1"
73 SLOT="0"
74
75 -DEPEND="virtual/ruby"
76 -
77 src_compile() {
78 ruby setup.rb config || die "setup.rb config failed"
79 ruby setup.rb setup || die "setup.rb setup failed"
80 }
81
82 src_install() {
83 - ruby setup.rb config --prefix=${D}/usr || die "setup.rb config failed"
84 + ruby setup.rb config --prefix="${D}/usr" || die "setup.rb config failed"
85 ruby setup.rb install || die "setup.rb install failed"
86 - dodoc COPYING ChangeLog README* example.rb templates/*
87 + dodoc ChangeLog README* example.rb templates/*
88 }