Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bundler-audit/
Date: Sat, 16 Nov 2019 09:57:49
Message-Id: 1573898260.109c7c980871d4db101fd5907c60e5a5804a519e.graaff@gentoo
1 commit: 109c7c980871d4db101fd5907c60e5a5804a519e
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 16 09:45:34 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 16 09:57:40 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109c7c98
7
8 dev-ruby/bundler-audit: cleanup
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/bundler-audit/Manifest | 1 -
14 dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild | 44 -----------------------
15 2 files changed, 45 deletions(-)
16
17 diff --git a/dev-ruby/bundler-audit/Manifest b/dev-ruby/bundler-audit/Manifest
18 index f87ab536f2f..1e6ae6a0e3f 100644
19 --- a/dev-ruby/bundler-audit/Manifest
20 +++ b/dev-ruby/bundler-audit/Manifest
21 @@ -1,2 +1 @@
22 -DIST bundler-audit-0.6.0.gem 108544 BLAKE2B 2014f3f2cad0a4305a0b1ef3a7ed0c76e2bb6a6c609568f2823e499c19d844bf41eccac3c6f8efeb51ebc938ea888164256fe41eb0d770e5eef5f3b00a837ecd SHA512 28213df41bba20b41b7398a2ac8f2086c5d2b80a7b31340a29b6e7c3818337f11e486284b14f000c590aaea6bb541222c4c5b71421e36a0e0a7c02e0feec9d7a
23 DIST bundler-audit-0.6.1.gem 108032 BLAKE2B 84a3600e64846ced023af7cd922508f5f81f0bac64b3c9f1c360d0202adabfb3aaa3e8a7d5900a70bcbeec09424274c716bcc63707eb14d0052758f81fc5399e SHA512 b4b1c981070d55f1c7d7353a401f0efb9696544a522052fdae5b6abcf20a3facefc6f118eb0fd53ef859f1db5d84ab7dc5fe056b5d7cf1d458186294af1558b0
24
25 diff --git a/dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild b/dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild
26 deleted file mode 100644
27 index e9421292718..00000000000
28 --- a/dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -USE_RUBY="ruby23 ruby24 ruby25"
37 -
38 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
39 -
40 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
41 -
42 -RUBY_FAKEGEM_EXTRAINSTALL="data"
43 -
44 -inherit ruby-fakegem
45 -
46 -DESCRIPTION="Provides patch-level verification for Bundled apps"
47 -HOMEPAGE="https://github.com/rubysec/bundler-audit"
48 -
49 -LICENSE="GPL-3"
50 -SLOT="0"
51 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
52 -IUSE="test"
53 -
54 -#tests are trying to download AND have some odd failures
55 -#rspec ./spec/database_spec.rb:113 # Bundler::Audit::Database#size should eq 323
56 -#rspec ./spec/database_spec.rb:117 # Bundler::Audit::Database#advisories should return a list of all advisories.
57 -RESTRICT=test
58 -
59 -ruby_add_rdepend "
60 - >=dev-ruby/thor-0.18:0
61 - >=dev-ruby/bundler-1.2:0
62 -"
63 -
64 -all_ruby_prepare() {
65 - sed -i -e '/simplecov/I s:^:#:' spec/spec_helper.rb || die
66 -
67 - # Avoid specs that require network access via 'bundle install'
68 - rm spec/{integration,scanner}_spec.rb || die
69 -
70 - # Avoid specs that only work when the source is a git repository
71 - sed -i -e '/describe "path"/,/^ end/ s:^:#:' \
72 - -e '/describe "update!"/,/^ end/ s:^:#:' \
73 - spec/database_spec.rb || die
74 -}