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: Sat, 01 Jun 2013 13:18:54
Message-Id: 20130601131846.0FE0E2171D@flycatcher.gentoo.org
1 graaff 13/06/01 13:18:45
2
3 Modified: ChangeLog ruby-fakegem.eclass
4 Log:
5 Quote DISTDIR.
6
7 Revision Changes Path
8 1.847 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.847&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.847&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.846&r2=1.847
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.846
18 retrieving revision 1.847
19 diff -u -r1.846 -r1.847
20 --- ChangeLog 1 Jun 2013 09:28:16 -0000 1.846
21 +++ ChangeLog 1 Jun 2013 13:18:45 -0000 1.847
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.846 2013/06/01 09:28:16 radhermit Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.847 2013/06/01 13:18:45 graaff Exp $
27 +
28 + 01 Jun 2013; Hans de Graaff <graaff@g.o> ruby-fakegem.eclass:
29 + Quote DISTDIR.
30
31 01 Jun 2013; Tim Harder <radhermit@g.o> vim-plugin.eclass:
32 Remove unnecessary blank IUSE.
33 @@ -593,6 +596,10 @@
34 #458728 that was caused by quoting IUSE. Thanks a lot to mgorny for doing the
35 work.
36
37 + 24 Feb 2013; Hans de Graaff <graaff@g.o> ruby-fakegem.eclass:
38 + Also set the RUBY_FAKEGEM_DOCDIR default for the rake recipe. This fixes a
39 + regression manifested by bug 458506.
40 +
41 22 Feb 2013; Michał Górny <mgorny@g.o> autotools-multilib.eclass:
42 Fix passing arguments to phases.
43
44
45
46
47 1.39 eclass/ruby-fakegem.eclass
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ruby-fakegem.eclass?rev=1.39&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ruby-fakegem.eclass?rev=1.39&content-type=text/plain
51 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ruby-fakegem.eclass?r1=1.38&r2=1.39
52
53 Index: ruby-fakegem.eclass
54 ===================================================================
55 RCS file: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v
56 retrieving revision 1.38
57 retrieving revision 1.39
58 diff -u -r1.38 -r1.39
59 --- ruby-fakegem.eclass 24 Feb 2013 07:45:46 -0000 1.38
60 +++ ruby-fakegem.eclass 1 Jun 2013 13:18:45 -0000 1.39
61 @@ -1,6 +1,6 @@
62 # Copyright 1999-2013 Gentoo Foundation
63 # Distributed under the terms of the GNU General Public License v2
64 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.38 2013/02/24 07:45:46 graaff Exp $
65 +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-fakegem.eclass,v 1.39 2013/06/01 13:18:45 graaff Exp $
66
67 # @ECLASS: ruby-fakegem.eclass
68 # @MAINTAINER:
69 @@ -281,7 +281,7 @@
70 # so better taking this into consideration.
71 local quoted_description=${DESCRIPTION//\"/\\\"}
72 cat - > $1 <<EOF
73 -# generated by ruby-fakegem.eclass $Revision: 1.38 $
74 +# generated by ruby-fakegem.eclass $Revision: 1.39 $
75 Gem::Specification.new do |s|
76 s.name = "${RUBY_FAKEGEM_NAME}"
77 s.version = "${RUBY_FAKEGEM_VERSION}"
78 @@ -331,7 +331,7 @@
79 #!${rubycmd}
80 # This is a simplified version of the RubyGems wrapper
81 #
82 -# Generated by ruby-fakegem.eclass $Revision: 1.38 $
83 +# Generated by ruby-fakegem.eclass $Revision: 1.39 $
84
85 require 'rubygems'
86
87 @@ -376,7 +376,7 @@
88 [[ -d "${S}" ]] && die "Unable to unpack ${archive}, ${S} exists"
89
90 ebegin "Unpacking .gem file..."
91 - tar -mxf ${DISTDIR}/${archive} || die
92 + tar -mxf "${DISTDIR}"/${archive} || die
93 eend $?
94
95 ebegin "Uncompressing metadata"