dev-ruby/bundler-audit: cleanup
authorHans de Graaff <graaff@gentoo.org>
Sat, 16 Nov 2019 09:45:34 +0000 (10:45 +0100)
committerHans de Graaff <graaff@gentoo.org>
Sat, 16 Nov 2019 09:57:40 +0000 (10:57 +0100)
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
dev-ruby/bundler-audit/Manifest
dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild [deleted file]

index f87ab536f2fad03ca08b18d0c9e9543f4c9fb3d8..1e6ae6a0e3ffd61b46bc247fa2f8e3d351e25f8a 100644 (file)
@@ -1,2 +1 @@
-DIST bundler-audit-0.6.0.gem 108544 BLAKE2B 2014f3f2cad0a4305a0b1ef3a7ed0c76e2bb6a6c609568f2823e499c19d844bf41eccac3c6f8efeb51ebc938ea888164256fe41eb0d770e5eef5f3b00a837ecd SHA512 28213df41bba20b41b7398a2ac8f2086c5d2b80a7b31340a29b6e7c3818337f11e486284b14f000c590aaea6bb541222c4c5b71421e36a0e0a7c02e0feec9d7a
 DIST bundler-audit-0.6.1.gem 108032 BLAKE2B 84a3600e64846ced023af7cd922508f5f81f0bac64b3c9f1c360d0202adabfb3aaa3e8a7d5900a70bcbeec09424274c716bcc63707eb14d0052758f81fc5399e SHA512 b4b1c981070d55f1c7d7353a401f0efb9696544a522052fdae5b6abcf20a3facefc6f118eb0fd53ef859f1db5d84ab7dc5fe056b5d7cf1d458186294af1558b0
diff --git a/dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild b/dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild
deleted file mode 100644 (file)
index e942129..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Provides patch-level verification for Bundled apps"
-HOMEPAGE="https://github.com/rubysec/bundler-audit"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="test"
-
-#tests are trying to download AND have some odd failures
-#rspec ./spec/database_spec.rb:113 # Bundler::Audit::Database#size should eq 323
-#rspec ./spec/database_spec.rb:117 # Bundler::Audit::Database#advisories should return a list of all advisories.
-RESTRICT=test
-
-ruby_add_rdepend "
-       >=dev-ruby/thor-0.18:0
-       >=dev-ruby/bundler-1.2:0
-"
-
-all_ruby_prepare() {
-       sed -i -e '/simplecov/I s:^:#:' spec/spec_helper.rb || die
-
-       # Avoid specs that require network access via 'bundle install'
-       rm spec/{integration,scanner}_spec.rb || die
-
-       # Avoid specs that only work when the source is a git repository
-       sed -i -e '/describe "path"/,/^  end/ s:^:#:' \
-               -e '/describe "update!"/,/^  end/ s:^:#:' \
-               spec/database_spec.rb || die
-}