summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-07-13 06:47:03 +0200
committerMichał Górny <mgorny@gentoo.org>2020-07-13 06:47:03 +0200
commit556b7efb7fb6040128757ede963d9129af41fcb4 (patch)
tree0de55c4058a596339ddf47d4f836c3dece4b5981 /dev-ruby
parentdev-python/pybluez: Remove py2 version (diff)
downloadgentoo-556b7efb7fb6040128757ede963d9129af41fcb4.tar.gz
gentoo-556b7efb7fb6040128757ede963d9129af41fcb4.tar.bz2
gentoo-556b7efb7fb6040128757ede963d9129af41fcb4.zip
dev-ruby/rack-mount: Remove last-rited pkg
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/rack-mount/Manifest1
-rw-r--r--dev-ruby/rack-mount/files/rack-mount-fix-ruby20.patch26
-rw-r--r--dev-ruby/rack-mount/metadata.xml15
-rw-r--r--dev-ruby/rack-mount/rack-mount-0.8.3-r2.ebuild29
4 files changed, 0 insertions, 71 deletions
diff --git a/dev-ruby/rack-mount/Manifest b/dev-ruby/rack-mount/Manifest
deleted file mode 100644
index 46c78169ab75..000000000000
--- a/dev-ruby/rack-mount/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST rack-mount-0.8.3.tgz 33944 BLAKE2B 7763b55aaff25168924c9e237b762231e346b757b56919e454db52485cfa015989a03c93b9d1f0ae0802ab35773d646d70bc87e5d02307052c3c2c9ffa295d60 SHA512 5f1d10b951c967bc4c36a81b5c7dae5c5ec8d5253ee804fa1e1b4446c962fa0882d4c59773bca9373d5eb37a18646aff0a2dff2b1636d3d9126cae0f1e10a638
diff --git a/dev-ruby/rack-mount/files/rack-mount-fix-ruby20.patch b/dev-ruby/rack-mount/files/rack-mount-fix-ruby20.patch
deleted file mode 100644
index f1e37faa21d6..000000000000
--- a/dev-ruby/rack-mount/files/rack-mount-fix-ruby20.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 42e7ae47c2dac2d98272ac99239e40bd59398891 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <v.ondruch@tiscali.cz>
-Date: Tue, 9 Apr 2013 11:12:02 +0300
-Subject: [PATCH] Fix Ruby 2.0.0 compatibility
-
-#respond_to? now exclude protected methods.
----
- lib/rack/mount/multimap.rb | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lib/rack/mount/multimap.rb b/lib/rack/mount/multimap.rb
-index 6b773e2..b88630b 100644
---- a/lib/rack/mount/multimap.rb
-+++ b/lib/rack/mount/multimap.rb
-@@ -125,7 +125,7 @@ def update_container(key)
- end
-
- def iterate_over_container(container)
-- if container.respond_to?(:each_container_with_default)
-+ if container.respond_to?(:each_container_with_default, true)
- container.each_container_with_default do |value|
- yield value
- end
---
-1.9.3
-
diff --git a/dev-ruby/rack-mount/metadata.xml b/dev-ruby/rack-mount/metadata.xml
deleted file mode 100644
index 4179f349bdb5..000000000000
--- a/dev-ruby/rack-mount/metadata.xml
+++ /dev/null
@@ -1,15 +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>
- <longdescription>
-Rack provides a common API for connecting web frameworks, web servers and layers
-of software inbetween.
-</longdescription>
- <upstream>
- <remote-id type="github">josh/rack-mount</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-ruby/rack-mount/rack-mount-0.8.3-r2.ebuild b/dev-ruby/rack-mount/rack-mount-0.8.3-r2.ebuild
deleted file mode 100644
index 1630b971e17c..000000000000
--- a/dev-ruby/rack-mount/rack-mount-0.8.3-r2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.rdoc"
-
-inherit versionator ruby-fakegem
-
-DESCRIPTION="A stackable dynamic tree based Rack router"
-HOMEPAGE="https://github.com/josh/rack-mount"
-SRC_URI="https://github.com/josh/rack-mount/tarball/v${PV} -> ${P}.tgz"
-RUBY_S="josh-${PN}-*"
-
-LICENSE="MIT"
-SLOT="$(get_version_component_range 1-2)"
-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=""
-
-ruby_add_rdepend ">=dev-ruby/rack-1.0.0:*"
-
-RUBY_PATCHES=( ${PN}-fix-ruby20.patch )
-
-all_ruby_prepare() {
- # Avoid fragile test depending on hash ordering.
- sed -i -e '/foo=1&bar=2/ s:^:#:' test/test_utils.rb || die
-}