Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog ruby-single.eclass
Date: Sun, 31 May 2015 06:14:59
Message-Id: 20150531061454.44BC3A11@oystercatcher.gentoo.org
1 graaff 15/05/31 06:14:54
2
3 Modified: ChangeLog ruby-single.eclass
4 Log:
5 Add virtual/rubygems to dependencies to ensure that it is present in time, which may not happen since this is a PDEPEND of dev-lang/ruby.
6
7 Revision Changes Path
8 1.1631 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1631&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1631&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1630&r2=1.1631
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1630
18 retrieving revision 1.1631
19 diff -u -r1.1630 -r1.1631
20 --- ChangeLog 31 May 2015 05:57:23 -0000 1.1630
21 +++ ChangeLog 31 May 2015 06:14:54 -0000 1.1631
22 @@ -1,6 +1,10 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1630 2015/05/31 05:57:23 graaff Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1631 2015/05/31 06:14:54 graaff Exp $
27 +
28 + 31 May 2015; Hans de Graaff <graaff@g.o> ruby-single.eclass:
29 + Add virtual/rubygems to dependencies to ensure that it is present in time,
30 + which may not happen since this is a PDEPEND of dev-lang/ruby.
31
32 31 May 2015; Hans de Graaff <graaff@g.o> ruby-ng.eclass,
33 +ruby-single.eclass, +ruby-utils.eclass:
34
35
36
37 1.2 eclass/ruby-single.eclass
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ruby-single.eclass?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ruby-single.eclass?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ruby-single.eclass?r1=1.1&r2=1.2
42
43 Index: ruby-single.eclass
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/eclass/ruby-single.eclass,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- ruby-single.eclass 31 May 2015 05:57:23 -0000 1.1
50 +++ ruby-single.eclass 31 May 2015 06:14:54 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2015 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-single.eclass,v 1.1 2015/05/31 05:57:23 graaff Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-single.eclass,v 1.2 2015/05/31 06:14:54 graaff Exp $
56
57 # @ECLASS: ruby-single
58 # @MAINTAINER:
59 @@ -43,7 +43,9 @@
60 #
61 # This is an eclass-generated Ruby dependency string for all
62 # implementations listed in USE_RUBY. Any one of the supported ruby
63 -# targets will satisfy this dependency.
64 +# targets will satisfy this dependency. A dependency on
65 +# virtual/rubygems is also added to ensure that this is installed
66 +# in time for the package to use it.
67 #
68 # Example use:
69 # @CODE
70 @@ -54,7 +56,7 @@
71 #
72 # Example value:
73 # @CODE
74 -# || ( dev-lang/ruby:2.0 dev-lang/ruby:1.9 )
75 +# || ( dev-lang/ruby:2.0 dev-lang/ruby:1.9 ) virtual/rubygems
76 # @CODE
77
78 _ruby_single_implementations_depend() {
79 @@ -64,7 +66,7 @@
80 depend="${depend} $(_ruby_implementation_depend $_ruby_implementation)"
81 fi
82 done
83 - echo "|| ( ${depend} )"
84 + echo "|| ( ${depend} ) virtual/rubygems"
85 }
86
87 _ruby_single_set_globals() {