Commit graph

13847 commits

Author SHA1 Message Date
Yuri Victorovich
2946e73136 math/darknet: Add options OPENCV and OPENMP 2019-10-06 23:06:16 +00:00
Yuri Victorovich
25e570fb30 math/darknet: Fix port version that was erroneous in the initial commit 2019-10-06 19:19:39 +00:00
Pedro F. Giffuni
c937a4ccc9 rename most cases of jakarta- to apache-
The Apache Softare Foundation used to maintain an umbrella project named
Jakarta but it was retired on 2011. This name now conflicts with the new
name for Java EE under the Eclipse Foundation.

Rename most of the packages to be more consistent. Some other packages remain
but they will require intervention by their corresponding maintainers.

Approved by:	thierry (mentor), makc
Differential Revision:	https://reviews.freebsd.org/D21902
2019-10-06 19:08:14 +00:00
Yuri Victorovich
bbc7901e66 New port: math/darknet: Open source neural networks in C 2019-10-06 18:25:19 +00:00
Yuri Victorovich
c8e1620689 math/tvm: Update 0.4-1440-g347e3d9d -> 0.4-1614-gd703fb4e 2019-10-06 18:20:28 +00:00
TAKATSU Tomonari
08b8ab8cd9 - Update to 1.1.5 2019-10-06 07:16:57 +00:00
Yuri Victorovich
f7b6036d55 math/lis: Update 2.0.19 -> 2.0.20
Reported by:	portscout
2019-10-05 22:49:14 +00:00
Yuri Victorovich
c9c15c9ebc math/mppp: Update 0.16 -> 0.17
Reported by:	portscout
2019-10-05 22:39:26 +00:00
Yuri Victorovich
5bc5c96287 New port: math/gemmlowp: Low-precision matrix multiplication library 2019-10-05 09:49:39 +00:00
Jan Beich
fbea4307e8 devel/google{test,mock}: update to 1.10.0
- Drop static library
- Drop gtest-config and gmock-config
- Drop GTEST_LIB_CHECK autoconf macro
- Drop gmock_doctory.py as it's too old
- Expose tests via option

Changes:	https://github.com/google/googletest/compare/release-1.8.1...release-1.10.0
Reported by:	GitHub (watch releases)
PR:		239654
Differential Revision:	https://reviews.freebsd.org/D19430
2019-10-05 00:42:20 +00:00
Piotr Kubaj
a4e6755318 math/tmv: fix build on GCC architectures
Instead of depending on libomp, set USES=compiler:openmp.

Also don't link to libomp.

PR:		241050
Approved by:	linimon (mentor), yuri (maintainer)
2019-10-04 20:40:33 +00:00
Jan Beich
4bbb4133b2 devel/icu: update to 65.1
Changes:	http://site.icu-project.org/download/65
ABI:		https://abi-laboratory.pro/tracker/timeline/icu4c/
2019-10-03 20:35:29 +00:00
Kurt Jaeger
019727ec20 New port: math/mcsim
GNU MCSim is a simulation package, written in C, which allows you to:

   * design and run your own statistical or simulation models
   * perform Monte Carlo stochastic simulations
   * do Bayesian inference through Markov Chain Monte Carlo simulations
   * formally optimize experimental designs

WWW: https://www.gnu.org/software/mcsim/

PR:		240966
Submitted by:	Alessandro Sagratini <ale_sagra@hotmail.com>
2019-10-03 08:52:08 +00:00
Piotr Kubaj
2dfe52f39c math/xfce4-calculator-plugin: fix build on GCC architectures
Use C11 compiler:
In file included from /usr/local/include/xfce4/libxfce4util/libxfce4util.h:33,
                 from calculator.c:29:
/usr/local/include/xfce4/libxfce4util/xfce-kiosk.h:37: error: redefinition of typedef 'XfceKiosk'
/usr/local/include/xfce4/libxfce4util/xfce-kiosk.h:35: error: previous declaration of 'XfceKiosk' was heremv -f .deps/libcalculator_la-lexer.Tpo .deps/libcalculator_la-lexer.Plo

Approved by:	mentors (implicit approval)
2019-10-02 14:00:52 +00:00
Koichiro Iwao
7453e8c5be math/singular: Assign back to pool
due to email bounces and maintainer quit maintaining the port.

Reported by:	maintainer's supervisor (via Facebook)
2019-10-02 10:30:22 +00:00
Niclas Zeising
8ee09bfa62 math/ngraph: Fix build
Fix build by not trying to link against libXp (since it is deprecated).
Add missing xorg dependencies.
remove broken

MFH:		2019Q4
2019-10-02 08:40:24 +00:00
Antoine Brodin
e53ee25577 Mark BROKEN: fails to link
cc -o ngraph x11/main.o x11/x11.a src/kern.a  -L/usr/local/lib -lXm -lm -L/usr/local/lib -lXext -lXt -lXp -lX11 -lICE -lSM
/usr/bin/ld: cannot find -lXp

Reported by:	pkg-fallout
MFH:		2019Q4
2019-10-02 06:59:38 +00:00
Tobias Kortkamp
959afff1bb math/superlu: Spell opt_CMAKE_ON correctly
Unbreak ATLAS, GOTOBLAS, OPENBLAS, REFERENCE options.
2019-10-02 05:03:22 +00:00
TAKATSU Tomonari
f5d285ce70 - Update to 2.7-2 2019-10-02 04:46:04 +00:00
Tobias C. Berner
c45de9579f Qt5 update to 5.13.0
For new features, check: https://wiki.qt.io/New_Features_in_Qt_5.13

Thanks to adridg who helped to fix a lot of packages.

Exp-run by:	antoine
PR:		238782
2019-10-01 04:13:31 +00:00
Jan Beich
a7a310c79a math/suitesparse: simplify
- Allow using Clang again (base libomp.so or OpenMP disabled)
- Respect C++ library if using GCC (must be libc++ on Clang architectures)
- Respect CFLAGS/CXXFLAGS in subdirectories using CMake
- Respect BLAS/LAPACK choice (actually use OpenBLAS)
- Enable Intel threading building blocks support
- Switch to vendor build/install targets
- Adjust plist for new items (GraphBLAS, Mongoose, DOCS)
- Skip running demos during build

PR:		240899
Tested by:	pkubaj
Approved by:	fortran (thierry)
MFH:		2019Q4
2019-09-30 08:17:43 +00:00
Sunpoet Po-Chuan Hsieh
4d6d4c7410 Update to 3.2.0
Changes:	https://bitbucket.org/rpy2/rpy2/src/default/NEWS
		https://github.com/rpy2/rpy2/blob/master/NEWS
