Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/rcairo: rcairo-1.8.0-r1.ebuild ChangeLog
Date: Sat, 20 Jun 2009 11:46:10
Message-Id: E1MHz1K-0007vR-6w@stork.gentoo.org
1 flameeyes 09/06/20 11:46:06
2
3 Modified: rcairo-1.8.0-r1.ebuild ChangeLog
4 Log:
5 Fix the fakegem installation on stable Ruby.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.5 dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild?r1=1.4&r2=1.5
14
15 Index: rcairo-1.8.0-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- rcairo-1.8.0-r1.ebuild 14 May 2009 19:29:30 -0000 1.4
22 +++ rcairo-1.8.0-r1.ebuild 20 Jun 2009 11:46:06 -0000 1.5
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild,v 1.4 2009/05/14 19:29:30 maekke Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/rcairo-1.8.0-r1.ebuild,v 1.5 2009/06/20 11:46:06 flameeyes Exp $
28
29 EAPI=2
30 inherit ruby
31 @@ -22,7 +22,7 @@
32 dev-util/pkgconfig"
33
34 dofakegemspec() {
35 - cat - > "${T}"/${P}.gemspec <<EOF
36 + cat - > "${T}"/${P}.gemspec <<EOF
37 Gem::Specification.new do |s|
38 s.name = "${PN}"
39 s.version = "${PV}"
40 @@ -31,8 +31,10 @@
41 end
42 EOF
43
44 - insinto $(${RUBY} -r rbconfig -e 'print Config::CONFIG["vendorlibdir"]' | sed -e 's:vendor_ruby:gems:')/specifications
45 - doins "${T}"/${P}.gemspec || die "Unable to install fake gemspec"
46 + # Note: this only works with 1.8 so if you need to make it work
47 + # with 1.9 you better wait for ruby-fakegem.eclass.
48 + insinto $(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitedir"]')/../gems/1.8/specifications
49 + doins "${T}"/${P}.gemspec || die "Unable to install fake gemspec"
50 }
51
52 src_install() {
53
54
55
56 1.31 dev-ruby/rcairo/ChangeLog
57
58 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcairo/ChangeLog?rev=1.31&view=markup
59 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcairo/ChangeLog?rev=1.31&content-type=text/plain
60 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcairo/ChangeLog?r1=1.30&r2=1.31
61
62 Index: ChangeLog
63 ===================================================================
64 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/ChangeLog,v
65 retrieving revision 1.30
66 retrieving revision 1.31
67 diff -u -r1.30 -r1.31
68 --- ChangeLog 14 May 2009 19:29:30 -0000 1.30
69 +++ ChangeLog 20 Jun 2009 11:46:06 -0000 1.31
70 @@ -1,6 +1,10 @@
71 # ChangeLog for dev-ruby/rcairo
72 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
73 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/ChangeLog,v 1.30 2009/05/14 19:29:30 maekke Exp $
74 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/ChangeLog,v 1.31 2009/06/20 11:46:06 flameeyes Exp $
75 +
76 + 20 Jun 2009; Diego E. Pettenò <flameeyes@g.o>
77 + rcairo-1.8.0-r1.ebuild:
78 + Fix the fakegem installation on stable Ruby.
79
80 14 May 2009; Markus Meier <maekke@g.o> rcairo-1.8.0-r1.ebuild:
81 amd64/x86 stable, bug #269294