dev-perl/Moose: remove unused patch.
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Sun, 12 Nov 2017 19:59:54 +0000 (20:59 +0100)
committerPatrice Clement <monsieurp@gentoo.org>
Mon, 13 Nov 2017 22:26:47 +0000 (23:26 +0100)
Closes: https://github.com/gentoo/gentoo/pull/6182

dev-perl/Moose/files/Moose-2.60.400-cmop-package-stash.patch [deleted file]

diff --git a/dev-perl/Moose/files/Moose-2.60.400-cmop-package-stash.patch b/dev-perl/Moose/files/Moose-2.60.400-cmop-package-stash.patch
deleted file mode 100644 (file)
index 4a5ad8e..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur t/cmop/methods.t t/cmop/methods.t
---- t/cmop/methods.t   2012-09-19 21:11:42.000000000 +0000
-+++ t/cmop/methods.t   2013-12-23 11:19:58.758708726 +0000
-@@ -413,7 +413,7 @@
-     my $baz_meta = Class::MOP::Class->initialize('Baz');
-     $baz_meta->add_method(foo => sub { });
-     my $stash = Package::Stash->new('Baz');
--    $stash->remove_package_symbol('&foo');
-+    $stash->remove_symbol('&foo');
-     is_deeply([$baz_meta->get_method_list], [], "method is deleted");
-     ok(!Baz->can('foo'), "Baz can't foo");
- }