2019-09-30 04:17:46 +00:00
TAKATSU Tomonari
3cd919b7da - Update to 0.3.2 2019-09-29 08:20:03 +00:00
TAKATSU Tomonari
fdf6f598aa - Update to 1.1-3 2019-09-29 07:43:31 +00:00
Stephen Montgomery-Smith
086093cf18 - Update devel/gdcm to 3.0.2.
- Bump portrevision of dependent ports.
2019-09-28 23:24:33 +00:00
Stephen Montgomery-Smith
7ca057742d - Update to 0.1.4. 2019-09-28 23:22:43 +00:00
TAKATSU Tomonari
974358e1e7 - Update to 0.8-0 2019-09-28 22:04:38 +00:00
Jan Beich
4129c8b61d math/ceres-solver: builds fine with python3.6
https://github.com/ceres-solver/ceres-solver/commit/2ad14b7a616c
2019-09-28 17:18:52 +00:00
Yuri Victorovich
f9321ddbdc math/py-spot: Update 2.8.1 -> 2.8.2
Reported by:	portscout
2019-09-28 15:09:57 +00:00
Yuri Victorovich
f52689ade8 math/spot: Update 2.8.1 -> 2.8.2
Reported by:	portscout
2019-09-28 15:09:09 +00:00
Yuri Victorovich
5150114b10 math/py-onnx: Update 1.5.0 -> 1.6.0
Reported by:	portscout
2019-09-28 15:08:27 +00:00
Yuri Victorovich
de20fcfee6 math/onnx: Update 1.5.0 -> 1.6.0
Reported by:	portscout
2019-09-28 15:07:52 +00:00
TAKATSU Tomonari
143b11ced6 - Update to 0.1.7 2019-09-28 10:17:57 +00:00
Jan Beich
8c039a25be Drop verbose flag for CTest after r444324
ninja: error: unknown target 'ARGS=-V'
2019-09-27 17:25:50 +00:00
Jan Beich
2b7ccfab00 math/suitesparse: force rebuild after r512983
RUN_DEPENDS switched from devel/openmp to lang/gcc9.
2019-09-27 00:17:31 +00:00
TAKATSU Tomonari
a9e171f0c5 - Update to 0.9.700.2.0 2019-09-26 22:11:08 +00:00
TAKATSU Tomonari
94c1637ebe - Update to 2.1-0 2019-09-26 21:07:28 +00:00
Thierry Thomas
edb8eb45fd Revert to r512240.
Reported by:	jbeich
2019-09-26 20:19:25 +00:00
Steve Wills
a924cf8d59 math/py-pandas-datareader: update to 0.8.1
PR:		240829
Submitted by:	Shane <FreeBSD@ShaneWare.Biz> (maintainer)
2019-09-26 18:40:43 +00:00
Ganael LAPLANCHE
03166a4b36 Update devel/tbb to 2019.8 and bump dependent ports' revisions
Changelog: https://github.com/intel/tbb/blob/tbb_2019/CHANGES
2019-09-25 10:03:49 +00:00
Stephen Montgomery-Smith
d1fc3e11f4 - Update to 1.7.7. 2019-09-25 04:12:59 +00:00
TAKATSU Tomonari
52a95aca95 - Update to 0.2.1 2019-09-23 22:56:21 +00:00
Steve Wills
227b9448df math/pdal: Update to 2.0.1
PR:		240693
Submitted by:	Loïc Bartoletti <lbartoletti@tuxfamily.org> (maintainer)
2019-09-23 20:14:25 +00:00
Yuri Victorovich
6d9dab2ef3 math/exprtk: Update g20190717 -> g20190906 2019-09-22 18:51:06 +00:00
Thierry Thomas
732f79331e Explicitely depend on OMP. 2019-09-22 12:49:50 +00:00
Gleb Popov
3925a8a047 math/z3: Update to 4.8.6. 2019-09-21 20:32:14 +00:00
Mark Linimon
c31cd3919d Appease portlint. 2019-09-21 20:03:59 +00:00
Mark Linimon
5c92449277 Remove hardcoding from 2013 and replace it with the modern equivalent.
Found while working on powerpc64.

Tested on: amd64, powerpc64.

Approved by:	portmgr (tier-2 blanket)
2019-09-21 20:02:21 +00:00
Jan Beich
b03c67869c devel/openmp: update to 9.0.0
- Connect tests to the framework to help QA remaining patches
- Force rebuild all consumers after https://reviews.llvm.org/D59783

Changes:	http://llvm.org/viewvc/llvm-project/openmp/tags/RELEASE_900/final/?view=log
ABI:		https://abi-laboratory.pro/tracker/timeline/llvm_openmp/
2019-09-21 18:59:57 +00:00
Yuri Victorovich
ff33631d00 math/rumur: Update 2019.08.18 -> 2019.09.15
Reported by:	portscout
2019-09-21 17:58:47 +00:00
Yuri Victorovich
84803303bd math/py-gau2grid: Update 1.3.1 -> 2.0.1
Reported by:	portscout
2019-09-21 15:26:31 +00:00
Yuri Victorovich
4cf79d3a9c math/gau2grid: Update 1.3.1 -> 2.0.1
Reported by:	portscout
2019-09-21 15:25:58 +00:00
Jan Beich
3f1915711d Switch default devel/llvm* to 90
PR:		239682
Reviewed by:	tobik
Differential Revision:	https://reviews.freebsd.org/D21172
2019-09-20 19:58:36 +00:00
Torsten Zuehlsdorff
7aca2531e2 Welcome PHP 7.4 RC 1 in the ports-tree.
There are many greater changes including:
- New module ffi
- Remove interbase module
- Remove recode module
- Remove wddx module
- Many modules changes the build switches
- Many modules changes the config format, so patches needed to be recreated

Special thanks to tobik and ale for their support.

Reviewed by:	tobik, ale, joneum
Sponsored by:	PHP Update Service
Differential Revision:	https://reviews.freebsd.org/D21349
2019-09-20 12:21:11 +00:00
Thierry Thomas
3d27d6fc3e Re-enable parallel build.
Submitted by:	jkim
2019-09-20 07:19:07 +00:00
Thierry Thomas
421cc3859f Fix on -CURRENT.
PR:		240672
Reported by:	ohartmann (at) walstatt.org
2019-09-20 07:18:17 +00:00
Guido Falsi
e69e6941cc Welcome XFCE 4.14 to the FreeBSD ports tree
- This XFCE release uses almost exclusively gtk3, so the USES=xfce
  now defaults to gtk3
