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 9F6481396D9 for ; Tue, 31 Oct 2017 17:01:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB31C2BC128; Tue, 31 Oct 2017 17:01:49 +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 BE9942BC128 for ; Tue, 31 Oct 2017 17:01:49 +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 6FB0E3416DD for ; Tue, 31 Oct 2017 17:01:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F244E829 for ; Tue, 31 Oct 2017 17:01:46 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1509469272.df38bbfac7d3b278f23fabc4d34ed48534881852.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/asymptote/, media-gfx/asymptote/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/asymptote/asymptote-2.41-r1.ebuild media-gfx/asymptote/files/asymptote-2.41-perl-5.26.patch X-VCS-Directories: media-gfx/asymptote/ media-gfx/asymptote/files/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: df38bbfac7d3b278f23fabc4d34ed48534881852 X-VCS-Branch: master Date: Tue, 31 Oct 2017 17:01:46 +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: a961d6cf-52a3-40c4-bfee-8e3b7ecb1440 X-Archives-Hash: 81059f386d4ac6188c24ee1cf94e154d commit: df38bbfac7d3b278f23fabc4d34ed48534881852 Author: Andrey Grozin gentoo org> AuthorDate: Tue Oct 31 17:01:12 2017 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Tue Oct 31 17:01:12 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df38bbfa media-gfx/asymptote: patch a perl source to work with perl-5.26 Closes: https://bugs.gentoo.org/635984 Package-Manager: Portage-2.3.11, Repoman-2.3.3 media-gfx/asymptote/asymptote-2.41-r1.ebuild | 3 +++ media-gfx/asymptote/files/asymptote-2.41-perl-5.26.patch | 10 ++++++++++ 2 files changed, 13 insertions(+) diff --git a/media-gfx/asymptote/asymptote-2.41-r1.ebuild b/media-gfx/asymptote/asymptote-2.41-r1.ebuild index 4dc9ef30750..87c3bab4778 100644 --- a/media-gfx/asymptote/asymptote-2.41-r1.ebuild +++ b/media-gfx/asymptote/asymptote-2.41-r1.ebuild @@ -63,6 +63,9 @@ PATCHES=( # Bug #322473 "${FILESDIR}/${P}-info.patch" + + # Bug #635984 - perl-5.26 no longer has . in @INC + "${FILESDIR}/${P}-perl-5.26.patch" ) pkg_setup() { diff --git a/media-gfx/asymptote/files/asymptote-2.41-perl-5.26.patch b/media-gfx/asymptote/files/asymptote-2.41-perl-5.26.patch new file mode 100644 index 00000000000..54499b74e6c --- /dev/null +++ b/media-gfx/asymptote/files/asymptote-2.41-perl-5.26.patch @@ -0,0 +1,10 @@ +diff -r -U2 asymptote-2.41.orig/doc/FAQ/bfnnconv.pl asymptote-2.41/doc/FAQ/bfnnconv.pl +--- asymptote-2.41.orig/doc/FAQ/bfnnconv.pl 2017-03-22 14:56:46.000000000 +0700 ++++ asymptote-2.41/doc/FAQ/bfnnconv.pl 2017-10-31 23:44:05.511045390 +0700 +@@ -62,5 +62,5 @@ + open(U,">$prefix.xrefdb-new"); + +-for $x (@outputs) { require("m-$x.pl"); } ++for $x (@outputs) { require("./m-$x.pl"); } + + &call('init');