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 dev-ruby/bundler: ChangeLog bundler-1.3.5-r1.ebuild
Date: Sat, 23 Nov 2013 16:13:40
Message-Id: 20131123161333.2DF0D2004B@flycatcher.gentoo.org
1 graaff 13/11/23 16:13:33
2
3 Modified: ChangeLog bundler-1.3.5-r1.ebuild
4 Log:
5 Fix building with LANG=C by using the ruby gemspec, fixing bug 491826.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
8
9 Revision Changes Path
10 1.59 dev-ruby/bundler/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.59&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.59&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?r1=1.58&r2=1.59
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v
19 retrieving revision 1.58
20 retrieving revision 1.59
21 diff -u -r1.58 -r1.59
22 --- ChangeLog 16 Oct 2013 06:07:34 -0000 1.58
23 +++ ChangeLog 23 Nov 2013 16:13:33 -0000 1.59
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-ruby/bundler
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.58 2013/10/16 06:07:34 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.59 2013/11/23 16:13:33 graaff Exp $
29 +
30 + 23 Nov 2013; Hans de Graaff <graaff@g.o> bundler-1.3.5-r1.ebuild:
31 + Fix building with LANG=C by using the ruby gemspec, fixing bug 491826.
32
33 *bundler-1.3.5-r1 (16 Oct 2013)
34
35
36
37
38 1.2 dev-ruby/bundler/bundler-1.3.5-r1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.3.5-r1.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.3.5-r1.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.3.5-r1.ebuild?r1=1.1&r2=1.2
43
44 Index: bundler-1.3.5-r1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bundler/bundler-1.3.5-r1.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- bundler-1.3.5-r1.ebuild 16 Oct 2013 06:07:34 -0000 1.1
51 +++ bundler-1.3.5-r1.ebuild 23 Nov 2013 16:13:33 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2013 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/bundler-1.3.5-r1.ebuild,v 1.1 2013/10/16 06:07:34 graaff Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/bundler-1.3.5-r1.ebuild,v 1.2 2013/11/23 16:13:33 graaff Exp $
57
58 EAPI=5
59
60 @@ -13,6 +13,8 @@
61 RUBY_FAKEGEM_TASK_DOC=""
62 RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md ISSUES.md UPGRADING.md"
63
64 +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
65 +
66 inherit ruby-fakegem
67
68 DESCRIPTION="An easy way to vendor gem dependencies"
69 @@ -40,4 +42,8 @@
70 # failing spec, so patch out this spec for now since it is not a
71 # regression.
72 sed -i -e '/works when you bundle exec bundle/,/^ end/ s:^:#:' spec/install/deploy_spec.rb || die
73 +
74 + # Remove unneeded git dependency from gemspec, which we need to use
75 + # for bug 491826
76 + sed -i -e '/files/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die
77 }