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 22C621382C5 for ; Wed, 17 Jun 2020 17:49:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48172E096C; Wed, 17 Jun 2020 17:49:57 +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 2F4F9E096C for ; Wed, 17 Jun 2020 17:49:57 +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 873C134F32F for ; Wed, 17 Jun 2020 17:49:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 718AD2A5 for ; Wed, 17 Jun 2020 17:49:53 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1592416185.eb5c95d3aa27942398844bd9497f786561edc735.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/xmms2/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/xmms2/files/xmms2-0.8_p20161122-perl-no-local.patch X-VCS-Directories: media-sound/xmms2/files/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: eb5c95d3aa27942398844bd9497f786561edc735 X-VCS-Branch: master Date: Wed, 17 Jun 2020 17:49:53 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 14fa718d-eaae-4da7-bd42-6204671c0448 X-Archives-Hash: d016529d2ba6118f63a7c81bed955d7e commit: eb5c95d3aa27942398844bd9497f786561edc735 Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Jun 17 14:13:05 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Jun 17 17:49:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb5c95d3 media-sound/xmms2: remove unused patch Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/16294 Signed-off-by: Aaron Bauman gentoo.org> .../xmms2/files/xmms2-0.8_p20161122-perl-no-local.patch | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/media-sound/xmms2/files/xmms2-0.8_p20161122-perl-no-local.patch b/media-sound/xmms2/files/xmms2-0.8_p20161122-perl-no-local.patch deleted file mode 100644 index af18825ac00..00000000000 --- a/media-sound/xmms2/files/xmms2-0.8_p20161122-perl-no-local.patch +++ /dev/null @@ -1,17 +0,0 @@ -Install perl modules into /usr, not /usr/local. - -$ perl -MConfig -e 'print "$Config{archlib}\n"' -/usr/lib64/perl5/5.24.3/x86_64-linux -$ perl -MConfig -e 'print "$Config{sitearch}\n"' -/usr/local/lib64/perl5/5.24.3/x86_64-linux ---- a/waflib/Tools/perl.py -+++ b/waflib/Tools/perl.py -@@ -75,7 +75,7 @@ def check_perl_ext_devel(self): - env.EXTUTILS_TYPEMAP=cfg_lst('$Config{privlib}/ExtUtils/typemap') - env.XSUBPP=find_xsubpp() - if not getattr(Options.options,'perlarchdir',None): -- env.ARCHDIR_PERL=cfg_str('$Config{sitearch}') -+ env.ARCHDIR_PERL=cfg_str('$Config{archlib}') - else: - env.ARCHDIR_PERL=getattr(Options.options,'perlarchdir') - env.perlext_PATTERN='%s.'+cfg_str('$Config{dlext}')