summaryrefslogtreecommitdiff
path: root/dev-ruby/celluloid
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-02-17 20:03:52 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-02-17 20:03:52 +0000
commit4935506e9a5cbfabd37c64093eac5f36c2ff0017 (patch)
treeaf9dd93ea349eacaf28286c7c45c7a083b0b7c31 /dev-ruby/celluloid
parent434d713861b70f6c6563d6ee50a8e64f14c970d9 (diff)
gentoo resync : 17.02.2018
Diffstat (limited to 'dev-ruby/celluloid')
-rw-r--r--dev-ruby/celluloid/Manifest1
-rw-r--r--dev-ruby/celluloid/files/celluloid-0.16.0-call-private-methods.patch19
2 files changed, 0 insertions, 20 deletions
diff --git a/dev-ruby/celluloid/Manifest b/dev-ruby/celluloid/Manifest
index db6651dc63ad..f5ca9158042c 100644
--- a/dev-ruby/celluloid/Manifest
+++ b/dev-ruby/celluloid/Manifest
@@ -1,4 +1,3 @@
-AUX celluloid-0.16.0-call-private-methods.patch 765 BLAKE2B 2f1fc1108906d31682085a4deab14ebd390d24d40e53a2c555d843ae67561c452d215b975a769d7f808dc1b738f64287c48fd0ee304c9a127b2d0d1c120c818a SHA512 322039ffb8c08f88c334e84123084aac3c870d2149d67d3bb083a6496a383cfe6506f4fd2b62fb1b59a261a9be4ab24975b6196cd74a2561f17e0a98dc6cae40
DIST celluloid-0.17.3.gem 61952 BLAKE2B 5b64b67dea84261706acaf2612c23cb0b82d6af7fe0eece9d9e17e5d948d83a81b0de7598a1709fb5e1073f3632c7df6d6730c4797e0a4da593795b85c3bf9e1 SHA512 bb5005452ef7a2da1fb6b6515a6ad9df992dfd043caa605d1282a24b874c1f0798da0d19ee00f434486f9ef2c9467b1d6d2cadaa7883db98b885eeb842f1b94c
EBUILD celluloid-0.17.3.ebuild 1183 BLAKE2B 452d24bdf80682f592ace46ca7668cece65e09f6fd1e6e5eaa7b18378e63dd2906b52b41fca3c3e724d04c8a423fea6e9bee81be924f0e13a3c39d73949b24e4 SHA512 3c0811c1be22ca1c7ed5792b37b8b2ae038d316909a08daf49663029f9c93601f9194ddb35c23c192836877aae474e12ba197c5800b2cc3d89d48f7ebe62adff
MISC metadata.xml 345 BLAKE2B 57803cd94baa4d58e4c4c418834347d84a4e8bd5b4ae5019dd71797ace22f508b601bbe62221df4a2fab04eff1fa1aa43d78d98462d189ba13b9bcdf70375f44 SHA512 e07f38e8feadf085f1adeb737ff56aeb9cc4c79a3b7702f9c018544bebcc14646be394aa32ff5502c37ef0fb8968707b7f8d9a6fdaeff23cac5b71fabae46aa8
diff --git a/dev-ruby/celluloid/files/celluloid-0.16.0-call-private-methods.patch b/dev-ruby/celluloid/files/celluloid-0.16.0-call-private-methods.patch
deleted file mode 100644
index f503a2334c84..000000000000
--- a/dev-ruby/celluloid/files/celluloid-0.16.0-call-private-methods.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit 092ce58aa8713f387ae3d0467b6d8029cf2765cd
-Author: Jonathan <chapmajs@gmail.com>
-Date: Sun Oct 19 22:05:26 2014 -0400
-
- Allowing calls to private_methods
-
-diff --git a/lib/celluloid/proxies/abstract_proxy.rb b/lib/celluloid/proxies/abstract_proxy.rb
-index 6a79acb..2db7a8e 100644
---- a/lib/celluloid/proxies/abstract_proxy.rb
-+++ b/lib/celluloid/proxies/abstract_proxy.rb
-@@ -5,7 +5,7 @@ module Celluloid
- def __class__; AbstractProxy; end
-
- # Needed for storing proxies in data structures
-- needed = [:object_id, :__id__, :hash] - instance_methods
-+ needed = [:object_id, :__id__, :hash, :private_methods] - instance_methods
- if needed.any?
- include ::Kernel.dup.module_eval {
- undef_method(*(instance_methods - needed))