- Make x11-themes/gtk-xfce-engine an optional dependency(disabled
  by default), it only supports gtk2, so would leave miost of this
  XFCE version unthemed.
- Add Greybird as an optional and enabled dependency as a modern
  theme supporting both GTK versions and all other XFCE parts
- The xfce4-vala port is deprecated and removed. The VALA bindings
  are available in the library ports using the GIR and VAPI options
  (on by default)
- Fixed various missing library and portlint warnings (portmgr fixit
  blanket)
- Default Display Manager changed to lightdm (Thanks to woodsb02
  for help)
- Add x11/xfce4-screensaver as an optional dependency to the
  xfce4-goodies (enabled by default)
- Remove dependency on x11-fm/thunar-vfs and deprecate the port.
  It is EOL upstream and the functionality is included in thunar
  itself

Update:
- Added back sysutils/xfce4-places-plugin, updated to 1.8.1
- archivers/thunar-archive-plugin to 0.4.0
- audio/thunar-media-tags-plugin to 0.3.0
- audio/xfce4-mpc-plugin to 0.5.2
- audio/xfce4-pulseaudio-plugin to 0.4.2
- deskutils/xfce4-tumbler to 0.2.7
- devel/thunar-vcs-plugin to 0.2.0 [1]
- devel/xfce4-dev-tools to 4.14.0
- misc/xfce4-appfinder to 4.14.0
- misc/xfce4-weather-plugin to 0.10.0
- multimedia/xfce4-parole to 1.0.4
- sysutils/gigolo to 0.5.0
- sysutils/xfce4-battery-plugin to 1.1.3
- sysutils/xfce4-fsguard-plugin to 1.1.1
- sysutils/xfce4-netload-plugin to 1.3.2
- sysutils/xfce4-power-manage to 1.6.5
- sysutils/xfce4-settings 4.14.1
- sysutils/xfce4-systemload-plugin to 1.2.3
- sysutils/xfce4-wavelan-plugin to 0.6.1
- www/xfce4-smartbookmark-plugin to 0.5.1
- x11-clocks/xfce4-datetime-plugin to 0.8.0
- Added new xfce4-stopwatch-plugin, version 0.3.1
- x11-clocks/xfce4-timer-out-plugin to 1.0.3
- x11-fm/thunar to 1.8.9
- x11-wm/xfce4-desktop to 4.14.1
- x11-wm/xfce4-panel to 4.14.0
- x11-wm/xfce4-session to 4.14.0
- x11-wm/xfce4-wm to 4.14.0
- x11/libexo to 0.12.8
- x11/libxfce4menu to 4.14.1
- x11/libxfce4util to 4.14.0
- x11/xfce4-conf to 4.14.1
- x11/xfce4-dashboard to 0.7.5
- x11/xfce4-screensaver to 0.1.8
- x11/xfce4-screenshooter-plugin to 1.9.6
- x11/xfce4-verve-plugin to 2.0.0

Thanks to: Olivier Duchateau <duchateau.olivier@gmail.com>

PR:		240236
Exp-run by:	antoine
Tested by:	sbruno
Approved by:    sergey.dyatko@gmail.com (maintainer timeout via
		email), portmgr (fixit blanket, port breaks with
		new Thunar if not updated) [1]
Differential Revision:	https://reviews.freebsd.org/D21278
2019-09-19 23:46:33 +00:00
Joseph Mingrone
be67ffd1eb math/R: Fix dependency condition for devel/openmp
libomp is provided by
  - LLVM, which gets pulled in with FLANG
  - gcc

So, we *must* only depend on devel/openmp when
  - the OPENMP knob is on
  - FLANG is off (guaranteed to be off for all archs except amd64)
  - clang is the C compiler.

But, we cannot modify LIB_DEPENDS after CHOSEN_COMPILER_TYPE is defined, so
for now, limit the OPENMP knob for i386 and amd64 where clang is the
default compiler.

This will be moot after 12.1 when openmp will be in base.

PR:		240279
Reported by:	pkubaj
Reviewed by:	pkubaj
2019-09-19 19:55:44 +00:00
Piotr Kubaj
a513da3ae9 math/casadi: fix build on GCC architectures
Use C++11 compiler:
  Cannot enable C++11 features.

Use it also for math/ipopt to be able to link math/casadi against it.

Approved by:	mentors (implicit approval)
2019-09-19 19:43:47 +00:00
Thierry Thomas
ab2593d8b7 Upgrade to 2.3.0, in order to resurrect freefem++.
Switch to a fork hosted at GitHub:

