dev-ruby/samuel: remove masked package
authorHans de Graaff <graaff@gentoo.org>
Sat, 23 Sep 2017 06:34:59 +0000 (08:34 +0200)
committerHans de Graaff <graaff@gentoo.org>
Sat, 23 Sep 2017 06:37:49 +0000 (08:37 +0200)
dev-ruby/samuel/Manifest [deleted file]
dev-ruby/samuel/metadata.xml [deleted file]
dev-ruby/samuel/samuel-0.3.3-r2.ebuild [deleted file]

diff --git a/dev-ruby/samuel/Manifest b/dev-ruby/samuel/Manifest
deleted file mode 100644 (file)
index 7d7a2e0..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST samuel-0.3.3.gem 12800 SHA256 a0a566e27f654aff0af30f34d80153201619ba9fc5c80ac891c9719d2f84a048 SHA512 3c668a45ac6eb58d236722f1d9f23cfa02d54506309427ad4c6ee2909a6d3def109246c7f7f98a9c26cda0ac74b54c610c4cc0fc18110bf9b45d1aa461f37f57 WHIRLPOOL 9d90f09fd34c48b9213ddc15c1432d400c44e950f717da9ad536477d9bb3d6fddca6c5ab728bacfdc4f9cd0af983c4191cd952c0a5ff0bad403ff15366c6b151
diff --git a/dev-ruby/samuel/metadata.xml b/dev-ruby/samuel/metadata.xml
deleted file mode 100644 (file)
index 96aa3ca..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="project">
-    <email>ruby@gentoo.org</email>
-    <name>Gentoo Ruby Project</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">chrisk/samuel</remote-id>
-  </upstream>
-</pkgmetadata>
diff --git a/dev-ruby/samuel/samuel-0.3.3-r2.ebuild b/dev-ruby/samuel/samuel-0.3.3-r2.ebuild
deleted file mode 100644 (file)
index 9b4e6fa..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby21 ruby22"
-
-RUBY_FAKEGEM_TASK_DOC=""
-
-inherit ruby-fakegem
-
-DESCRIPTION="An automatic logger for HTTP requests in Ruby"
-HOMEPAGE="https://github.com/chrisk/samuel"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
-IUSE=""
-
-ruby_add_bdepend "
-       test? (
-               >=dev-ruby/shoulda-2.11.3
-               >=dev-ruby/fakeweb-1.3
-               >=dev-ruby/httpclient-2.2.3
-               dev-ruby/mocha:0.14
-               dev-ruby/test-unit:2
-       )"
-
-all_ruby_prepare() {
-       # Remove references to bundler
-       sed -i -e '/[Bb]undler/d' test/test_helper.rb || die
-       rm Gemfile*
-
-       # Change the default port from 8000 to 64888 to sidestep Issue #10.
-       # https://github.com/chrisk/samuel/issues/10
-       sed -i -e 's:8000:64888:g' test/*.rb || die
-
-       # Require an old enough version of mocha.
-       sed -i -e '1igem "mocha", "~> 0.14.0"' test/test_helper.rb || die
-
-       # Use the test-unit gem for consistency accross ruby versions
-       sed -i -e '1igem "test-unit"; require "test/unit"' test/test_helper.rb || die
-}