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.2.5.ebuild
Date: Sun, 03 Mar 2013 19:57:44
Message-Id: 20130303195741.2177E2171D@flycatcher.gentoo.org
1 graaff 13/03/03 19:57:41
2
3 Modified: ChangeLog
4 Added: bundler-1.2.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.48 dev-ruby/bundler/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.48&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.48&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?r1=1.47&r2=1.48
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v
20 retrieving revision 1.47
21 retrieving revision 1.48
22 diff -u -r1.47 -r1.48
23 --- ChangeLog 24 Feb 2013 07:17:37 -0000 1.47
24 +++ ChangeLog 3 Mar 2013 19:57:40 -0000 1.48
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/bundler
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.47 2013/02/24 07:17:37 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.48 2013/03/03 19:57:40 graaff Exp $
30 +
31 +*bundler-1.2.5 (03 Mar 2013)
32 +
33 + 03 Mar 2013; Hans de Graaff <graaff@g.o> +bundler-1.2.5.ebuild:
34 + Version bump.
35
36 *bundler-1.2.4 (24 Feb 2013)
37
38
39
40
41 1.1 dev-ruby/bundler/bundler-1.2.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.2.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.2.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bundler-1.2.5.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.2.5.ebuild,v 1.1 2013/03/03 19:57:40 graaff Exp $
51
52 EAPI=5
53
54 # jruby → Many tests fail and test suite hangs.
55 USE_RUBY="ruby18 ruby19 ree18"
56
57 RUBY_FAKEGEM_RECIPE_TEST="rspec"
58
59 # No documentation task
60 RUBY_FAKEGEM_TASK_DOC=""
61 RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md ISSUES.md UPGRADING.md"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="An easy way to vendor gem dependencies"
66 HOMEPAGE="http://github.com/carlhuda/bundler"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
71 IUSE=""
72
73 ruby_add_rdepend virtual/rubygems
74
75 ruby_add_bdepend "test? ( app-text/ronn )"
76
77 RDEPEND+=" dev-vcs/git"
78 DEPEND+=" test? ( dev-vcs/git )"
79
80 all_ruby_prepare() {
81 # Bundler only supports running the specs from git:
82 # http://github.com/carlhuda/bundler/issues/issue/738
83 sed -i -e '/when Bundler is bundled/,/^ end/ s:^:#:' spec/runtime/setup_spec.rb || die
84
85 # Fails randomly and no clear cause can be found. Might be related
86 # to bug 346357. This was broken in previous releases without a
87 # failing spec, so patch out this spec for now since it is not a
88 # regression.
89 sed -i -e '/works when you bundle exec bundle/,/^ end/ s:^:#:' spec/install/deploy_spec.rb || die
90 }