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-fakegem.eclass
Date: Sun, 05 Jul 2015 09:11:01
Message-Id: 20150705091053.722F1752@oystercatcher.gentoo.org
1 graaff 15/07/05 09:10:53
2
3 Modified: ChangeLog ruby-fakegem.eclass
4 Log:
5 Document that some variables must be set before inheriting the eclass.
6
7 Revision Changes Path
8 1.1700 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1700&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1700&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1699&r2=1.1700
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1699
18 retrieving revision 1.1700
19 diff -u -r1.1699 -r1.1700
20 --- ChangeLog 4 Jul 2015 15:26:17 -0000 1.1699
21 +++ ChangeLog 5 Jul 2015 09:10:53 -0000 1.1700
22 @@ -1,6 +1,9 @@
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.1699 2015/07/04 15:26:17 floppym Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1700 2015/07/05 09:10:53 graaff Exp $
27 +
28 + 05 Jul 2015; Hans de Graaff <graaff@g.o> ruby-fakegem.eclass:
29 + Document that some variables must be set before inheriting the eclass.
30
31 04 Jul 2015; Mike Gilbert <floppym@g.o> distutils-r1.eclass,
32 python-any-r1.eclass, python-r1.eclass, python-single-r1.eclass,
33
34
35
36 1.45 eclass/ruby-fakegem.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ruby-fakegem.eclass?rev=1.45&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ruby-fakegem.eclass?rev=1.45&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ruby-fakegem.eclass?r1=1.44&r2=1.45
41
42 Index: ruby-fakegem.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v
45 retrieving revision 1.44
46 retrieving revision 1.45
47 diff -u -r1.44 -r1.45
48 --- ruby-fakegem.eclass 28 Dec 2014 10:13:18 -0000 1.44
49 +++ ruby-fakegem.eclass 5 Jul 2015 09:10:53 -0000 1.45
50 @@ -1,6 +1,6 @@
51 -# Copyright 1999-2014 Gentoo Foundation
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-fakegem.eclass,v 1.44 2014/12/28 10:13:18 graaff Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.45 2015/07/05 09:10:53 graaff Exp $
56
57 # @ECLASS: ruby-fakegem.eclass
58 # @MAINTAINER:
59 @@ -18,11 +18,13 @@
60 # @ECLASS-VARIABLE: RUBY_FAKEGEM_NAME
61 # @DESCRIPTION:
62 # Sets the Gem name for the generated fake gemspec.
63 +# This variable MUST be set before inheriting the eclass.
64 # RUBY_FAKEGEM_NAME="${PN}"
65
66 # @ECLASS-VARIABLE: RUBY_FAKEGEM_VERSION
67 # @DESCRIPTION:
68 # Sets the Gem version for the generated fake gemspec.
69 +# This variable MUST be set before inheriting the eclass.
70 # RUBY_FAKEGEM_VERSION="${PV}"
71
72 # @ECLASS-VARIABLE: RUBY_FAKEGEM_TASK_DOC
73 @@ -294,7 +296,7 @@
74 # so better taking this into consideration.
75 local quoted_description=${DESCRIPTION//\"/\\\"}
76 cat - > $1 <<EOF
77 -# generated by ruby-fakegem.eclass $Revision: 1.44 $
78 +# generated by ruby-fakegem.eclass $Revision: 1.45 $
79 Gem::Specification.new do |s|
80 s.name = "${RUBY_FAKEGEM_NAME}"
81 s.version = "${RUBY_FAKEGEM_VERSION}"
82 @@ -347,7 +349,7 @@
83 #!${rubycmd}
84 # This is a simplified version of the RubyGems wrapper
85 #
86 -# Generated by ruby-fakegem.eclass $Revision: 1.44 $
87 +# Generated by ruby-fakegem.eclass $Revision: 1.45 $
88
89 require 'rubygems'