aboutsummaryrefslogtreecommitdiff
path: root/math/mpc
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update to MPC version 1.2.0 with the following changes:Gerald Pfeifer2021-03-212-6/+5
| | | | | | | | | | | | | | | | | | | | - New functions: . mpc_sum . mpc_dot - Several functions are more robust with a reduced exponent range (for example corresponding to IEEE 754 binary formats). - New mpcheck tool for comparison with the native C library (which is not installed by default). Bump all directly dependent ports. Do not bump those indirectly dependent via the lang/gcc* family since their run-time dependencies and code generated should not be affected. PR: 249950 Submitted by: wen Notes: svn path=/head/; revision=568912
* Install texinfo files (GNU info) into ${PREFIX}/share/infoBaptiste Daroussin2018-11-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | After a discussion on the mailing list on moving manpages to ${PREFIX}/share/man for consistency with base where it is installed in usr/share/man, it appeared the same should happen to GNU info files which were installed under share in base and not in ports. Now texinfo is not in base on any of the supported version of FreeBSD it is possible to proceed to this move and it is easier to do than the manpage change. Other benefit than consistency are less patching: all build tools but cmake are expecting info files to be under share/info and cmake (patched here) was having an exception for BSD so the patch makes FreeBSD case less specific for them Bump revision of all impacted ports PR: 232907 exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D17816 Notes: svn path=/head/; revision=484628
* - Add LICENSEDmitry Marakasov2018-05-241-3/+4
| | | | | | | | | - Switch to new test framework Approved by: portmgr blanket Notes: svn path=/head/; revision=470764
* Update mpfr to 4.0.1 release and bump PORTVERSION of dependent ports.Alex Dupre2018-04-191-0/+1
| | | | Notes: svn path=/head/; revision=467751
* Update to libmcp version 1.1.0 which brings the following changes:Gerald Pfeifer2018-03-102-5/+5
| | | | | | | | | | | | | | | | | | | | | - New functions: . mpc_cmp_abs . mpc_rootofunity - Rewrite of the testing framework and a new mpcbench tool, used with `make bench`. - Bug fixes and improvements of existing functions: . Fixed compilation with mpfr 4.0.0. . Fixed handling of over- and underflows with directed rounding in the "other direction" for mpc_cos, mpc_sin, mpc_exp and mpc_pow . Fixed a bug in mpc_atan(0,y) with |y| near 1. - Minimally required dependencies are now gmp 5.0.0 and mpfr 3.0.0 (way below what the standard Ports Collection provides). PR: 225968 Tested by: antoine (exp-run) Notes: svn path=/head/; revision=464079
* MASTER_SITES=GNU is sufficient, no need for MASTER_SITES=GNU/${PORTNAME}.Gerald Pfeifer2018-01-281-1/+1
| | | | | | | Reported by: sunpoet Notes: svn path=/head/; revision=460170
* The upstream MPC project now uses GNU as their primary distributionGerald Pfeifer2018-01-282-3/+2
| | | | | | | | | | | network, so adjust MASTER_SITES on our end. And remove a special PORTSCOUT setting, which silently stopped working. Since I fully tested this, this commit also adds a TIMESTAMP to distinfo (but no other change). Notes: svn path=/head/; revision=460162
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Update to MPC version 1.0.3 which brings two changes:Gerald Pfeifer2015-04-052-4/+3
| | | | | | | | | | | | - Fixed mpc_pow, see http://lists.gforge.inria.fr/pipermail/mpc-discuss/2014-October/001315.html - Switched to libtool 2.4.5. No PORTREVISION bump of dependent ports since this is really a minor change and transparent for users that link dynamically. Notes: svn path=/head/; revision=383350
* - Add USES=libtool and INSTALL_TARGET=install-stripTijl Coosemans2014-09-011-2/+5
| | | | | | | - Use MAKE_CMD Notes: svn path=/head/; revision=366854
* Update to version 1.0.2 which brings two bug fixes:Gerald Pfeifer2014-01-202-5/+3
| | | | | | | | | | | | - Fixed mpc_atan, mpc_atanh for (+-0, +-1), see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57994#c7 - Fixed mpc_log10 for purely imaginary argument, see http://lists.gforge.inria.fr/pipermail/mpc-discuss/2012-September/001208.html Remove now unnecessary LATEST_LINK. Notes: svn path=/head/; revision=340450
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-10-262-7/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331644
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | math) Notes: svn path=/head/; revision=327746
* Advise PORTSCOUT not to run into a false positive due to theGerald Pfeifer2012-08-051-2/+4
| | | | | | | | | | | server providing arbitrary redirects. [1] Remove ABI version numbers for library dependencies. Submitted by: shaun [1] Notes: svn path=/head/; revision=302138
* - Remove WITH_FBSD10_FIX, is no longer neededMartin Wilke2011-11-091-1/+0
| | | | Notes: svn path=/head/; revision=285379
* - Fix build on FreeBSD 10Martin Wilke2011-10-291-0/+1
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=284613
* Update to libmpc version 0.9 which brings the following changes:Gerald Pfeifer2011-02-212-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | | - New functions: . mpc_set_dc, mpc_set_ldc, mpc_get_dc, mpc_get_ldc for converting between mpc type variables and C variables of type double _Complex or long double _Complex . mpc_sin_cos, computing simultaneously the sine and cosine - Speed-ups: . mpc_pow_si through binary exponentiation . mpc_pow_z when the exponent fits in a long . mpc_tan through the use of mpc_sin_cos - Bug fixes: . trigonometric functions: infinite loop due to overflow for large arguments . exp: close to infinite loop for argument close to 0 . sqrt: close to infinite loop for argument close to 1 . add_si: replaced macro by function, since the macro evaluated the same expression twice - Logging feature for debugging: ./configure --enable-logging #include "mpc-log.h" instead of #include "mpc.h" Notes: svn path=/head/; revision=269452
* Update to libmpc version 0.8.2 which brings a speed-up of mpc_pow_uiGerald Pfeifer2010-06-203-16/+4
| | | | | | | | | | through binary exponentiation and fixes the testsuite for mpfr 3.0.0. Suggested by: Gunther Nikl <gnikl@users.sourceforge.net> Feature safe: yes Notes: svn path=/head/; revision=256771
* Chase mpfr library and bump PORTREVISION.Alex Dupre2010-06-112-2/+13
| | | | Notes: svn path=/head/; revision=256398
* Switch to use newer GMP version.Alex Dupre2010-04-191-1/+2
| | | | | | | | | PR: ports/144487 Submitted by: ale Approved by: portmgr (-exp run by erwin) Notes: svn path=/head/; revision=252906
* Update to libmpc version 0.8.1 which brings the following changes:Gerald Pfeifer2009-12-212-4/+4
| | | | | | | | | | | | | - Bug fixes: . acosh, asinh, atanh: swap of precisions between real and imaginary parts . atan: memory leak . log: wrong ternary value in data file; masked by bug in Mpfr 2.4.1 PR: 141825 Submitted by: bf1783@gmail.com Notes: svn path=/head/; revision=246340
* Update to libmpc version 0.8 which brings the following changes:Gerald Pfeifer2009-11-062-4/+4
| | | | | | | | | | | | | - New functions: . Inverse trigonometric functions: mpc_asin, mpc_acos, mpc_atan, mpc_asinh, mpc_acosh, mpc_atanh . Power functions: mpc_pow_d, mpc_pow_ld, mpc_pow_si, mpc_pow_ui, mpc_pow_z, mpc_pow_fr - Bug fixes: . ui_div: real divisor Notes: svn path=/head/; revision=243889
* Assume maintainership. Thanks to Wen Heping for getting this port started!Gerald Pfeifer2009-11-011-1/+1
| | | | | | | Approved by: maintainer (wen) Notes: svn path=/head/; revision=243612
* Replace pkg-plist by a PLIST_FILES in Makefile.Gerald Pfeifer2009-10-112-5/+2
| | | | | | | Approved by: maintainer (wen heping) Notes: svn path=/head/; revision=242657
* Update to libmpc version 0.7 which brings the following changes:Gerald Pfeifer2009-09-263-6/+5
| | | | | | | | | | | | | | | | | | | - New functions: mpc_pow, mpc_set_nan, mpc_swap - Bug fixes: . log: along branch cut . norm: infinite loop in case of overflow . ui_div, div, fr_div: handling of division by 0 and infinities following the example code of the C99 standard . compilation with g++ - Makefile.vc updated (thanks to Mickael Gastineau) - Changed MPC_SET_X_Y macro - Removed functions mpc_random and mpc_random2 (which no port uses) Approved by: maintainer (wen heping) Feature safe: yes Notes: svn path=/head/; revision=242130
* Explicitly set LATEST_LINK to not clash with audio/mpcErwin Lansing2009-06-111-0/+2
| | | | Notes: svn path=/head/; revision=235585
* - Chase math/libgmp4 shlib bumpPav Lucistnik2009-05-141-1/+2
| | | | | | | | Reported by: pointyhat Pointy hat to: ale Notes: svn path=/head/; revision=233892
* Mpc is a C library for the arithmetic of complex numbers withMartin Wilke2009-04-114-0/+48
arbitrarily high precision and correct rounding of the result. It is built upon and follows the same principles as Mpfr. The library is written by Andreas Enge, Philippe Theveny and Paul Zimmermann and is distributed under the Gnu Lesser General Public License, either version 2.1 of the license, or (at your option) any later version. The Mpc library has been registered in France by the Agence pour la Protection des Programmes on 2003-02-05 under the number IDDN FR 001 060029 000 R P 2003 000 10000. WWW: http://www.multiprecision.org/ PR: ports/133395 Submitted by: Wen Heping <wenheping at gmail.com> Notes: svn path=/head/; revision=232062