summaryrefslogtreecommitdiff
path: root/math/octave-forge (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* - Optional dependency math/octave-forge-level-set to on.Stephen Montgomery-Smith2021-02-221-4/+3
| | | | | | | | - Remove optional dependency math/octave-forge-tisean. - Update to 20210221. Notes: svn path=/head/; revision=566264
* - Optional dependency math/octave-forge-ltfat to on.Stephen Montgomery-Smith2021-02-221-2/+2
| | | | Notes: svn path=/head/; revision=566262
* - Default previously missing dependencies to install.Stephen Montgomery-Smith2021-02-211-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=566256
* - Update math/octave to 6.2.0.Stephen Montgomery-Smith2021-02-211-1/+2
| | | | | | | | | - Bump portrevision of dependent ports. - Add patches to dependent ports math/octave-forge-* if I can figure them out. - Mark broken dependent ports I couldn't figure out. Notes: svn path=/head/; revision=566249
* - Add optional dependency math/octave-forge-sparsersb.Stephen Montgomery-Smith2020-05-191-2/+2
| | | | | | | - Update to 20200519. Notes: svn path=/head/; revision=535897
* - Add optional dependency AUDIO.Stephen Montgomery-Smith2020-01-171-2/+2
| | | | | | | - Update to 20200117. Notes: svn path=/head/; revision=523267
* - Add option dependencies communications and mechanics.Stephen Montgomery-Smith2020-01-061-3/+3
| | | | | | | - Update to 20200106. Notes: svn path=/head/; revision=522182
* - Add optional dependency math/octave-forge-matgeom.Stephen Montgomery-Smith2019-12-021-3/+2
| | | | | | | - Update to 20191201. Notes: svn path=/head/; revision=518819
* - Resurrect math/octave-forge-linear algebra.Stephen Montgomery-Smith2019-11-141-2/+2
| | | | | | | | | - Update math/octave-forge-linear-algebra to 2.2.3. - In math/octave-forge, option linear-algebra defaults to on. - Bump port revision of math/octave-forge. Notes: svn path=/head/; revision=517613
* - Resurrect math/octave-forge-fits. Add patches so it builds. Bump ↵Stephen Montgomery-Smith2019-10-241-2/+2
| | | | | | | | | portrevision. - Default option FITS to on in math/octave-forge. Bump portrevision. Notes: svn path=/head/; revision=515342
* - Resurrect math/octave-forge-econometrics.Stephen Montgomery-Smith2019-10-191-2/+2
| | | | | | | | | - Update to 1.1.2. - Change default of ECONOMETRICS in math/octave-forge to on. - Bump port revision for math/octave-forge. Notes: svn path=/head/; revision=514858
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* - Set default to on for optional install of math/octave-forge-database subport.Stephen Montgomery-Smith2019-07-021-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=505712
* - Default to on option to install subpackage math/octave-forge-optim.Stephen Montgomery-Smith2019-04-161-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=499120
* - Default to on option to install subpackage math/octave-forge-struct.Stephen Montgomery-Smith2019-04-141-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=498945
* - Default option that installs subpackage math/octave-forge-dicom to on.Stephen Montgomery-Smith2019-04-071-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=498239
* - Default math/octave-forge-signal subpackage to on.Stephen Montgomery-Smith2019-04-051-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=497989
* - Update math/octave to 5.1.0.Stephen Montgomery-Smith2019-03-101-2/+2
| | | | | | | | | | | | - Bump portrevision of unbroken octave-forge-* ports. - Bump portrevision of math/dynare which uses library files from octave. - Mark broken: octave-forge-(database|dicom|optim|fits|linear|linear|optim| parallel|signal|strings|struct|tisean|video). - Broken optional dependencies in math/octave-forge to default to off. - Bump portrevision of math/octave-forge. Notes: svn path=/head/; revision=495225
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* - Remove octave-forge-* optional dependencies that no longer exist.Stephen Montgomery-Smith2018-12-221-5/+5
| | | | Notes: svn path=/head/; revision=488032
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* - Set option image to default to on.Stephen Montgomery-Smith2018-06-231-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=473154
* - Default options octclip and octproj to on.Stephen Montgomery-Smith2018-05-201-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=470479
* - Default option database to on.Stephen Montgomery-Smith2018-05-201-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=470470
* - Default parallel to on.Stephen Montgomery-Smith2018-05-181-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=470307
* - Set default fuzzy_logic_toolkit to on.Stephen Montgomery-Smith2018-05-141-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=469982
* - Default option tisean to on.Stephen Montgomery-Smith2018-05-141-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=469975
* - Default options linear-algebra and mechanics to on.Stephen Montgomery-Smith2018-05-141-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=469972
* - Set general and miscellaneous to default to on.Stephen Montgomery-Smith2018-05-141-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=469908
* - Perform work that was supposed to be done by r469289:Stephen Montgomery-Smith2018-05-101-2/+2
| | | | | | | | - Option SIGNAL defaults to on. - Bump portrevision. Notes: svn path=/head/; revision=469493
* - Correction to r468999: option DICOM now defaults to on.Stephen Montgomery-Smith2018-05-041-2/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=469001
* - Update octave to 4.4.0.Stephen Montgomery-Smith2018-05-031-1/+2
| | | | | | | | - Either bump portrevision or mark broken for octave-forge-* ports. - Bump port revision for octave-forge. Notes: svn path=/head/; revision=468999
* - Add optional dependency math/octave-forge-dicom.Stephen Montgomery-Smith2018-04-101-3/+2
| | | | | | | - Update to 20180409. Notes: svn path=/head/; revision=466936
* Bump PORTREVISIONs of all users of math/mpc that we just updated toGerald Pfeifer2018-03-101-0/+1
| | | | | | | version 1.1.0 (via revision 464079). Notes: svn path=/head/; revision=464084
* - Remove broken dependencies.Stephen Montgomery-Smith2018-02-251-11/+11
| | | | | | | - Update to 20180224. Notes: svn path=/head/; revision=462884
* - Add optional run depends math/octave-forge-bsltl.Stephen Montgomery-Smith2017-06-221-3/+2
| | | | | | | - Update to 20170622. Notes: svn path=/head/; revision=444132
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* - Update libsodium to 1.0.8Vsevolod Stakhov2016-03-231-0/+1
| | | | | | | | | | - Bump revisions of all dependant ports PR: 206482 Submitted by: lev, w.schwarzenfeld@aon.at Notes: svn path=/head/; revision=411691
* - Add optional deendency math/octave-forge-zeromq.Stephen Montgomery-Smith2016-02-271-2/+2
| | | | | | | - Update to 20160227. Notes: svn path=/head/; revision=409700
* - Add optional dependency math/octave-forge=doctest.Stephen Montgomery-Smith2016-01-201-3/+3
| | | | | | | - Update to 20160120. Notes: svn path=/head/; revision=406797
* - Set optional dependency math/octave-forge-video.Stephen Montgomery-Smith2016-01-181-1/+2
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=406550
* - Add math/otave-forge-tisean as an optional dependency.Stephen Montgomery-Smith2016-01-131-3/+3
| | | | | | | - Update to version 20160113. Notes: svn path=/head/; revision=406008
* - Default to off the optional dependencies that are broken.Stephen Montgomery-Smith2016-01-131-1/+2
| | | | Notes: svn path=/head/; revision=405990
* - ~convert to USES=metaport.Stephen Montgomery-Smith2015-07-162-380/+16
| | | | | | | | | | - Automate how OPTIONS are processed. PR: ports/201604 Submitted by: Andriy Voskoboinyk Notes: svn path=/head/; revision=392249
* - Reinstate optional dependency math/octave-forge-ltfat.Stephen Montgomery-Smith2015-07-041-8/+7
| | | | | | | - Update to 20150704. Notes: svn path=/head/; revision=391326
* - Add optional dependency math/octave-forge-level-set.Stephen Montgomery-Smith2015-02-201-2/+7
| | | | | | | - Update to 20150220. Notes: svn path=/head/; revision=379410
* - Add optional dependency math/octave-forge-interval.Stephen Montgomery-Smith2015-02-011-3/+7
| | | | | | | - Update to 20150201. Notes: svn path=/head/; revision=378281
* - Add optional dependency math/octave-forge-optics.Stephen Montgomery-Smith2014-12-141-3/+7
| | | | | | | - Update to 20141214. Notes: svn path=/head/; revision=374727