This GitHub project is designed to provide a common maintained version of
arpackpp. It is derived from the orignial package (ARPACK++ Version 1.2. by
Gomes and Sorensen), which has not been actively maintained for many years.
Several updates have been included in this version (some of them were previously
hosted as patches at http://reuter.mit.edu/software/arpackpatch/ ). This GitHub
repository is designed to collect fixes and updates (e.g. to more recent or
future releases of the involved libraries).

PR:		240670
2019-09-19 18:33:14 +00:00
Dmitry Marakasov
ff16a27324 - Add WWW
Approved by:	portmgr blanket
2019-09-19 15:14:41 +00:00
Tobias Kortkamp
e85605d274 math/mumps4: Spell METIS4_DESC correctly 2019-09-19 12:42:44 +00:00
Tobias Kortkamp
99bce63f6d math/plplot: Drop nop and misspelled post-patch-QHULL2015 target
It should have been post-patch-QHULL2015-on and was broken in r433415
during conversion to options helpers.  However the patch does not
do anything useful anymore.  Finding the right qhull headers is
already handled automatically by cmake via HAS_LIBQHULL_INCLUDE.
2019-09-19 05:16:52 +00:00
Thierry Thomas
f07eb96a8f - Use SSL master_sites (1)
- Upgrade to 5.4.0 (Latest stable release) (2)

- Since I'm here make the pre-configure operations visible.

PR:		239080 (1)
Submitted by:	imagin8r (T) protonmail.com
2019-09-17 20:17:46 +00:00
Tobias Kortkamp
c8b9433fc5 Fix some misspelled or duplicated LICENSE_* 2019-09-17 19:21:45 +00:00
Dmitri Goutnik
b6bd0cf737 Change my maintainer email
Approved by:	tz (mentor), portmgr (adamw)
Differential Revision:	https://reviews.freebsd.org/D21677
2019-09-16 20:55:08 +00:00
Piotr Kubaj
a1928c54e8 math/py-pystan: fix build with GCC architectures
Requires C++14:
cc1plus: error: unrecognized command line option "-std=c++1y"

Approved by:    mentors (implicit approval)
2019-09-16 08:40:06 +00:00
Antoine Brodin
637b3d75f3 Deprecate a few ports 2019-09-15 17:28:08 +00:00
Jan Beich
e5688543b0 Drop C++11 workaround for GCC < 6 after r449590
lang/gcc5 will expire in ~1 month. If someone still uses lang/gcc48
they should backport C++11 fix instead. QA on GCC architecuters is
currently limited to powerpc64 which uses GCC_DEFAULT.

PR:		193528
2019-09-14 22:01:13 +00:00
Antoine Brodin
50f9b598f0 Mark BROKEN on i386 with lld
MFH:		2019Q3
2019-09-14 16:20:30 +00:00
Antoine Brodin
6c579d9ce8 Mark BROKEN on i386 with lld
MFH:		2019Q3
2019-09-14 12:22:21 +00:00
Steve Wills
e41ba69358 math/libnormaliz: Update to 3.8.0
PR:		240446
Submitted by:	Lorenzo Salvadore <phascolarctos@protonmail.ch> (maintainer)
2019-09-13 14:25:48 +00:00
Sunpoet Po-Chuan Hsieh
8487b5879d Update to 1.16.5
Changes:	https://github.com/numpy/numpy/releases
PR:		240424
Exp-run by:	antoine
2019-09-10 17:38:06 +00:00
Antoine Brodin
5f7a5d7445 Revert r511603, removal of py27 flavor was untested
Reported by:	pkg-fallout
With hat:	portmgr
2019-09-10 05:49:37 +00:00
Kurt Jaeger
26fccee2d7 math/wxmaxima: upgrade 19.08.1 -> 19.09.0
PR:		240415
Submitted by:	Lorenzo Salvadore <phascolarctos@protonmail.ch> (maintainer)
Relnotes:	https://github.com/wxMaxima-developers/wxmaxima/releases
2019-09-10 05:21:59 +00:00
Piotr Kubaj
7942b37f98 math/openblas: fix build on powerpc64 with clang, remove OPENMP option on powerpc64
On powerpc64 OpenMP is always used when USE_THREADS is defined (which we do unconditionally). This means that OPENMP option on powerpc64 doesn't have any effect and it should be removed.

Clang also has some problems when linking Fortran libraries with OpenMP, so use GCC for powerpc64.

PR:		240379
Approved by:	phd_kimberlite@yahoo.co.jp (maintainer), linimon (mentor)
2019-09-09 18:01:31 +00:00
Wen Heping
09bb9ed87c - Update to 0.25.1
- Update DEPENDS

PR:		240084
Submitted by:	john@saltant.com(maintainer)
2019-09-09 01:28:17 +00:00
Rene Ladan
1fbe2de683 Resurrect graphics/py-pyembree and math/py-yt now that graphics/embree is fixed.
PR:		240117 (related)
Submitted by:	FreeBSD@ShaneWare.Biz
2019-09-08 12:56:20 +00:00
TAKATSU Tomonari
223c1736f5 - Update to 8.9 2019-09-08 05:44:57 +00:00
TAKATSU Tomonari
b5eb275f47 - Update to 0.6-4 2019-09-08 05:44:07 +00:00
Thomas Zander
4394483e93 Update to upstream version 18.10.2
PR:		239952
Submitted by:	rhurlin@gwdg.de (maintainer)
2019-09-07 06:44:10 +00:00
Tobias C. Berner
6cfd7cf7ea KDE Applications: update to 19.08.1
September 05, 2019.
Today KDE released the first stability update for KDE Applications 19.08. This
release contains only bugfixes and translation updates, providing a safe and
pleasant update for everyone.

More than twenty recorded bugfixes include improvements to Kontact, Dolphin,
Kdenlive, Konsole, Step, among others.

Improvements include:
    * Several regressions in Konsole's tab handling have been fixed
    * Dolphin again starts correctly when in split-view mode
    * Deleting a soft body in the Step physics simulator no longer causes a crash

You can find the full list of changes here:
	https://kde.org/announcements/fulllog_applications-aether.php?version=19.08.1
2019-09-05 18:20:14 +00:00
Tobias C. Berner
970c23e3a8 math/rkward-kde: add missing includes
PR:		238782
2019-09-05 17:26:20 +00:00
Dan Langille
6751e2c7f6 Add ${WRKSRC} to LICENSE_FILE
Noticed by:	koobs
2019-09-05 13:49:58 +00:00
Rene Ladan
fc31075d85 Remove expired ports:
2019-09-04 devel/ace+tao-doc: Broken for more than 6 months
2019-09-04 devel/dfmt: Broken for more than 6 months
2019-09-04 devel/ignition-transport: Broken for more than 6 months
2019-09-04 devel/spin: Broken for more than 6 months
2019-09-04 editors/dexed: Depends on expiring devel/dfmt
2019-09-04 editors/p5-Padre: Depends on expiring x11-toolkits/p5-Wx
2019-09-04 emulators/qemu2: Latest 3.X branch is in ports tree
2019-09-04 games/asc: Broken for more than 6 months
2019-09-04 games/slade: Broken for more than 6 months
2019-09-04 graphics/gimp-wavelet-decompose-plugin: Broken for more than 6 months
2019-09-04 graphics/py-pyembree: Depends on expiring graphics/embree
2019-09-04 irc/irssi-otr: Broken for more than 6 months
2019-09-04 mail/p5-Mail-ClamAV: Broken for more than 6 months
2019-09-04 mail/qmail-ldap: Broken for more than 6 months
2019-09-04 math/fityk: Broken for more than 6 months
2019-09-04 math/octave-forge-econometrics: Broken for more than 6 months
2019-09-04 math/octave-forge-fits: Broken for more than 6 months
2019-09-04 math/octave-forge-linear-algebra: Broken for more than 6 months
2019-09-04 math/octave-forge-mechanics: Broken for more than 6 months
2019-09-04 math/octave-forge-parallel: Broken for more than 6 months
2019-09-04 math/octave-forge-strings: Broken for more than 6 months
2019-09-04 math/octave-forge-tisean: Broken for more than 6 months
2019-09-04 math/octave-forge-video: Broken for more than 6 months
2019-09-04 math/py-yt: Depends on expiring graphics/embree
2019-09-04 misc/gnustep-examples: Broken for more than 6 months
2019-09-04 net/turses: Depends on expiring net/py-tweepy
2019-09-04 security/clamcour: Broken for more than 6 months
2019-09-04 security/honeybadger: Broken for more than 6 months
2019-09-04 sysutils/freefilesync: Broken for more than 6 months
2019-09-04 sysutils/log-courier: Broken for more than 6 months
2019-09-04 textproc/py-orange3-text: Broken for more than 6 months
2019-09-05 www/feedjack: Upstream gone
2019-09-04 www/havp: Broken for more than 6 months
2019-07-31 www/rubygem-webpack-rails-rails5: Upstream no longer maintained, use devel/rubygem-webpacker-rails* instead
2019-09-04 x11-toolkits/p5-Wx-GLCanvas: Depends on expiring x11-toolkits/p5-Wx
2019-09-04 x11-toolkits/p5-Wx-Perl-ProcessStream: Depends on expiring x11-toolkits/p5-Wx
2019-09-04 x11-wm/golem: Broken for more than 6 months
2019-09-04 x11-wm/pawm: Broken for more than 6 months
2019-09-05 11:40:24 +00:00
Yuri Victorovich
7d1abc8c3f math/exprtk: Update g20190630 -> g20190717 2019-09-05 01:16:42 +00:00
Mateusz Piotrowski
2f2d158608 math/bcal: Honor CFLAGS
Set CFLAGS_OPTIMIZATION to nothing in order to override default
optimizations.
2019-09-04 14:53:15 +00:00
Dan Langille
b9d79dc599 Add missing =
Noticed by:	FreshPorts
2019-09-04 11:20:06 +00:00
Dan Langille
5a5c83dc48 * add python as a secondary virtual category
* set LICENSE_FILE
2019-09-04 11:17:40 +00:00
Stephen Montgomery-Smith
0dff34ff7b - Update to 2.6.0. 2019-09-04 00:27:44 +00:00
Sunpoet Po-Chuan Hsieh
4c003cbb46 Update to 0.2.3
Changes:	https://github.com/facebookresearch/nevergrad/releases
		https://github.com/facebookresearch/nevergrad/blob/master/CHANGELOG.md
2019-09-03 19:09:17 +00:00
Dan Langille
954c5cb0b0 Add PyStan: The Python Interface to Stan
https://pystan.readthedocs.io/en/latest/

Submitted by:	Gilbert Morgan <gmm@tutanota.com> (via private email)
2019-09-03 16:02:44 +00:00
Wen Heping
11b7c1628c - Update to 0.19.3 2019-09-03 01:47:23 +00:00
Sunpoet Po-Chuan Hsieh
c899e6fdca Update to 3.1.0
Changes:	https://bitbucket.org/rpy2/rpy2/src/default/NEWS
		https://github.com/rpy2/rpy2/blob/master/NEWS
2019-09-02 22:43:39 +00:00
Stephen Montgomery-Smith
c9f0a87dfc - Update to 1.3.1. 2019-09-02 17:44:46 +00:00
Yuri Victorovich
3166ea0efc math/blasfeo: Change to the shared library.
Bump math/casadi
2019-09-02 16:28:20 +00:00
Steve Wills
a9f92a092b math/py-keras: Update to 2.2.5
PR:		240111
Submitted by:	Neel Chauhan <neel@neelc.org> (maintainer)
2019-09-02 13:52:08 +00:00
Yuri Victorovich
8cd1b55f0a math/vampire: Hook to the build 2019-09-02 06:02:54 +00:00
Yuri Victorovich
74ca83a755 math/g2o: Update 20170730_git-87-gbbe3c2b -> 20170730_git-239-ge7b5b7a
Reported by:	adridg (reported plist issues in the old version)
2019-09-02 05:52:42 +00:00
Antoine Brodin
f5ed1d8611 Remove unhooked port 2019-09-02 05:39:49 +00:00
Cy Schubert
0def901fc2 Bump PORTREVISION that should have happened in r510754 but didn't due
to numerous git svn dcommit conflicts and subsequent git rebase issues.

git svn conflicts are ugly.
2019-09-02 05:09:44 +00:00
Cy Schubert
4b8362f61d Fix after gets(3) retirement using gets_s(3).
Bump PORTREVISION as this is a security issue too.

PR:		222796
MFH:		2019Q3
2019-09-02 05:00:43 +00:00
Mark Linimon
d5ddd11e69 Fix build on GCC-based systems by adding compiler:c++11-lang to
USES:

  cc1plus: error: unrecognized command line option "-Wno-terminate"
  cc1plus: error: unrecognized command line option "-std=c++11"
2019-09-01 21:38:30 +00:00
Yuri Victorovich
8fd7c5d92f math/py-osqp: Update 0.6.0 -> 0.6.1
Reported by:	portscout
2019-09-01 21:06:40 +00:00
Li-Wen Hsu
2263df9a49 Add a patch to remove use of gets(3)
PR:		238691
Submitted by:	Walter Schwarzenfeld <w.schwarzenfeld at utanet.at>
Reported by:	emaste
Sponsored by:	The FreeBSD Foundation
2019-09-01 17:28:00 +00:00
Li-Wen Hsu
9389991ddd Add a patch to remove use of gets(3)
PR:		238692
Submitted by:	rea
Reported by:	emaste
Sponsored by:	The FreeBSD Foundation
2019-09-01 16:46:18 +00:00
Rene Ladan
ef35eda3ef Remove expired ports:
2019-08-31 devel/pure-stldict: Depends on expiring devel/llvm35
2019-08-31 lang/dmd1: No longer supported upstream
2019-08-31 lang/gprolog: Abandonware upstream (more than five years), fails in various ways with remotely recent compilers
2019-08-31 math/pure-mpfr: Depends on expiring devel/llvm35
2019-08-31 math/pure-rational: Depends on expiring devel/llvm35
2019-08-31 net/pure-sockets: Depends on expiring devel/llvm35
2019-08-31 textproc/pure-csv: Depends on expiring devel/llvm35
2019-08-31 textproc/pure-xml: Depends on expiring devel/llvm35
2019-08-31 x11-toolkits/pure-tk: Depends on expiring devel/llvm35
2019-08-31 databases/pure-sql3: Depends on expiring devel/llvm35
2019-08-31 devel/pure-readline: Depends on expiring devel/llvm35
2019-08-31 devel/pure-stllib: Depends on expiring devel/llvm35
2019-09-01 15:40:04 +00:00
Yuri Victorovich
0118d5ad31 math/geogram: Remove the unused target 2019-09-01 06:34:42 +00:00
Yuri Victorovich
49b661108c math/geogram: Update 1.6.11 -> 1.7.1
Reported by:	repology
2019-09-01 06:08:25 +00:00
Yuri Victorovich
fc41fedfbf math/osqp: Update COMMENT and pkg-descr
Requested by:	Stephen Montgomery-Smith <stephen@missouri.edu>
2019-08-31 19:26:02 +00:00
Sunpoet Po-Chuan Hsieh
53b187218f Sort SUBDIRs 2019-08-31 08:30:30 +00:00
Yuri Victorovich
3fb3c100df math/py-osqp: Update 0.5.0 -> 0.6.0
Reported by:	portscout
2019-08-31 06:53:27 +00:00
Yuri Victorovich
6c2095d12b math/osqp: Update 0.5.0 -> 0.6.0
Reported by:	portscout
2019-08-31 06:15:07 +00:00
Stephen Montgomery-Smith
1193629be5 - Update to 0.1.7. 2019-08-30 17:45:08 +00:00
Stephen Montgomery-Smith
0acaada38e - Update to 1.5.0. 2019-08-30 17:42:54 +00:00
Yuri Victorovich
37a666afb9 New port: math/vampire: Automatic theorem prover 2019-08-29 05:30:57 +00:00
Yuri Victorovich
b51ee4380a math/ntl: Bump revision because math/barvinok is crashing in libntl.so
The user reported the crash in barvinok. Rebuilding ntl helps, which
suggests that it wasn't bumped when it was needed.

Submitted by:	Kostas Oikonomou <k.oikonomou@att.net>
2019-08-27 15:07:32 +00:00
Yuri Victorovich
33b2dacaa7 New port: math/tvm: Deep learning compiler stack for cpu, gpu and specialized accelerators 2019-08-27 07:48:54 +00:00
Yuri Victorovich
a02a0f4432 Move science/py-onnx -> math/py-onnx
math is a more appropriate category, but neural networks is really
an emerging field in itself and it probably deserves the category
of its own.
2019-08-27 04:08:33 +00:00
Pedro F. Giffuni
79b70ea70b math/mumps4: modernize the port.
- Make the blas naming more conistent with blaslapack (this doesn't use
  lapack though).
- Adopt more standard FFLAGs.
- Turn Metis4 into an option (was broken).

Approved by:	thierry (mentor)
2019-08-27 03:27:32 +00:00
Yuri Victorovich
7255365e97 New port: math/onnx: Open Neural Network eXchange 2019-08-27 03:24:31 +00:00
Mathieu Arnold
5edd3abe93 Unobfuscate.
With hat:	portmgr
2019-08-26 09:00:47 +00:00
Yuri Victorovich
19cd40bed2 math/osi: Update 0.108.4 -> 0.108.5
Reported by:	portscout
2019-08-25 19:11:27 +00:00
Yuri Victorovich
e0e96c6398 math/blasfeo: Specify TARGET in architecture-specific way, this fixes build on non-Intel architectures
Reported by:	fallout
2019-08-25 17:03:37 +00:00
Yuri Victorovich
71694e6836 New port: math/cppad: C++ Algorithmic Differentiation package 2019-08-25 07:18:44 +00:00
Yuri Victorovich
1f1528fdb8 math/casadi: Correct pkg-descr 2019-08-25 04:38:18 +00:00
Yuri Victorovich
e4ca7379db New port: math/casadi: Symbolic framework for numeric optimization 2019-08-25 04:19:02 +00:00
Yuri Victorovich
6b2e2f3e21 New port: math/symphony: Solver and development framework for mixed-integer linear programs 2019-08-25 01:24:42 +00:00
Yuri Victorovich
a0faa2f419 New port: math/couenne: Convex Over and Under Envelopes for NonliNear Estimation 2019-08-25 01:15:04 +00:00
Yuri Victorovich
2b4952ddfd New port: math/bonmin: Basic Open-source Nonlinear Mixed INteger programming 2019-08-25 01:00:02 +00:00
Yuri Victorovich
d2cbf0b853 New port: math/hpipm: High-performance interior-point-method QP solvers 2019-08-25 00:00:54 +00:00
Yuri Victorovich
ee740da1cc New port: math/blasfeo: Basic Linear Algebra Subroutines For Embedded Optimization 2019-08-24 23:41:05 +00:00
Piotr Kubaj
8966b85498 math/amath: fix build on powerpc* and mips*
The big-endian ifdef misses ||.

PR:		239298
Approved by:	cs@innolan.net (maintainer timeout), linimon (mentor)
2019-08-24 12:42:02 +00:00
Max Brazhnikov
695e0150b8 Chase graphics/batik update to 1.11:
- Add patch to math/scilab to fix build with new API
- Bump PORTREVISIONs
2019-08-22 16:51:35 +00:00
Yuri Victorovich
4db6786e0d math/mathgl: Update 2.4.2.1 -> 2.4.4 2019-08-22 06:36:45 +00:00
Max Brazhnikov
302f234bdc math/scilab: add patch to fix build with updated graphics/xmlgraphics-commons 2019-08-21 19:45:18 +00:00
Max Brazhnikov
5b4829585a math/jlatexmath:
- Update to 1.0.7
- Switch to the binary distribution since building from the sources
  requires maven
- Remove FOP option and install fop plugin unconditionally: jlatexmath
  is solely used by math/scilab only and it needs fop.
- Update WWW
2019-08-21 19:43:32 +00:00
Dmitry Marakasov
dd4328e5c1 - Fix whitespace
- Optionize NLS
2019-08-21 18:14:59 +00:00
Piotr Kubaj
bd264455e3 math/sleef: fix build on powerpc64
Altivec needs {} for vectors instead of ().
lib/libsleefgnuabi.so is not built on powerpc64.

PR:		239468
Approved by:	jmd (maintainer), mat (mentor)
Differential Revision:	https://reviews.freebsd.org/D21216
2019-08-19 23:33:39 +00:00
Kai Knoblich
b0f39bfa58 math/wxmaxima: Update to 19.08.1
Changelogs since 19.07.0:

https://github.com/wxMaxima-developers/wxmaxima/releases/tag/Version-19.08.1
https://github.com/wxMaxima-developers/wxmaxima/releases/tag/Version-19.08.0

PR:		239885
Submitted by:	Lorenzo Salvadore <phascolarctos@protonmail.ch> (maintainer)
MFH:		2019Q3
2019-08-19 20:08:47 +00:00
Jan Beich
befa71e0f3 devel/boost-*: update to 1.71.0
Changes:	http://www.boost.org/users/history/version_1_71_0.html
PR:		238827
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D20774
2019-08-19 15:35:27 +00:00
Yuri Victorovich
75bce37662 math/SoPlex: License permissions update
PR:		231230
Submitted by:	Lorenzo Salvadore <phascolarctos@protonmail.ch>
2019-08-19 08:32:07 +00:00
Yuri Victorovich
3373c0c0a1 math/rumur: Update 2019.07.21 -> 2019.08.18
Reported by:	portscout
2019-08-19 07:36:52 +00:00
Sunpoet Po-Chuan Hsieh
fd52be9036 Update to 2.7.0
Changes:	https://github.com/pydata/numexpr/releases
		https://github.com/pydata/numexpr/blob/master/RELEASE_NOTES.rst
2019-08-15 18:12:19 +00:00
Jose Alonso Cardenas Marquez
4b5930e48a - Add new fpc bootstrap (i386 and x86_64). It could need less COMPATX
dependencies in kernel
- Add patch file to solve some linking problem
- Remove LD_UNSAFE. Now it can be defined via LDPATH (/usr/bin/ld.bfd by
  default). fpc is not working with lld. We will use binutils-ports when
  ld.bfd is moved from base if lld not working on future version
  of fpc
- Bump PORTREVISION
2019-08-15 16:11:27 +00:00
Adriaan de Groot
fcf437462e Update KDE Applications to latest upstream release, 19.08
Release announcement
	https://kde.org/announcements/announce-applications-19.08.0.php

Thanks to tcberner for doing most of the prep-work.
2019-08-15 15:38:52 +00:00
Adriaan de Groot
0a7455c83c Update KDE Frameworks to latest upstream release, 5.61
Release notes at
	https://kde.org/announcements/kde-frameworks-5.61.0.php

Thanks to
	antoine@ for the exp-runs,
	tcberner@ for most of the prep-work,
	the Gentoo community for cherry-picking patches

There are a bunch of changes in (implicitly included) headers, which
broke existing KDE Applications builds; that's why there are a whole
bunch of "patch-gentoo-kf5-5.61-headers" patches (taken from Gentoo
packaging). Those will go away with the next KDE Applications release,

PR:		239777
Submitted by:	tcberner
2019-08-15 10:01:34 +00:00
Max Brazhnikov
6dbf576601 math/scilab:
- Add patch to fix build with updated graphics/jogamp-jogl
2019-08-14 22:35:35 +00:00
Yuri Victorovich
c7be8ce1f8 math/qd: Update 2.3.7 -> 2.3.22
PR:		230686
Approved by:	fortran (maintainer's timeout ~1 year)
2019-08-14 14:38:36 +00:00
Mathieu Arnold
558224994b onvert to UCL & cleanup pkg-message (categories l-m) 2019-08-13 22:29:42 +00:00
TAKATSU Tomonari
12b9cdbedf - Update to 5.51 2019-08-12 15:38:36 +00:00
Antoine Brodin
5d78546538 Revert r508261, it's even more BROKEN
Reported by:	pkg-fallout
2019-08-11 18:34:15 +00:00
Yuri Victorovich
5b4abae0c0 math/bitwise: Update 0.33 -> 0.40
Reported by:	portscout
2019-08-11 18:15:44 +00:00
Sunpoet Po-Chuan Hsieh
ff84ab93a6 Add NO_ARCH 2019-08-11 16:50:58 +00:00
Kai Knoblich
c4499fc72c math/libnormaliz: Update to 3.7.4
Changelog:

* Bugfix in face lattice computation
* nmz_config.h indicates optional packages

https://github.com/Normaliz/Normaliz/releases/tag/v3.7.4

PR:		239716
Submitted by:	Lorenzo Salvadore <phascolarctos@protonmail.ch> (maintainer)
MFH:		2019Q3
2019-08-10 14:55:36 +00:00
Mark Linimon
0e6114450e Appease portlint.
I have a tier-2-related patch in progress, and having portlint less
noisy will help me with testing.

Approved by:	"just fix it"
2019-08-09 12:47:54 +00:00
Kai Knoblich
8940ca2822 math/wxmaxima: Update to 19.07.0
Changelog:

* Many improvements and bugfixes in the LaTeX and HTML export function
* Many updated translations
* Resolved a freeze on autocompletion
* A sidebar that shows the contents of variables
* Simplified the recalculation logic in order to squash the remaining bugs
* Simplified the sync between input and output cells

https://github.com/wxMaxima-developers/wxmaxima/releases/tag/Version-19.07.0

PR:		239689
Submitted by:	Lorenzo Salvadore <phascolarctos@protonmail.ch> (maintainer)
MFH:		2019Q3
2019-08-09 07:40:55 +00:00
Yuri Victorovich
669b2d5c67 math/py-uncertainties: Update 3.1.1 -> 3.1.2
Reported by:	portscout
2019-08-09 06:35:34 +00:00
Kai Knoblich
288b7aa3d5 math/py-pandas-datareader: Update to 0.7.4
* Pet portlint by making the USES block separate while I'm here.

Changelog since 0.7.0:

* Restore Python 2.7 compatibility since the 0.7.x branch
* Fixed import of pandas.compat dependencies

https://github.com/pydata/pandas-datareader/compare/v0.7.0...v0.7.4

PR:		239591
Submitted by:	Shane <FreeBSD@ShaneWare.Biz> (maintainer)
MFH:		2019Q3
2019-08-08 22:38:43 +00:00
Antoine Brodin
4ff4d574f9 Cleanup LIB_DEPENDS 2019-08-07 16:49:18 +00:00
Fernando Apesteguía
b6e16dc398 math/emc2: pet portlint
* Move out of order variable
* Remake patches
2019-08-06 17:53:16 +00:00
Fernando Apesteguía
8a9986b914 math/cvc4: simplify post-patch
* Bump PORTREVISION
* Unbreak lang/maude and lang/solidity (broken in r508058 and r508059)

Reported by:	jbeich@
Reviewed by:	jbeich@
Differential Revision:	https://reviews.freebsd.org/D21170
2019-08-06 17:36:36 +00:00
Pedro F. Giffuni
f474b4a857 math/superlu_mt: update URLs.
Make fetchable again.
Cleanup distfiles while here.

Approved by:	thierry (mentor)
2019-08-06 16:16:50 +00:00
Jan Beich
325aed58cb multimedia/ffmpeg: update to 4.2
Changes:	https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.2:/Changelog
ABI:		https://abi-laboratory.pro/tracker/timeline/ffmpeg/
2019-08-05 23:06:50 +00:00
Thierry Thomas
bbe1798290 Upgrade to v2.17 to make fetchable again. 2019-08-05 20:42:50 +00:00
Fernando Apesteguía
ea86fd146c math/cvc4: Fix headers
Fix headers so other programs can include them safely.

This unbreaks lang/maude and lang/solidity

PR:	238376
Reported by:	jbeich@
2019-08-05 16:59:25 +00:00
Yuri Victorovich
e4d8e044c0 math/lybniz: Update 1.3.2 -> 3.0.4-2
Take maintainership.
2019-08-05 06:49:45 +00:00
Antoine Brodin
b7012a13d8 Mark BROKEN: unfetchable 2019-08-04 21:08:36 +00:00
Yuri Victorovich
2439819ae3 devel/double-conversion: Update 3.0.0 -> 3.1.5-11
Maintainer reset due to the extended timeout, as per policy.
Take maintainership.

7 ports are bumped.

PR:		239367
Approved by:	waitman@waitman.net (maintainer's timeout; ~6months on a PR#235789 for the same port)
2019-08-04 17:15:40 +00:00
Antoine Brodin
b16de4c294 Deprecate ports broken for more than 6 months 2019-08-04 09:07:47 +00:00
TAKATSU Tomonari
a478a74b84 - Update to 0.7-7 2019-08-04 08:42:18 +00:00
TAKATSU Tomonari
4ead69dc92 - Update to 5.42.1 2019-08-04 06:50:58 +00:00
TAKATSU Tomonari
bd61e15d6b - Update to 1.6.6 2019-08-04 06:25:36 +00:00
TAKATSU Tomonari
f7a93189dc - Update to 8.8 2019-08-04 06:07:49 +00:00
TAKATSU Tomonari
d52e39edce - Update to 0.1-23 2019-08-04 04:58:14 +00:00
Sunpoet Po-Chuan Hsieh
a9a4731ce9 Use PYNUMPY 2019-08-03 20:55:54 +00:00
Sunpoet Po-Chuan Hsieh
6f3ed7dc79 Use PYNUMPY 2019-08-03 20:55:49 +00:00
Sunpoet Po-Chuan Hsieh
ed808d97b3 Use PYNUMPY 2019-08-03 20:55:45 +00:00
Sunpoet Po-Chuan Hsieh
6f9e2ca203 Use PYNUMPY 2019-08-03 20:55:40 +00:00
Yuri Victorovich
e8d740f485 math/py-spot: Update 2.7.5 -> 2.8.1
Reported by:	portscout
2019-08-03 20:29:13 +00:00
Yuri Victorovich
c30dec4222 math/spot: Update 2.7.5 -> 2.8.1
Reported by:	portscout
2019-08-03 20:27:52 +00:00
Kirill Ponomarev
e40399e6fe Bump PORTREVISION on *-sbcl ports after lang/sbcl upgrade. 2019-08-02 08:37:56 +00:00
Piotr Kubaj
8e3c89167c math/g2o: fix build on non-x86 architectures
This port seems to enable all SSE* CPU features even outside of x86 platforms. Disable that to fix build.

Also add USES=compiler:c++11-lang, the port needs C++11 and add USES=gl.

PR:		238895
Approved by:	yuri (maintainer timeout), linimon (mentor)
Differential Revision:	https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=238895
2019-08-01 18:56:20 +00:00
Sunpoet Po-Chuan Hsieh
a0cd35f41a Update to 0.14.0
Changes:	https://github.com/openai/gym/blob/master/README.rst#whats-new
2019-08-01 16:17:12 +00:00
Fernando Apesteguía
549b27dafd math/cvc4: update to 1.7
ChangeLog:

https://github.com/CVC4/CVC4/releases/tag/1.7

* New Features:
    Proofs:
        Support for bit-vector proofs with eager bitblasting
    Strings:
        Support for str.replaceall operator.
        New option --re-elim
    SyGuS:
        Support for abduction (--sygus-abduct)

* Improvements:
    Strings:
        Significantly better performance

* Changes:
    API change: Expr::iffExpr() is renamed to Expr::eqExpr()
    Compiling the language bindings now requires SWIG 3 instead of SWIG 2.
    The CVC3 compatibility layer has been removed.
    The build system now uses CMake instead of Autotools
2019-08-01 15:20:28 +00:00
Gleb Popov
693b38be2e math/stp: Update WWW in pkg-descr. 2019-08-01 09:52:08 +00:00
Gleb Popov
46f7fc3246 math/xgraph: Apply patches to fix crashes.
PR:		205796
2019-07-31 19:58:32 +00:00
Max Brazhnikov
1a7f22d5e6 math/matio:
- Update to 1.5.17
- Sort variables in accordance with the Ports Makefile style
2019-07-31 13:58:25 +00:00
Yuri Victorovich
9ffc774d34 math/py-chaospy: Update 3.0.5 -> 3.0.6
Reported by:	portscout
2019-07-31 05:44:21 +00:00
Yuri Victorovich
9bd382fd63 math/mkl-dnn: Update 1.0 -> 1.0.1
Reported by:	portscout
2019-07-31 05:41:30 +00:00
Yuri Victorovich
f9454a0526 math/mandelbulber2: Update 2.18-1 -> 2.19
Reported by:	portscout
2019-07-31 05:23:21 +00:00
Piotr Kubaj
2e85347e59 math/openblas: fix build on powerpc64 with TARGET=PPC970 and switch to PPC970
This patch fixes build for PPC970 target. Since most people that run FreeBSD on powerpc64 use PowerPC 970 CPU's, switch to it by default and add non-default option to optimize for POWER6 (optimizing for newer POWER doesn't work on BE).

Bump PORTREVISION because of package change.

PR:		238868
Approved by:	phd_kimberlite@yahoo.co.jp (maintainer), linimon (mentor)
Differential Revision:	https://reviews.freebsd.org/D21010
2019-07-30 12:11:21 +00:00
Yuri Victorovich
20e16bb4cd math/py-z3-solver: Broken on i386, workaround suggested by the error didn't help
Reported to the upstream.

Reported by:	fallout
2019-07-28 18:29:13 +00:00
Yuri Victorovich
3ed70e56a1 math/openmesh: Update 7.1 -> 8.0 2019-07-28 03:16:31 +00:00
Johannes M Dieterich
6958521b62 math/blis: update to release 0.6.0
Major improvements include faster dgemms with small matrix configurations.
2019-07-27 20:26:57 +00:00
Sunpoet Po-Chuan Hsieh
5edb3f8484 Update to 3.47
- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
2019-07-27 11:53:22 +00:00
Yuri Victorovich
860c545412 math/py-uncertainties: Update 3.0.3 -> 3.1.1
Reported by:	repology
2019-07-27 06:47:10 +00:00
Gerald Pfeifer
ea8c8ec7da Bump PORTREVISION for ports depending on the canonical version of GCC
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
2019-07-26 20:46:53 +00:00
Dmitry Marakasov
8e3198e952 - Add LICENSE
- Update WWW
2019-07-26 09:02:20 +00:00
Yuri Victorovich
7d3af140cf math/bitwise: Update 0.32 -> 0.33 2019-07-23 04:16:12 +00:00