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.3.ebuild
Date: Sat, 27 Sep 2014 08:32:42
Message-Id: 20140927083237.1EBA26662@oystercatcher.gentoo.org
1 graaff 14/09/27 08:32:37
2
3 Modified: ChangeLog
4 Added: bundler-1.7.3.ebuild
5 Log:
6 Version bump for security bug 523798.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.67 dev-ruby/bundler/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.67&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?rev=1.67&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/ChangeLog?r1=1.66&r2=1.67
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v
20 retrieving revision 1.66
21 retrieving revision 1.67
22 diff -u -r1.66 -r1.67
23 --- ChangeLog 15 Aug 2014 17:03:27 -0000 1.66
24 +++ ChangeLog 27 Sep 2014 08:32:37 -0000 1.67
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/bundler
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.66 2014/08/15 17:03:27 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler/ChangeLog,v 1.67 2014/09/27 08:32:37 graaff Exp $
30 +
31 +*bundler-1.7.3 (27 Sep 2014)
32 +
33 + 27 Sep 2014; Hans de Graaff <graaff@g.o> +bundler-1.7.3.ebuild:
34 + Version bump for security bug 523798.
35
36 15 Aug 2014; Raúl Porcel <armin76@g.o> bundler-1.3.5.ebuild,
37 bundler-1.3.5-r1.ebuild, bundler-1.3.6.ebuild:
38
39
40
41 1.1 dev-ruby/bundler/bundler-1.7.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.7.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler/bundler-1.7.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bundler-1.7.3.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.3.ebuild,v 1.1 2014/09/27 08:32:37 graaff Exp $
51
52 EAPI=5
53
54 # jruby → Many tests fail and test suite hangs.
55 USE_RUBY="ruby19 ruby20 ruby21"
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 RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
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="~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"
73 IUSE=""
74
75 ruby_add_rdepend virtual/rubygems
76
77 ruby_add_bdepend "test? ( app-text/ronn )"
78
79 RDEPEND+=" dev-vcs/git"
80 DEPEND+=" test? ( dev-vcs/git )"
81
82 all_ruby_prepare() {
83 # Bundler only supports running the specs from git:
84 # http://github.com/carlhuda/bundler/issues/issue/738
85 sed -i -e '/when Bundler is bundled/,/^ end/ s:^:#:' spec/runtime/setup_spec.rb || die
86
87 # Fails randomly and no clear cause can be found. Might be related
88 # to bug 346357. This was broken in previous releases without a
89 # failing spec, so patch out this spec for now since it is not a
90 # regression.
91 sed -i -e '/works when you bundle exec bundle/,/^ end/ s:^:#:' spec/install/deploy_spec.rb || die
92
93 # Remove unneeded git dependency from gemspec, which we need to use
94 # for bug 491826
95 sed -i -e '/files/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die
96
97 # Remove security policy specs since the certificate that it uses
98 # expired 2014-02-04
99 #rm spec/install/security_policy_spec.rb || die
100
101 # Avoid specs that are not compatible with all rspec versions.
102 sed -e '/has no malformed whitespace/,/^ end/ s:^:#:' \
103 -e '/uses double-quotes consistently/,/^ end/ s:^:#:' \
104 -i spec/quality_spec.rb || die
105 }