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-audit: ChangeLog bundler-audit-0.4.0.ebuild
Date: Wed, 01 Jul 2015 05:30:53
Message-Id: 20150701053045.2ADBA74C@oystercatcher.gentoo.org
1 graaff 15/07/01 05:30:45
2
3 Modified: ChangeLog
4 Added: bundler-audit-0.4.0.ebuild
5 Log:
6 Version bump. Fix USE=doc. Run tests as much as possible.
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.2 dev-ruby/bundler-audit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler-audit/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler-audit/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler-audit/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/bundler-audit/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 26 Jun 2015 15:23:09 -0000 1.1
24 +++ ChangeLog 1 Jul 2015 05:30:45 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/bundler-audit
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler-audit/ChangeLog,v 1.1 2015/06/26 15:23:09 zerochaos Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bundler-audit/ChangeLog,v 1.2 2015/07/01 05:30:45 graaff Exp $
30 +
31 +*bundler-audit-0.4.0 (01 Jul 2015)
32 +
33 + 01 Jul 2015; Hans de Graaff <graaff@g.o> +bundler-audit-0.4.0.ebuild:
34 + Version bump. Fix USE=doc. Run tests as much as possible.
35
36 *bundler-audit-0.3.1 (26 Jun 2015)
37
38
39
40
41 1.1 dev-ruby/bundler-audit/bundler-audit-0.4.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler-audit/bundler-audit-0.4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/bundler-audit/bundler-audit-0.4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bundler-audit-0.4.0.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-audit/bundler-audit-0.4.0.ebuild,v 1.1 2015/07/01 05:30:45 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
57
58 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
59
60 RUBY_FAKEGEM_EXTRAINSTALL="data"
61
62 inherit ruby-fakegem
63
64 DESCRIPTION="Provides patch-level verification for Bundled apps"
65 HOMEPAGE="https://github.com/rubysec/bundler-audit"
66
67 LICENSE="GPL-3"
68 SLOT="0"
69 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"
70 IUSE="test"
71
72 ruby_add_rdepend "
73 >=dev-ruby/thor-0.18:0
74 >=dev-ruby/bundler-1.2:0
75 "
76
77 all_ruby_prepare() {
78 sed -i -e '/simplecov/I s:^:#:' spec/spec_helper.rb || die
79
80 # Avoid specs that require network access via 'bundle install'
81 rm spec/{integration,scanner}_spec.rb || die
82
83 # Avoid specs that only work when the source is a git repository
84 sed -i -e '/describe "path"/,/^ end/ s:^:#:' \
85 -e '/describe "update!"/,/^ end/ s:^:#:' \
86 spec/database_spec.rb || die
87 }