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.7.13.ebuild
Date: Wed, 25 Feb 2015 07:14:54
Message-Id: 20150225071447.312C912815@oystercatcher.gentoo.org
1 graaff 15/02/25 07:14:47
2
3 Modified: ChangeLog
4 Added: bundler-1.7.13.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.76 dev-ruby/bundler/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.76&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.76&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?r1=1.75&r2=1.76
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v
20 retrieving revision 1.75
21 retrieving revision 1.76
22 diff -u -r1.75 -r1.76
23 --- ChangeLog 24 Jan 2015 10:34:02 -0000 1.75
24 +++ ChangeLog 25 Feb 2015 07:14:47 -0000 1.76
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/bundler
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.75 2015/01/24 10:34:02 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.76 2015/02/25 07:14:47 graaff Exp $
30 +
31 +*bundler-1.7.13 (25 Feb 2015)
32 +
33 + 25 Feb 2015; Hans de Graaff <graaff@g.o> +bundler-1.7.13.ebuild:
34 + Version bump.
35
36 24 Jan 2015; Hans de Graaff <graaff@g.o> -bundler-1.3.5.ebuild:
37 Cleanup vulnerable version for bug 523798.
38
39
40
41 1.1 dev-ruby/bundler/bundler-1.7.13.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.7.13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.7.13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bundler-1.7.13.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.7.13.ebuild,v 1.1 2015/02/25 07:14:47 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 #RUBY_FAKEGEM_RECIPE_TEST="rspec"
57
58 # No documentation task
59 RUBY_FAKEGEM_TASK_DOC=""
60 RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md ISSUES.md UPGRADING.md"
61
62 RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
63
64 inherit ruby-fakegem
65
66 DESCRIPTION="An easy way to vendor gem dependencies"
67 HOMEPAGE="http://github.com/carlhuda/bundler"
68
69 LICENSE="MIT"
70 SLOT="0"
71 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
72 IUSE="test"
73
74 ruby_add_rdepend virtual/rubygems
75
76 # ruby_add_bdepend "test? ( app-text/ronn )"
77
78 # The specs require a number of gems to be installed in a temporary
79 # directory, but this requires network access. All tests should still
80 # pass with network access.
81 #RESTRICT="test"
82
83 RDEPEND+=" dev-vcs/git"
84
85 all_ruby_prepare() {
86 # Bundler only supports running the specs from git:
87 # http://github.com/carlhuda/bundler/issues/issue/738
88 sed -i -e '/when Bundler is bundled/,/^ end/ s:^:#:' 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 '/works when you bundle exec bundle/,/^ end/ s:^:#:' spec/install/deploy_spec.rb || die
95
96 # Remove unneeded git dependency from gemspec, which we need to use
97 # for bug 491826
98 sed -i -e '/files/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die
99
100 # Avoid specs that are not compatible with all rspec versions.
101 sed -e '/has no malformed whitespace/,/^ end/ s:^:#:' \
102 -e '/uses double-quotes consistently/,/^ end/ s:^:#:' \
103 -i spec/quality_spec.rb || die
104
105 # Avoid spec failing with git 2.0.
106 sed -i -e '/on releasing/,/^ end/ s:^:#:' spec/bundler/gem_helper_spec.rb || die
107 }