commit: b6e53d7a2dd401132742b9e003b39ace2829ef4a
Author: Zero_Chaos <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 4 21:45:00 2015 +0000
Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Fri Sep 4 21:45:00 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6e53d7a
dev-ruby/metasploit-credential: fix improperly imported ebuild from Pentoo
.../metasploit-credential-1.0.0.ebuild | 24 ----------------------
1 file changed, 24 deletions(-)
diff --git a/dev-ruby/metasploit-credential/metasploit-credential-1.0.0.ebuild
b/dev-ruby/metasploit-credential/metasploit-credential-1.0.0.ebuild
index 98db6b6..7836550 100644
--- a/dev-ruby/metasploit-credential/metasploit-credential-1.0.0.ebuild
+++ b/dev-ruby/metasploit-credential/metasploit-credential-1.0.0.ebuild
@@ -26,27 +26,3 @@ ruby_add_rdepend ">=dev-ruby/metasploit-concern-1.0.0:1.0
>=dev-ruby/railties-4.0.9:4.0
dev-ruby/net-ssh
dev-ruby/pg"
-ruby_add_bdepend "dev-ruby/bundler"
-
-all_ruby_prepare() {
- [ -f Gemfile.lock ] && rm Gemfile.lock
- #For now, we don't support development or testing at all
- #if ! use development; then
- sed -i -e "/^group :development do/,/^end$/d" Gemfile || die
- sed -i -e "/s.add_development_dependency/d" "${PN}".gemspec ||
die
- #fi
- #if ! use test; then
- sed -i -e "/^group :test do/,/^end$/d" Gemfile || die
- #fi
- #if ! use test && ! use development; then
- sed -i -e "/^group :development, :test do/,/^end$/d" Gemfile ||
die
- #fi
-}
-
-each_ruby_prepare() {
- if [ -f Gemfile ]
- then
- BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle install --local || die
- BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle check || die
- fi
-}