From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4AE391396D9 for ; Mon, 13 Nov 2017 22:26:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B817EE1035; Mon, 13 Nov 2017 22:26:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A963E1035 for ; Mon, 13 Nov 2017 22:26:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4F6733BF3C for ; Mon, 13 Nov 2017 22:26:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F8EB97BE for ; Mon, 13 Nov 2017 22:26:51 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1510612007.3a368ee64df00496b5a78211d0a756b0ae462cee.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Moose/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Moose/files/Moose-2.60.400-cmop-package-stash.patch X-VCS-Directories: dev-perl/Moose/files/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 3a368ee64df00496b5a78211d0a756b0ae462cee X-VCS-Branch: master Date: Mon, 13 Nov 2017 22:26:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d11b2e03-7920-49c5-b430-6de86feea252 X-Archives-Hash: 6423dadbf6707fc6fd36a1d7126e0e6c commit: 3a368ee64df00496b5a78211d0a756b0ae462cee Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Nov 12 19:59:54 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Mon Nov 13 22:26:47 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a368ee6 dev-perl/Moose: remove unused patch. Closes: https://github.com/gentoo/gentoo/pull/6182 dev-perl/Moose/files/Moose-2.60.400-cmop-package-stash.patch | 12 ------------ 1 file changed, 12 deletions(-) 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 index 4a5ad8e7909..00000000000 --- a/dev-perl/Moose/files/Moose-2.60.400-cmop-package-stash.patch +++ /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"); - }