aboutsummaryrefslogtreecommitdiff
path: root/math/opensolaris-libm
Commit message (Collapse)AuthorAgeFilesLines
* cleanup: drop support for EOL FreeBSD 11.XRene Ladan2021-09-301-14/+1
| | | | | | | | | | | | | | | | | Search criteria used: - 11.4 - OSREL* - OSVER* - *_FreeBSD_11 Input from: - adridg: devel/qca-legacy - jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds - sunpoet: security/p5-*OpenSSL* Reviewed by: doceng, kde, multimedia, perl, python, ruby, rust Differential Revision: https://reviews.freebsd.org/D32008 Test Plan: make index
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Remove compatibility code for FreeBSD < 11.2 from all ports.Rene Ladan2018-11-021-5/+0
| | | | | | | | | | Simplify some ports where DragonFlyBSD no longer needs to be special-cased. Submitted by: rene Reviewed by: bapt, jbeich Differential Revision: https://reviews.freebsd.org/D17724 Notes: svn path=/head/; revision=483807
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-1/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Bump PORTREVISIONs of all users of math/mpc that we just updated toGerald Pfeifer2018-03-101-1/+1
| | | | | | | version 1.1.0 (via revision 464079). Notes: svn path=/head/; revision=464084
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-1/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* Return ports maintained by John Marino to the pool, he is no longer interested.Rene Ladan2017-04-211-1/+1
| | | | | | | Submitted by: Mark Millard via private e-mail Notes: svn path=/head/; revision=439129
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-1/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* Return the ports mistakenly reset to ports@ in r433856 to John Marino.Rene Ladan2017-02-151-1/+1
| | | | | | | | | | | The mistake was completely on my part, I somehow connected the dots the wrong way in my head. The only exceptions (for now) are archivers/zstd and ports-mgmt/synth which were already picked up by new volunteers in the mean time. Notes: svn path=/head/; revision=434195
* Return ports maintained by John Marino to the pool, see r433827 for detailsRene Ladan2017-02-111-1/+1
| | | | Notes: svn path=/head/; revision=433856
* Add forgotten revbump for math/opensolaris-libmJohn Marino2017-01-311-0/+1
| | | | Notes: svn path=/head/; revision=432949
* math/opensolaris-libm: Second *BSD releaseJohn Marino2017-01-312-13/+5
| | | | | | | | | | | | | | | | Interestingly, this update comes 11 years to the days after the original source was released. This resolves the OpenLibm testsuite failures for the double variant of Bessel functions (seen always on Clang and on GCC when fno-builtin switch set) and the gamma/lgamma failures for 0.5 and 3.0 arguments. The associated implementions were replaced with the 1993 SunPro versions found in all BSD-based math libraries. The failures were of the off-by-1-bit type explained by floating point rounding. Now all float and double tests found in OpenLibm's testsuite pass. Notes: svn path=/head/; revision=432948
* Disable portscout for math/opensolaris-libmJohn Marino2017-01-251-0/+1
| | | | | | | | | | | | | Interestingly, since I created a release tag in the same date format used by the PORTVERSION, portscout thinks there is a new version available (2006.01.31 => 2017.01.24). Since the PORTVERSION is never going to change, disable portscout entirely. As the maintainer of the github repo, I'll know when a new release is available anyway. Notes: svn path=/head/; revision=432426
* small typo in math/opensolaris-libm description fixedJohn Marino2017-01-241-1/+1
| | | | Notes: svn path=/head/; revision=432399
* Add new port math/opensolaris-libmJohn Marino2017-01-244-0/+104
In 2006, Sun Microsystems released math and vector math libraries as part of their effort to open-source Solaris: libmvec - vector math library This library contains function to evaluate common mathematical functions for several arguments at once. The argument values are specified by one or more vectors (arrays) of data, and the corresponding result values are stored in another vector. libm - C99 math library Functions in this library provide common elementary mathematical functions and floating point environment routines defined by System V, ANSI C, POSIX, and so on. Additional functions in this library provide extended support for handling floating point exceptions. The original source has been modified to build on FreeBSD and DragonFly using GCC or clang and the GNU assembler. All fixes introduced by Nexenta and Illumos projects have also been incorporated. Missing x86_64 variants of lrint and lround have added. The floating-point exception logging including address->symbol tranlation has also been implemented. Notes: svn path=/head/; revision=432389