Received: by mail.netbsd.org (Postfix, from userid 605) id 95E4784D45; Tue, 2 Aug 2022 08:01:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D027584D44 for ; Tue, 2 Aug 2022 08:01:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id SyXqIcAkeNdx for ; Tue, 2 Aug 2022 08:01:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 47F7E84D16 for ; Tue, 2 Aug 2022 08:01:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 41B7CFB1A; Tue, 2 Aug 2022 08:01:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1659427307170330" MIME-Version: 1.0 Date: Tue, 2 Aug 2022 08:01:47 +0000 From: "Adrian Steinmann" Subject: CVS commit: pkgsrc/math/p5-Math-Pari To: pkgsrc-changes@NetBSD.org Reply-To: ast@netbsd.org X-Mailer: log_accum Message-Id: <20220802080147.41B7CFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1659427307170330 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ast Date: Tue Aug 2 08:01:47 UTC 2022 Modified Files: pkgsrc/math/p5-Math-Pari: distinfo pkgsrc/math/p5-Math-Pari/patches: patch-Makefile.PL Log Message: math/p5-Math-Par: fix mangled patch file due to keyword substitution To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/math/p5-Math-Pari/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/p5-Math-Pari/patches/patch-Makefile.PL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1659427307170330 Content-Disposition: inline Content-Length: 2047 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/p5-Math-Pari/distinfo diff -u pkgsrc/math/p5-Math-Pari/distinfo:1.26 pkgsrc/math/p5-Math-Pari/distinfo:1.27 --- pkgsrc/math/p5-Math-Pari/distinfo:1.26 Tue Aug 2 07:22:00 2022 +++ pkgsrc/math/p5-Math-Pari/distinfo Tue Aug 2 08:01:46 2022 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.26 2022/08/02 07:22:00 ast Exp $ +$NetBSD: distinfo,v 1.27 2022/08/02 08:01:46 ast Exp $ BLAKE2s (Math-Pari-2.030523.tar.gz) = 10653f3eb0d4f6ed32f30941ab744fee1fa77668cf5de22b54d7b3027c93693e SHA512 (Math-Pari-2.030523.tar.gz) = 4f75a745111eed1c326270fc4cff5f7785fd353ffbbaf21a33215974671cdb2a4ff8d397a2df41b24002312a43993114a3620f5b6ed7eb6d4bdae9c4f62d671c Size (Math-Pari-2.030523.tar.gz) = 230001 bytes -SHA1 (patch-Makefile.PL) = 54048800a19be290747feab0adee1a3dfd0b08b2 +SHA1 (patch-Makefile.PL) = 2856af235ab57d2af024af75f4482c1476798be4 Index: pkgsrc/math/p5-Math-Pari/patches/patch-Makefile.PL diff -u pkgsrc/math/p5-Math-Pari/patches/patch-Makefile.PL:1.1 pkgsrc/math/p5-Math-Pari/patches/patch-Makefile.PL:1.2 --- pkgsrc/math/p5-Math-Pari/patches/patch-Makefile.PL:1.1 Tue Aug 2 07:22:00 2022 +++ pkgsrc/math/p5-Math-Pari/patches/patch-Makefile.PL Tue Aug 2 08:01:47 2022 @@ -1,12 +1,11 @@ -$NetBSD: patch-Makefile.PL,v 1.1 2022/08/02 07:22:00 ast Exp $ +$NetBSD: patch-Makefile.PL,v 1.2 2022/08/02 08:01:47 ast Exp $ Take Makefile.PL from version Math-Pari-2.01080900 to avoid Math::PariBuild and other conflicting build rules --- Makefile.PL.orig 2022-04-12 09:52:37.000000000 +0200 +++ Makefile.PL 2022-08-02 08:57:35.009435144 +0200 -@@ -1,40 +1,10 @@ - # $Id: patch-Makefile.PL,v 1.1 2022/08/02 07:22:00 ast Exp $ +@@ 0,40 +2,10 @@ -use strict; -use Config '%Config'; - @@ -242,7 +241,7 @@ Math::PariBuild and other conflicting bu - ep_hash_report(%codes, %names, \*STDERR); - } - } -+$offset = index($Config{byteorder}, "1"); ++my $offset = index($Config{byteorder}, "1"); my $extra_inc; +$offset = 3 if $offset > 3; # SvFLAGS is actually I32 +$define .= " -DLSB_in_U32=$offset"; --_----------=_1659427307170330--