From owner-svn-ports-all@freebsd.org Tue Oct 27 21:07:09 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 40D1E45A524; Tue, 27 Oct 2020 21:07:09 +0000 (UTC) (envelope-from thierry@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 4CLPR10sjBz4D4Y; Tue, 27 Oct 2020 21:07:09 +0000 (UTC) (envelope-from thierry@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 F09E211C28; Tue, 27 Oct 2020 21:07:08 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09RL78vw049845; Tue, 27 Oct 2020 21:07:08 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09RL78tU049843; Tue, 27 Oct 2020 21:07:08 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <202010272107.09RL78tU049843@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Tue, 27 Oct 2020 21:07:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r553498 - in head/math/py-cypari2: . files X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: in head/math/py-cypari2: . files X-SVN-Commit-Revision: 553498 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: Tue, 27 Oct 2020 21:07:09 -0000 Author: thierry Date: Tue Oct 27 21:07:08 2020 New Revision: 553498 URL: https://svnweb.freebsd.org/changeset/ports/553498 Log: Fix a breakage introduced by r553237: Use polisirreducible() instead of isirreducible() Obtained from: upstream (7bf4211) Added: head/math/py-cypari2/files/ head/math/py-cypari2/files/patch-cypari2_gen.pyx (contents, props changed) head/math/py-cypari2/files/patch-cypari2_paridecl.pxd (contents, props changed) Modified: head/math/py-cypari2/Makefile Modified: head/math/py-cypari2/Makefile ============================================================================== --- head/math/py-cypari2/Makefile Tue Oct 27 20:52:09 2020 (r553497) +++ head/math/py-cypari2/Makefile Tue Oct 27 21:07:08 2020 (r553498) @@ -3,7 +3,7 @@ PORTNAME= cypari2 DISTVERSION= 2.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Added: head/math/py-cypari2/files/patch-cypari2_gen.pyx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-cypari2/files/patch-cypari2_gen.pyx Tue Oct 27 21:07:08 2020 (r553498) @@ -0,0 +1,11 @@ +--- cypari2/gen.pyx.orig 2019-04-23 10:57:51 UTC ++++ cypari2/gen.pyx +@@ -4109,7 +4109,7 @@ cdef class Gen(Gen_base): + non-constant polynomial, or False if f is reducible or constant. + """ + sig_on() +- t = isirreducible(self.g) ++ t = polisirreducible(self.g) + clear_stack() + return t != 0 + Added: head/math/py-cypari2/files/patch-cypari2_paridecl.pxd ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-cypari2/files/patch-cypari2_paridecl.pxd Tue Oct 27 21:07:08 2020 (r553498) @@ -0,0 +1,11 @@ +--- cypari2/paridecl.pxd.orig 2019-04-23 10:57:51 UTC ++++ cypari2/paridecl.pxd +@@ -3850,7 +3850,7 @@ cdef extern from *: # PARI headers already include + GEN glcm0(GEN x, GEN y) + GEN gp_factor0(GEN x, GEN flag) + GEN idealfactorback(GEN nf, GEN L, GEN e, int red) +- long isirreducible(GEN x) ++ long polisirreducible "isirreducible"(GEN x) + GEN newtonpoly(GEN x, GEN p) + GEN nffactorback(GEN nf, GEN L, GEN e) + GEN nfrootsQ(GEN x)