From owner-svn-ports-all@freebsd.org Mon Jun 29 14:40:38 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1E47634AFD9; Mon, 29 Jun 2020 14:40:38 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49wVXP74Krz3bjR; Mon, 29 Jun 2020 14:40:37 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D6C68903E; Mon, 29 Jun 2020 14:40:37 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05TEebGT070619; Mon, 29 Jun 2020 14:40:37 GMT (envelope-from arrowd@FreeBSD.org) Received: (from arrowd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05TEebLC070617; Mon, 29 Jun 2020 14:40:37 GMT (envelope-from arrowd@FreeBSD.org) Message-Id: <202006291440.05TEebLC070617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arrowd set sender to arrowd@FreeBSD.org using -f From: Gleb Popov Date: Mon, 29 Jun 2020 14:40:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r540775 - in head/math/linbox: . files X-SVN-Group: ports-head X-SVN-Commit-Author: arrowd X-SVN-Commit-Paths: in head/math/linbox: . files X-SVN-Commit-Revision: 540775 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Jun 2020 14:40:38 -0000 Author: arrowd Date: Mon Jun 29 14:40:37 2020 New Revision: 540775 URL: https://svnweb.freebsd.org/changeset/ports/540775 Log: math/linbox: Add a patch from upstream to fix build on CURRENT. Added: head/math/linbox/files/ head/math/linbox/files/patch-linbox_algorithms_det-rational.h (contents, props changed) Modified: head/math/linbox/Makefile Modified: head/math/linbox/Makefile ============================================================================== --- head/math/linbox/Makefile Mon Jun 29 14:00:17 2020 (r540774) +++ head/math/linbox/Makefile Mon Jun 29 14:40:37 2020 (r540775) @@ -3,7 +3,7 @@ PORTNAME= linbox PORTVERSION= 1.6.3 -PORTREVISION= 2 +PORTREVISION= 3 DISTVERSIONPREFIX= v CATEGORIES= math Added: head/math/linbox/files/patch-linbox_algorithms_det-rational.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/linbox/files/patch-linbox_algorithms_det-rational.h Mon Jun 29 14:40:37 2020 (r540775) @@ -0,0 +1,13 @@ +--- linbox/algorithms/det-rational.h.orig 2019-06-07 13:22:08 UTC ++++ linbox/algorithms/det-rational.h +@@ -79,8 +79,8 @@ namespace LinBox + struct MyRationalModularDet { + const Blackbox &A; + const MyMethod &M; +- const Integer &mul;//multiplicative prec; +- const Integer ÷ ++ Integer mul;//multiplicative prec; ++ Integer div; + + MyRationalModularDet(const Blackbox& b, const MyMethod& n, + const Integer & p1, const Integer & p2) :