Patch flang-clang directly to link the required libraries and include the proper
library directories. Hence, the need of the wrapper script (and it's non-optimal
behavior) vanishes.
While there, mark flang-clang broken on 10. Its LLVM6 base is not supported
there and due to libpgmath only working on 12+, there is no need for it
anyways.
Fix config file upgrade, and disconnect the .sample processing; done by
ports tree now.
Reset maintainer, as he has not responded to email for as long as I can
remember. I have been (and still am) very grateful for his help in the past.
Approved by: maintainer timeout (>1 year)
This is a rework of Crypt::RSA to remove Math::Pari and instead base all
operations on Math::BigInt.
This is intended to be a plug-in replacement for Crypt::RSA, with no
user-visible changes to existing features.
Math::Pari is completely removed. This includes the two modules:
- Crypt::Primes => Math::Prime::Util
- Crypt::Random => Math::Prime::Util
All operations are now performed using Math::BigInt, and prefer the GMP and Pari
backends.
WWW: https://metacpan.org/release/Alt-Crypt-RSA-BigInt
Math::Prime::Util::GMP is a module for number theory in Perl using GMP. This
includes primality tests, getting primes in a range, factoring, and more.
These use GMP directly, so should be quite fast for bignums. This module is
mainly intended to be used within Math::Prime::Util, but most functions can be
easily used in independent C programs. Some, like factoring and primality
proving, have explicit ways of compiling as standalone programs.
WWW: https://metacpan.org/release/Math-Prime-Util-GMP
Math::Prime::Util is a module for number theory in Perl. This includes prime
sieving, primality tests, primality proofs, integer factoring, counts / bounds /
approximations for primes, nth primes, and twin primes, random prime generation,
and much more.
WWW: https://metacpan.org/release/Math-Prime-Util
Change USE_GL to become USES=gl. You still need to specify USE_GL as well,
to specify which gl components you need, such as egl glesv2 glut glu glw gl.
Only specifying USE_GL is supported for now, to ease in transition. It is
however deprecated, and will be removed eventually.
Specifying USES=gl without USE_GL is an error.
USE_GL=yes is also deprecated, but supported for now. It implies USE_GL=glu.
Fix fallout from this change.
PR: 230692
Approved by: portmgr (antoine)
exp-run by: antoine
Reviewed by: mat
Differential Revision: https://reviews.freebsd.org/D16774