summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2017-09-23 08:34:59 +0200
committerHans de Graaff <graaff@gentoo.org>2017-09-23 08:37:49 +0200
commit40a475f08801f52099aabcad93871f5797488b04 (patch)
treea2389b45176b58ce151ca5514b55bd298f8ed1ee
parentdev-ruby/rails-observers: remove masked package (diff)
downloadgentoo-40a475f08801f52099aabcad93871f5797488b04.tar.gz
gentoo-40a475f08801f52099aabcad93871f5797488b04.tar.bz2
gentoo-40a475f08801f52099aabcad93871f5797488b04.zip
dev-ruby/samuel: remove masked package
-rw-r--r--dev-ruby/samuel/Manifest1
-rw-r--r--dev-ruby/samuel/metadata.xml11
-rw-r--r--dev-ruby/samuel/samuel-0.3.3-r2.ebuild43
3 files changed, 0 insertions, 55 deletions
diff --git a/dev-ruby/samuel/Manifest b/dev-ruby/samuel/Manifest
deleted file mode 100644
index 7d7a2e0dbe88..000000000000
--- a/dev-ruby/samuel/Manifest
+++ /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
index 96aa3caa0ba1..000000000000
--- a/dev-ruby/samuel/metadata.xml
+++ /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
index 9b4e6fab77e7..000000000000
--- a/dev-ruby/samuel/samuel-0.3.3-r2.ebuild
+++ /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
-}