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: bundler-1.0.10.ebuild ChangeLog
Date: Wed, 02 Feb 2011 18:48:05
Message-Id: 20110202184754.90CB120054@flycatcher.gentoo.org
1 graaff 11/02/02 18:47:54
2
3 Modified: ChangeLog
4 Added: bundler-1.0.10.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.9.25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 dev-ruby/bundler/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 2 Feb 2011 18:39:26 -0000 1.12
24 +++ ChangeLog 2 Feb 2011 18:47:54 -0000 1.13
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/bundler
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.12 2011/02/02 18:39:26 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.13 2011/02/02 18:47:54 graaff Exp $
30 +
31 +*bundler-1.0.10 (02 Feb 2011)
32 +
33 + 02 Feb 2011; Hans de Graaff <graaff@g.o> +bundler-1.0.10.ebuild:
34 + Version bump.
35
36 02 Feb 2011; Hans de Graaff <graaff@g.o> -bundler-1.0.3.ebuild,
37 -bundler-1.0.7.ebuild:
38
39
40
41 1.1 dev-ruby/bundler/bundler-1.0.10.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.0.10.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.0.10.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bundler-1.0.10.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/bundler-1.0.10.ebuild,v 1.1 2011/02/02 18:47:54 graaff Exp $
51
52 EAPI=2
53
54 # ruby19 → uncountable number of test failures
55 # jruby → needs to be tested because jruby-1.5.1 fails in multiple
56 # ways unrelated to this package
57 USE_RUBY="ruby18 ree18"
58
59 RUBY_FAKEGEM_TASK_TEST="spec"
60
61 # No documentation task
62 RUBY_FAKEGEM_TASK_DOC=""
63 RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md ISSUES.md UPGRADING.md"
64
65 inherit ruby-fakegem
66
67 DESCRIPTION="An easy way to vendor gem dependencies"
68 HOMEPAGE="http://github.com/carlhuda/bundler"
69
70 LICENSE="MIT"
71 SLOT="0"
72 KEYWORDS="~amd64 ~x86"
73 IUSE=""
74
75 ruby_add_rdepend dev-ruby/rubygems
76
77 ruby_add_bdepend "test? ( dev-ruby/rspec:2 )"
78
79 RDEPEND="${RDEPEND}
80 dev-vcs/git"
81 DEPEND="${DEPEND}
82 test? ( dev-vcs/git )"
83
84 RUBY_PATCHES=( "${FILESDIR}"/${PN}-1.0.3-gentoo.patch )
85
86 all_ruby_prepare() {
87 # Reported upstream: http://github.com/carlhuda/bundler/issues/issue/738
88 sed -i -e '685s/should/should_not/' spec/runtime/setup_spec.rb || die
89
90 # Fails randomly and no clear cause can be found. Might be related
91 # to bug 346357. This was broken in previous releases without a
92 # failing spec, so patch out this spec for now since it is not a
93 # regression.
94 sed -i -e '49,54d' spec/install/deploy_spec.rb || die
95 }