aboutsummaryrefslogtreecommitdiffstats
path: root/math
Commit message (Collapse)AuthorAgeFilesLines
* math/moo is not jobs safe (flex generation)marino2016-12-101-0/+2
|
* - Belated portrevision bump, which got lost because of a collision betweenstephen2016-12-091-1/+1
| | | | r428057 and r428116.
* Update devel/cmake* to 3.7.1 [1]tcberner2016-12-091-0/+119
| | | | | | | | | | | | | | | Due to an upstream commit [2] we need now to pass CMAKE_INSTALL_MANDIR:PATH="share/man" in the devel/llvm-* ports, and fix the plist of net/remmina. Further add an upstream patch to math/plplot to fix the build with 3.7.1. [1] https://cmake.org/cmake/help/v3.7/release/3.7.html [2] https://github.com/kitware/cmake/commit/956054 PR: 214975 Approved by: rakuco (mentor) Exp-run by: antoine
* - Update to 4.5.0wen2016-12-094-104/+50
| | | | | | PR: 215126 Submitted by: itbot@list.ru Approved by: 6yearold@gmail.com(maintainer)
* Remove libintl.so.9 compatibility link that was added in r374303 totijl2016-12-096-5/+6
| | | | | prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since.
* Remove libtiff.so.4 compatibility links that were added in r374303 totijl2016-12-093-3/+3
| | | | | prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since.
* Remove libogg.so.8, libvorbis.so.4 and libvorbisfile.so.6 compatibilitytijl2016-12-081-1/+1
| | | | | links that were added in r374303 to prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since.
* qhull:stephen2016-12-088-50/+98
| | | | | | | | | | | - Update to 2015.2. - Install docs in DOCSDIR. - Add a workaround patch for 9.x base compiler. plplot: - Accomodate changes to qhull, including port revision bump. PR: ports/215078 Submitted by: John Hein <z7dr6ut7gs@snkmail.com>
* Fix up math/blas's PORTREVISION going backwards, broken in r428057.mandree2016-12-081-1/+1
| | | | | PR: 214965 Approved by: portmgr ('just fix it' blanket)
* - Update to 1.07sunpoet2016-12-082-4/+4
| | | | Changes: http://search.cpan.org/dist/Math-MPC/CHANGES
* Bump PORTREVISIONS for ports depending on the canonical version of GCC andgerald2016-12-07145-101/+145
| | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some circumstances such as versions of FreeBSD or platforms), part II. The first part covered ports with USE_GCC=yes, USE_GCC=any, or one of gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang, c++11-lang, c++0x, c11 requested via USES=compiler. This adds ports with USES=fortran and ports using Mk/bsd.octave.mk which in turn has USES=fortran. PR: 214965 Reported by: thierry
* math/ceres-solver: update to 1.12.0jbeich2016-12-072-5/+6
| | | | Changes: https://github.com/ceres-solver/ceres-solver/compare/1.12.0rc4...1.12.0
* - Update to 1.3002sunpoet2016-12-062-4/+4
| | | | Changes: http://search.cpan.org/dist/Math-BigInt-Pari/CHANGES
* - Update to 0.6-1tota2016-12-062-5/+8
| | | | - Add "compiles" argument to USES=cran
* - Update to 3.31.5wen2016-12-062-4/+4
|
* - Update to 0.45sunpoet2016-12-052-5/+5
| | | | Changes: http://search.cpan.org/dist/bignum/CHANGES
* - Update to 1.6002sunpoet2016-12-052-4/+4
| | | | Changes: http://search.cpan.org/dist/Math-BigInt-GMP/CHANGES
* - Update to 0.5003sunpoet2016-12-052-4/+4
| | | | Changes: http://search.cpan.org/dist/Math-BigInt-FastCalc/CHANGES
* - Update to 1.74tota2016-12-042-5/+5
| | | | - Add "compiles" argument to USES=cran
* - Update to 1.3-8tota2016-12-032-4/+4
|
* - Update to 0.7.500.0.0tota2016-12-032-4/+4
|
* Do not use post-stage. Use post-install instead.mat2016-12-021-1/+1
| | | | | | | | | | | | The only reason to use post-stage is because the port needs to do "things" at a later time, like some plist manipulation. While there, fold post-install in do-install targets when they are defined. PR: 214780 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight
* http://github.com redirects to https://github.com, spare everyone a redirect.mat2016-12-0212-12/+12
| | | | Sponsored by: Absolight
* - Update to 1.06sunpoet2016-12-022-5/+5
| | | | | | - Use USES=localbase Changes: http://search.cpan.org/dist/Math-MPC/CHANGES
* - Another attempt to get port to build on FreeBSD <=9.stephen2016-11-301-0/+18
| | | | | - No portrevision bump, because I don't believe this change will effect the final result on other OS versions.
* Fix build issue when the LTO option is enabled, do not registerjrm2016-11-302-34/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | ${PREFIX}/lib/R/lib with ldconfig, and fix typo. GCC 4.9 now generates slim object files which only contain intermediate language representation for LTO. This means, either -ffat-lto-objects must be used to create files which also contain object code or gcc-ar/gcc-ranlib must be used to create static libraries suitable for LTO processing. This patch sets AR/RANLIB to gcc-ar/gcc-ranlib. The libraries under ${PREFIX}/lib/R/lib are not intended (by upstream) to be registered with ldconfig, but are opened by dlopen(3). This means pkg will not register shared library dependencies, so we will have to adjust and bump ports as necessary. When necessary, unfortunately, is unclear based on how things work upstream. Fix typo: OPENMP_USE=compiler:openmp should have been OPENMP_USES=compiler:openmp. Bump PORTREVISION. PR: 214785 214666 Reported by: taozhenext@gmail.com (214785), dbn (214666) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8650
* Stop exporting QT_BINDIR and QT_LIBDIR to PLIST_SUB.tcberner2016-11-291-1/+1
| | | | | | | | | | | | As at the moment QT_BINDIR and QT_LIBDIR are 'bin' respectively 'lib' depending on the Qt version these subs ended up at many wrong places in plists. So only export it if QT_DIST is set. PR: 210227 Reviewed by: mat, rakuco Approved by: portmgr (mat), rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D8378
* - A better patch to fix the problem purportedly solved in r427058.stephen2016-11-282-9/+5
| | | | | | - Bump portrevision. Submitted by: Oliver Heimlich <oheim@posteo.de>
* - Update to 0.6.22wen2016-11-282-4/+4
|
* - Update to 1.3001sunpoet2016-11-262-5/+5
| | | | Changes: http://search.cpan.org/dist/Math-BigInt-Pari/CHANGES
* - Update to 1.6001sunpoet2016-11-262-5/+5
| | | | Changes: http://search.cpan.org/dist/Math-BigInt-GMP/CHANGES
* - Update to 0.5002sunpoet2016-11-262-5/+5
| | | | Changes: http://search.cpan.org/dist/Math-BigInt-FastCalc/CHANGES
* - Update to 1.999801sunpoet2016-11-262-4/+4
| | | | | Changes: http://search.cpan.org/dist/Math-BigInt/CHANGES With hat: perl
* Fixup USE_GITHUB usage.mat2016-11-264-11/+7
| | | | | | | It already sets DISTNAME to a very nice unique name, do not set it yourself. Sponsored by: Absolight
* - Add LICENSE (no commercial distribution allowed)amdmi32016-11-262-108/+111
| | | | | | | - Switch to USES=localbase - Switch to options helpers - Cosmetic fixes - Switch to new test framework
* - Update to 2.0.0.stephen2016-11-262-11/+16
|
* - Fix library version which should be .2 (as on Linux), not .4martymac2016-11-251-1/+1
| | | | | | | - Bump dependent ports' PORTREVISION PR: 214777 Submitted by: yuri@rawbw.com
* - Update to 0.6.20wen2016-11-252-3/+4
|
* - Patch in hope that mpfr_to_string_d.cc will build properly on FreeBSD <= 9.stephen2016-11-252-0/+16
| | | | | | - Bump port revision (because binaries will also differ on other builds.) Reported by: http://beefy2.nyi.freebsd.org/data/93amd64-default/426986/logs/octave-forge-interval-2.0.0.log
* math/ceres-solver: update to 1.12.0.r4jbeich2016-11-233-6/+5
| | | | Changes: https://github.com/ceres-solver/ceres-solver/compare/c5c6f55...1.12.0rc4
* devel/boost-*: update to 1.62.0jbeich2016-11-2318-9/+18
| | | | | | | | | | | | - Enable `long double` C99 math usage - Switch 9.x back to building with GCC Changes: http://www.boost.org/users/history/ PR: 199601 Submitted by: Chen Xu, bapt, amdmi3, truckman (based on) Reviewed by: rakuco (kde) (earlier version) Exp-run by: antoine (3 tries), truckman (consumers only, earlier versions) Approved by: bapt (office)
* math/py-matplotlib: really depend on python2.7 and not on the metaportpi2016-11-231-1/+2
| | | | | PR: 214600 Submitted by: koobs
* math/py-matplotlib: update 1.5.0 -> 1.5.3pi2016-11-232-5/+8
| | | | | | | | | | | - MASTER_SITE sourceforge seems to have been discontinued, it doesn't have the latest version any more. - Additionally, 1.5.3 version doesn't build with python-3.X because 'import gtk' which the build tries fails in python3. Therefore, python:2. PR: 214600 Submitted by: Yuri Victorovich <yuri@rawbw.com> Approved by: mainland@apeiron.net (maintainer)
* In several dozen ports, use single space for WWW: line in pkg-descr, anddanfe2016-11-221-3/+3
| | | | reformat port description text in cases when it was notoriously broken.
* - Update to 2.0.0.stephen2016-11-222-4/+4
|
* - Update to 0.5001sunpoet2016-11-222-4/+4
| | | | Changes: http://search.cpan.org/dist/Math-BigInt-FastCalc/CHANGES
* - Update to 0.5.0.stephen2016-11-202-3/+4
|
* - Update to 2.4.5.stephen2016-11-202-4/+4
|
* Bump PORTREVISIONS for ports depending on the canonical version of GCC andgerald2016-11-2023-12/+23
| | | | | | | | | lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some circumstances such as versions of FreeBSD or platforms). In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang, c++11-lang, c++0x, c11 requested via USES=compiler.
* math/reduce: Set CPPFLAGS for ports-ncursesmarino2016-11-201-0/+1
| | | | Approved by: ncurses blanket
* math/reduce: Fix fetchingmarino2016-11-201-1/+3
| | | | | | The distfile was archived at Sourceforge. It is at least 5 releases behind. It's unclear how much longer this old distfile will be hosted, so it would be a good idea to update math/reduce soon.
* devel/icu: update to 58.1jbeich2016-11-201-1/+1
| | | | | | | Changes: http://site.icu-project.org/download/58 PR: 214384 Exp-run by: antoine Approved by: office (bapt)
* comms/tlf, math/topaz, devel/devtodo: Document ncurses requirementmarino2016-11-201-1/+1
| | | | Approved by: ncurses blanket
* - Update to 0.44sunpoet2016-11-202-4/+4
| | | | Changes: http://search.cpan.org/dist/bignum/CHANGES
* - Update to 3.34sunpoet2016-11-202-6/+5
| | | | | | - Use USES=localbase Changes: http://search.cpan.org/dist/Math-MPFR/CHANGES
* - Update to 2.13sunpoet2016-11-202-7/+6
| | | | | | | - Update LICENSE - Use USES=localbase Changes: http://search.cpan.org/dist/Math-GMP/Changes
* - Update to 1.3000sunpoet2016-11-202-4/+5
| | | | Changes: http://search.cpan.org/dist/Math-BigInt-Pari/CHANGES
* - Update to 1.6000sunpoet2016-11-202-12/+7
| | | | | | - Use USES=localbase Changes: http://search.cpan.org/dist/Math-BigInt-GMP/CHANGES
* - Update to 0.5000sunpoet2016-11-202-6/+5
| | | | | | - Remove PORTSCOUT Changes: http://search.cpan.org/dist/Math-BigInt-FastCalc/CHANGES
* - Update to 1.999800sunpoet2016-11-203-3/+6
| | | | | Changes: http://search.cpan.org/dist/Math-BigInt/CHANGES With hat: perl
* - Update to 2.6.1sunpoet2016-11-202-4/+4
| | | | Changes: https://github.com/pydata/numexpr/blob/master/RELEASE_NOTES.rst
* - Update to 0.42sunpoet2016-11-202-4/+4
| | | | Changes: http://search.cpan.org/dist/Math-GMPq/CHANGES
* Convert R-cran ports to auto-plist.dbn2016-11-192-30/+1
| | | | These ports did not properly handle the DOCS options (in math/R).
* Mark as broken on aarch64. The former change I made had no effect on the ↵linimon2016-11-191-0/+2
| | | | | | logfile. Approved by: portmgr (tier-2 blanket)
* - Move license information from port description into LICENSE knobsdanfe2016-11-192-15/+10
| | | | - Convert $arch-conditional BROKEN statement into BROKEN_$arch one
* Upgrade to 4.1.thierry2016-11-193-16/+9
|
* - Simplify Makefile with USE=qmakethierry2016-11-192-9/+16
| | | | | | | - Since I'm there fix USE_GL. PR: 214627 Submitted by: tcberner
* math/scilab: Document ncurses requirementmarino2016-11-191-1/+1
| | | | Approved by: ncurses blanket
* - Update to 7.500.2danilo2016-11-183-5/+5
|
* - Update to 5.5.2.3amdmi32016-11-184-24/+24
| | | | | | | | | | - Regenerate the patches - Add LICENSE - While here, fix shared lib installation PR: 212394 Submitted by: pfg Approved by: maintainer timeout (mayo@oyam.ca, 2 months)
* Fix typo.linimon2016-11-161-1/+1
|
* - Update to 1.1.1wen2016-11-162-4/+4
| | | | | PR: 214550 Submitted by: neel@neelc.org(maintainer)
* Mark as broken on various tier-2 archs.linimon2016-11-162-2/+5
| | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket)
* Update to GAP 4.8.6johans2016-11-162-4/+5
|
* - Add LICENSEamdmi32016-11-151-1/+6
| | | | | - Add NO_ARCH - Switch to options helpers
* Attempt to fix build on aarch64 using fix from armv6.linimon2016-11-141-1/+1
| | | | Approved by: portmgr (tier-2 blanket)
* - Update to 7.500.1danilo2016-11-143-5/+5
|
* math/ceres-solver: update to 1.12.0.r2.3jbeich2016-11-134-19/+7
| | | | Changes: https://github.com/ceres-solver/ceres-solver/compare/1.12.0rc1...c5c6f55
* Upgrade Code_Aster to 12.0.6-4.thierry2016-11-131-1/+2
| | | | | | | | This brings french/eficas to 2016.0.1, cad/astk-serveur and astk-client to 1.13.8.2, french/med to 3.2.0 (built against hdf5-18), bump PORTREVSION to math/metis-edf and fix soname, and french/homard to 11.7-1.
* - Update to 5.0.1amdmi32016-11-123-6/+8
| | | | | PR: 212601 Submitted by: 6yearold@gmail.com (maintainer)
* math/rpy2: stop linking against math/R dependsjbeich2016-11-111-3/+3
| | | | | | | While here, switch back to Clang build but keep RPATH which is a quirk to avoid loading /usr/lib/libgcc_s.so during dlopen() race. PR: 214384
* Fix installing examples.mat2016-11-091-2/+2
| | | | | Pointy hat to: amdmi3 Sponsored by: Absolight
* - Update to 5.0.13wen2016-11-092-3/+4
|
* Fix build with newer gcc versions.tcberner2016-11-091-0/+49
| | | | | | | | | | | | | | | Add upstream patch [1] that uses * isnan() -> std::isnan() * isinf() -> std::isinf() This fixes compilation with gcc5. [1] https://quickgit.kde.org/?p=kmplot.git&a=commit&h=e903ca56ad26311fcaeb650acf96046c726fb809 PR: 213993 Reported by: Kenneth Salerno <kennethsalerno@yahoo.com> Approved by: rakuco (mentor) Obtained from: https://quickgit.kde.org/?p=kmplot.git&a=commit&h=e903ca56ad26311fcaeb650acf96046c726fb809
* Update to 0.7.1jhale2016-11-083-45/+47
| | | | | | Convert to USES=pyqt Add NO_ARCH Fix plist for Python 3.5
* Update to 0.6.1jhale2016-11-083-30/+42
| | | | | | Convert to USES=pyqt Add NO_ARCH Fix plist for Python 3.5
* Mark as only for x86/powerpc per build log errors.linimon2016-11-081-1/+4
| | | | Approved by: portmgr (tier-2 blanket)
* math/ceres-solver: unbreak OPENMP=off on 10.0+ i386jbeich2016-11-082-1/+14
| | | | | | | | | | | | | | | | | | | | | In file included from examples/helloworld.cc:36: In file included from include/ceres/ceres.h:37: In file included from include/ceres/autodiff_cost_function.h:132: In file included from include/ceres/internal/autodiff.h:145: include/ceres/jet.h:246:3: error: requested alignment is less than minimum alignment of 4 for type 'Eigen::Matrix<double, 1, 1, kAlignHint>' alignas(kAlignment) Eigen::Matrix<T, N, 1, kAlignHint> v; ^ include/ceres/internal/autodiff.h:232:34: note: in instantiation of template class 'ceres::Jet<double, 1>' requested here FixedArray<JetT, (256 * 7) / sizeof(JetT)> x( ^ include/ceres/autodiff_cost_function.h:211:53: note: in instantiation of member function 'ceres::internal::AutoDiff<CostFunctor, double, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0>::Differentiate' requested here N0, N1, N2, N3, N4, N5, N6, N7, N8, N9>::Differentiate( ^ examples/helloworld.cc:70:11: note: in instantiation of member function 'ceres::AutoDiffCostFunction<CostFunctor, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0>::Evaluate' requested here new AutoDiffCostFunction<CostFunctor, 1, 1>(new CostFunctor); ^ Tested by: cmp before.o after.o # GCC 4.8 / 6.2
* - Update to 0.19.1wen2016-11-082-9/+17
| | | | | PR: 214301 Submitted by: john@saltant.com(maintainer)
* - Add LICENSEamdmi32016-11-074-21/+28
| | | | | | - Simplify patching - Regenerate patches - Add missing depends
* math/yacas: update to 1.6.0gahr2016-11-073-12/+16
| | | | | | | The Graphical User Interface (yacas-gui) and the kernel for Jupyter Notebook (yacas-kernel) are not enabled. Release notes: http://www.yacas.org/release_1_6_0/
* - Fix COMMENTamdmi32016-11-072-11/+13
| | | | | - Switch to options helpers - Regenerate patches
* - Update to 0.27sunpoet2016-11-072-4/+4
| | | | Changes: http://search.cpan.org/dist/Math-Prime-XS/Changes
* - Update to 0.39sunpoet2016-11-073-8/+6
| | | | Changes: http://search.cpan.org/dist/Math-GSL/Changes
* - Update to 0.44sunpoet2016-11-072-3/+4
| | | | Changes: http://search.cpan.org/dist/Math-GMPz/CHANGES
* - Update to 0.41sunpoet2016-11-072-3/+4
| | | | Changes: http://search.cpan.org/dist/Math-GMPq/CHANGES
* math/R: More docuementation changes.jrm2016-11-052-54/+54
| | | | | | | | | | | The feedback has been clear. Installing the TeX-dependent documentation files by default is bad for users, even if that means one documentation knob does not control the installation of all documentation files. Reported by: mat marino Reviewed by: mat Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8440
* Now builds on sparc64.linimon2016-11-041-1/+0
| | | | Approved by: portmgr (tier-2 blanket)
* Now builds on sparc64.linimon2016-11-041-2/+0
| | | | Approved by: portmgr (tier-2 blanket)
* Now builds on sparc64.linimon2016-11-041-2/+0
| | | | Approved by: portmgr (tier-2 blanket)
* math/libRmath: Update to version 3.3.2jrm2016-11-032-4/+4
| | | | | | | | Changes in version 3.3.2: https://stat.ethz.ch/pipermail/r-announce/2016/000608.html Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8433
* math/R: Revert documentation changes and bump PORTREVISIONjrm2016-11-032-371/+364
| | | | | | | | | | | | | | | | In an attempt to simplify the handling of documentation for users, changes were made in the last commit. When the documentation knob was off, (almost) no HTML, PDF, etc. files or their sources were installed, and when the knob was on, all these files were installed. Because some of these documentation files depended on some very large TeX ports, despite the usual convention, the knob was turned off by default. Unfortunately, this caused problems for a few R-dependent ports, because they copy documentation files from math/R when they are installed. Reported by: antoine Reviewed by: mat Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8429
* Pass maintainership of PEAR ports to the submitterjbeich2016-11-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PR: 214011 214012 214013 214014 214015 214016 214017 PR: 214018 214019 214021 214022 214023 214024 214025 PR: 214026 214027 214028 214029 214030 214031 214032 PR: 214033 214034 214035 214036 214037 214038 214039 PR: 214040 214041 214042 214043 214044 214045 214046 PR: 214047 214048 214049 214050 214051 214052 214053 PR: 214054 214055 214056 214057 214058 214059 214060 PR: 214061 214062 214063 214064 214066 214067 214068 PR: 214071 214072 214073 214074 214075 214076 214077 PR: 214078 214079 214080 214081 214082 214083 214084 PR: 214085 214086 214087 214088 214089 214090 214091 PR: 214092 214093 214094 214095 214096 214097 214098 PR: 214099 214100 214101 214102 214103 214104 214108 PR: 214109 214110 214111 214112 214113 214114 214115 PR: 214116 214117 214118 214119 214120 214121 214122 PR: 214123 214124 214125 214126 214127 214128 214129 PR: 214130 214131 214132 214133 214134 214135 214136 PR: 214137 214138 214139 214140 214141 214142 214143 PR: 214144 214145 214146 214147 214148 214149 214150 PR: 214151 214152 Submitted by: Jochen Neumeister <joneum@bsdproject.de>
* Cleanup no longer needed CHMOD usage after r424898.mat2016-11-032-6/+0
| | | | | | | PR: 213743 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight
* math/R: Fix typo and bump PORTREVISIONjrm2016-11-021-1/+2
| | | | | | Reported by: rhurlin@gwdg.de Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8420
* Take maintainership of math/scilab dependenciesmakc2016-11-022-2/+2
|
* Remove expired port:rene2016-11-024-55/+0
| | | | 2016-11-01 math/octave-forge-dicom: Broken for more than 6 months
* Remove expired ports:rene2016-11-0217-214/+0
| | | | | | | | | | | | | | | | | | 2016-11-01 math/octave-forge-octgpr: Broken for more than 6 months 2016-11-01 math/octave-forge-spline-gcvspl: Broken for more than 6 months 2016-11-01 www/pear-Services_SharedBook: Broken for more than 6 months 2016-11-01 devel/py-snackwich: Depends on broken and expiring devel/py-snack 2016-11-01 math/octave-forge-ad: Broken for more than 6 months 2016-11-01 math/octave-forge-xraylib: Broken for more than 6 months 2016-11-01 x11-toolkits/py-traitsbackendwx: Broken for more than 6 months 2016-11-01 x11-toolkits/py-traitsgui: Depends on broken and expiring x11-toolkits/py-traitsbackendwx 2016-11-01 security/lsh: Broken for more than 6 months 2016-11-01 devel/py-snack: Broken for more than 6 months 2016-11-01 security/massh: Broken for more than 6 months 2016-11-01 www/hydra: Broken for more than 6 months 2016-11-01 math/py-pyfst: Broken for more than 6 months 2016-11-01 archivers/ruby-zip: Broken will all supported versions of Ruby 2016-11-01 devel/ruby-langscan: Broken will all supported versions of Ruby
* math/R: Update to version 3.3.2 and other changesjrm2016-11-023-397/+390
| | | | | | | | | | | | | | | | | | | | - Changes in version 3.3.2: https://cran.r-project.org/doc/manuals/r-release/NEWS.html - Port Changes - Definitively set PORTNAME after removal of slave ports - Set MASTERS_SITES to CRAN - Make documentation installation simpler for users - make the DOCS option the only option for extra documentation (remove PDF option) - turn this option off by default since it pulls in over 1 GB of build dependencies (TeX and friends) - Do not make INFO option imply DOCS option - Cosmetic changes Reviewed by: mat Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8330
* New port, math/amath: simple command line calculatorjrm2016-11-024-0/+36
| | | | | | | | | | | | | | | | https://gitlab.com/rnger/amath/ Features a case sensitive command line interface, internal IEEE 754 calculations with 15 significant digits, calculations with real and complex numbers, variables and user defined functions, logarithmic and exponential functions, trigonometric and hyperbolic function and selected mathematical constants and rounding functions. PR: 209905 Submitted by: cs@innolan.dk (maintainer) Reviewed by: mat Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8386
* math/geogebra: update to 5.0.286.0jbeich2016-11-022-5/+5
| | | | | | Changes: https://www.geogebra.org/manual/en/Reference:Changelog_5.0 PR: 213981 Submitted by: Zsolt Udvari <udvzsolt@gmail.com> (maintainer)
* devel/pkgconf doesn't search under lib/pkgconfig by defaultjbeich2016-11-012-3/+3
|
* Chase math/matio updatemakc2016-11-011-1/+1
|
* math/scilab:makc2016-11-011-2/+3
| | | | | | | | - Add missing dependency on x11-toolkits/bwidget [1] - Take maintainership PR: 212666 [1] Submitted by: otacilio.neto
* math/matio:makc2016-11-014-19/+11
| | | | | | | | | | - Update to 1.5.9 (based on [1]) - Switch to 7z-compressed distfile - Remove no longer needed patch - Take maintainership PR: 213594 [1] Submitted by: pi
* Add missing dependeny on p5-List-MoreUtilsarved2016-10-311-0/+3
| | | | | PR: 213014 Approved by: maintainer timeout
* math/py-matplotlib: Add Qt5Agg backend optionpi2016-10-302-1/+9
| | | | | | | | | - Now that there are Qt5 python bindings in ports, matplotlib can be configured to use them. PR: 212763 Submitted by: Matthieu Volat <mazhe@alkumuna.eu> Approved by: mainland@apeiron.net (maintainer)
* - Switch to options helpersamdmi32016-10-292-5/+10
| | | | - Regenerate patches
* math/py-numpy: track PORTEPOCH in consumersjbeich2016-10-296-8/+8
|
* - Update to 3.3.5jhale2016-10-265-39/+86
| | | | | | | | | | - Add SIMD option to easily toggle cpu optimizations (ON by default) - Add OPENMPI option to build the MPI libraries (OFF by default) [1] - Strip slave port binaries - Take maintainership PR: 203847 [1] Submitted by: <dieterich@ogolem.org> [1]
* math/libRmath: make standalone (free from math/R) and unmark asjrm2016-10-262-9/+39
| | | | | | | BROKEN Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8289
* - Mark broken on 9.x: does not configure due to wxgtk/c++11 issuesamdmi32016-10-251-0/+2
| | | | Approved by: portmgr blanket
* - Update to 1.16.10wen2016-10-253-12/+12
| | | | | | PR: 213136 Submitted by: pfg@ Approved by: maintainer(timeout, >14 days)
* Now that PHP 5.5 is removed from the Ports Tree, clean up any stalerene2016-10-252-2/+2
| | | | IGNORE_WITH_PHP values (5, 52, 54, 55)
* Convert one port as an example.mat2016-10-241-7/+1
| | | | Sponsored by: Absolight
* math/gnuplot: 5.0.4 -> 5.0.5pi2016-10-232-3/+9
| | | | | | PR: 213684 Changes: Changes: http://www.gnuplot.info/ReleaseNotes_5_0_5.html Approved by: glewis (maintainer)
* No more need to redefine PATHFIX_MAKEFILEIN with latest pathfix.mk revjhale2016-10-221-1/+0
|
* - Update to 2.6.1.stephen2016-10-223-14/+4
|
* Use USES=pathfix where applicable.mat2016-10-2112-48/+15
| | | | | | | | PR: 213195 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D8093
* math/ocamlgsl: update 1.15.1 -> 1.19.1pi2016-10-214-218/+588
| | | | | | | | | - master site changed from bitbucket to github PR: 211444 Changes: https://github.com/mmottl/gsl-ocaml/blob/master/CHANGES.txt Submitted by: Rainer Hurling <rhurlin@gwdg.de> Approved by: Michael Gruenewald <michipili@gmail.com> (maintainer timeout)
* ${RM} already has -f.mat2016-10-2185-95/+95
| | | | | | | PR: 213570 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight
* math/cadabra2: update 2.0.816 -> 2.0.930pi2016-10-216-28/+153
| | | | | | | | | | | | | | | | | - Unbreaks GUI by applying two patches: - Patch in boost headers to prevent EINPROGRESS mishandling https://github.com/zaphoyd/websocketpp/issues/563 - Patch in websocketpp fixing IPv4 vs. IPv6 mismatch https://github.com/zaphoyd/websocketpp/issues/587 - GUI option is made default - Clones icons for the GUI app cadabra2-gui - Adds "USE_TEX=texmf texhash" to allow for unincluded latex macros, and to make tex hash local packages installed by cadabra2 - Verified that cadabra2 GUI now works fine - it is able to run many examples from their website. PR: 213329 Submitted by: Yuri Victorovich <yuri@rawbw.com> (maintainer)
* - Mark broken on 9.x:amdmi32016-10-211-2/+3
| | | | | | | /wrkdirs/usr/ports/math/clp/work/Clp-1.16.8/CoinUtils/src/CoinSignal.hpp:47: error: ISO C++ forbids declaration of '__decltype' with no type /wrkdirs/usr/ports/math/clp/work/Clp-1.16.8/CoinUtils/src/CoinSignal.hpp:47: error: typedef '__decltype' is initialized (use __typeof__ instead) Approved by: portmgr blanket
* Remove expired PHP5.5 ports.rene2016-10-212-22/+0
|
* Unlink expired PHP5.5 ports.rene2016-10-211-2/+0
|
* Reassign makc's ports back to the pool.rakuco2016-10-2012-12/+12
| | | | | | | | | See "Maintainer Reset" in https://www.freebsd.org/portmgr/policies_contributors.html. makc's last commit was in March 31st (r412218), and his ports have been timing out since at least July (r418155). I also emailed him 2 weeks ago and have received no response so far.
* Fix build on 9.xjhale2016-10-201-1/+2
| | | | Reported by: pkg-fallout
* - Update devel/tbb to version 2017.1martymac2016-10-191-1/+1
| | | | - Bump dependent ports
* Introduce new extensible virtual categories for KDEtcberner2016-10-198-24/+8
| | | | | | | | | | | | | | | | | | | | | A lot of KDE Ports share MASTERSITES, LICENSE and so one, as they are released as a bundle upstream, however, there was not really a clean way to share this information. Using these new categories, we can simplify the Makefiles for the diverse KDE ports. At the moment we support the virtual category * kde-kde4 In the future, this will be extended to * kde-frameworks * kde-plasma * kde-applications PR: 213406 Differential Revision: https://reviews.freebsd.org/D7645 Exp-run by : antoine Reviewed by: mat, rakuco Approved by: portmgr (mat), rakuco (mentor)
* Adjust TEST_WRKSRC for USES=[cq]make:outsourcejbeich2016-10-181-2/+0
| | | | | Approved by: rakuco Differential Revision: https://reviews.freebsd.org/D8274
* - Update to 7.500.0danilo2016-10-183-5/+5
|
* - Update to 1.1.9.4wen2016-10-172-4/+4
|
* Remove math/libRjrm2016-10-173-22/+0
| | | | | | | | | | | | - The libR option in math/R has been turned on by default since 2016-06-26. - A request for comments regarding the removal, posted to ports@ on 2016-07-16, did not result in any requests for it to remain in the tree. - After a restructuring of math/R, math/libR has been marked BROKEN since 2016-07-09 without any complaints. - No ports depend on it. Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8260
* math/ceres-solver: disable EIGENSPARSE by default like upstreamjbeich2016-10-171-2/+5
| | | | | | | | | | | | | | | | | | | | During configure stage the following =============================================================== Enabling the use of Eigen as a sparse linear algebra library for solving the nonlinear least squares problems. Enabling this option results in an LGPL licensed version of Ceres Solver as the Simplicial Cholesky factorization in Eigen is licensed under the LGPL. =============================================================== turns into =============================================================== Disabling the use of Eigen as a sparse linear algebra library. This does not affect the covariance estimation algorithm which can still use the EIGEN_SPARSE_QR algorithm. ===============================================================
* Add missing pkgconfig dependencyjhale2016-10-161-1/+1
|
* - Fix licenseamdmi32016-10-162-7/+18
| | | | | - Add LICENSE_FILE - Fix build on arm
* - Update to 7.3tota2016-10-162-4/+4
|
* math/ceres-solver: minor sorting nitjbeich2016-10-161-1/+1
|
* math/ceres-solver: oops, fix a typojbeich2016-10-161-4/+4
|
* math/ceres-solver: add new portjbeich2016-10-165-0/+174
| | | | | | | | | | | | | | | Based on: Gentoo (1.11.0 ebuild) Tested on: graphics/openmvg from @outpaddling's repo (build on 10.3 amd64) Ceres Solver is an open source C++ library for modeling and solving large, complicated optimization problems. It is a feature rich, mature and performant library which has been used in production at Google since 2010. Ceres Solver can solve two kinds of problems. 1. Non-linear Least Squares problems with bounds constraints. 2. General unconstrained optimization problems. http://ceres-solver.org/
* Fix build:jhale2016-10-151-1/+1
| | | | | | | | | | | configure.ac:28: warning: macro 'AM_PROG_LIBTOOL' not found in library configure.ac:28: error: possibly undefined macro: AM_PROG_LIBTOOL If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. autoreconf-2.69: /usr/local/bin/autoconf-2.69 failed with exit status: 1 *** Error code 1 Reported by: pkg-fallout
* Update math/libqalculate to 0.9.10jhale2016-10-1514-187/+110
| | | | | | | | | - Project is hosted on Github now Update math/qalculate to 0.9.9 - Qalculate now uses GTK+3 - Project is hosted on Github now - Take maintainership Bump PORTREVISION on ports that depend upon libqalculate due to shlib increase
* - Update to 4.9wen2016-10-135-58/+91
| | | | - Remove GUI option but always build libCGAL_ImageIO and libCGAL_Qt
* - Update to version 5.2.1 [1]pawel2016-10-133-10/+20
| | | | | | | | - Add OPENBLAS option [1] - Simplify PLIST_SUB generation PR: 213352 [1] Submitted by: dieterich@ogolem.org [1]
* Update to 2.017, and strip XS modules and the pdl binary.adamw2016-10-132-6/+8
| | | | Changes: https://metacpan.org/changes/distribution/PDL
* - Update to version 3.12.6 [1]pawel2016-10-123-10/+33
| | | | | | | | | | | - Convert to test framework Changelog: - better support for custom algorithm development [r2659] - extend build system to work without Fortran compiler [r2660,r2661] PR: 213341 [1] Submitted by: pfg (maintainer) [1]
* - Update to 7.400.4danilo2016-10-113-5/+5
|
* Extension for PHP that provides few dozens routines for statisticalrm2016-10-114-0/+31
| | | | | | | | | computation. WWW: http://pecl.php.net/package/stats/ PR: 212767 Submitted by: dbaio@bsd.com.br
* - Update to 2.12.2wen2016-10-105-7/+8
| | | | | PR: 213338 Submitted by: dieterich@ogolem.org(maintainer)
* - Add new port: math/R-cran-numDerivtota2016-10-104-0/+29
| | | | | | | | | | | | Methods for calculating (usually) accurate numerical first and second order derivatives. Accurate calculations are done using 'Richardson"s' extrapolation or, when applicable, a complex step derivative is available. A simple difference method is also provided. Simple difference is (usually) less accurate but is much quicker than 'Richardson"s' extrapolation and provides a useful cross-check. Methods are provided for real scalar and vector valued functions. WWW: https://cran.r-project.org/web/packages/numDeriv/
* - Update to 2.1.2tota2016-10-102-4/+4
|
* Update to 1.04, sort plist, add NO_ARCH, and remove unnecessaryadamw2016-10-093-12/+11
| | | | | | TEST_DEPENDS. Changes: https://metacpan.org/changes/distribution/Math-Polygon
* Update to 2.13, and add NO_ARCH.adamw2016-10-092-3/+9
| | | | Changes: https://metacpan.org/changes/distribution/Math-MatrixReal
* - Update to 0.6-8tota2016-10-092-6/+8
|
* - Switch to options helpersamdmi32016-10-081-15/+9
|
* - Fix LICENSEamdmi32016-10-072-8/+10
| | | | | | | - Add LICENSE_FILE - Switch to options helpers - Cosmetic fixes - Regenerate patches
* Update to 1.11.2olivierd2016-10-073-8/+12
| | | | Changes: https://github.com/numpy/numpy/blob/v1.11.2/doc/release/1.11.2-notes.rst
* Update eigen3 to 3.2.10tcberner2016-10-052-6/+5
| | | | | | | | Changelog: http://eigen.tuxfamily.org/index.php?title=ChangeLog#Eigen_3.2.10 Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D8149
* math/eigen3: unbreak consumers on 9.x after r421231jbeich2016-10-052-0/+64
| | | | | | | | | | | | | | | In file included from /usr/local/include/eigen3/unsupported/Eigen/MatrixFunctions:58, from modules/contrib/src/rgbdodometry.cpp:65: /usr/local/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h: In member function 'void Eigen::MatrixExponential<MatrixType>::computeUV(float)': /usr/local/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h:296: error: call of overloaded 'pow(int, int&)' is ambiguous /usr/include/math.h:210: note: candidates are: double pow(double, double) /usr/include/c++/4.2/cmath:357: note: float std::pow(float, float) /usr/include/c++/4.2/cmath:361: note: long double std::pow(long double, long double) /usr/include/c++/4.2/cmath:365: note: double std::pow(double, int) /usr/include/c++/4.2/cmath:369: note: float std::pow(float, int) /usr/include/c++/4.2/cmath:373: note: long double std::pow(long double, int) Reported by: pkg-fallout
* - Add LICENSE.stephen2016-10-052-3/+8
| | | | - Fix portlint errors.
* - Add LICENSEamdmi32016-10-042-9/+17
| | | | | | - Switch to options helpers - Switch to new test framework - Regenerate patches
* Silence check-plist, there is already PORTDOCS=*mat2016-10-041-7/+0
| | | | Sponsored by: Absolight
* graphics/opencv: add suffix to make room for 3.x seriesjbeich2016-10-042-4/+5
| | | | | | | | | To avoid confusion, the main port is to track the latest release. Whether to rename includes/libraries as well making it possible to install 2.x and 3.x side-by-side remains to be investigated. PR: 210505 (for tracking) Inspired by: PkgSrc
* Allow selection of optimised BLAS implementations via OPTIONsriggs2016-10-031-17/+16
| | | | | PR: 213090 Submitted by: elferdo@gmail.com
* math/openfst: unbreak on 9.xjbeich2016-10-031-0/+1
| | | | | | | | | symbol-table-ops.cc: In function 'bool fst::AddAuxiliarySymbols(const string&, int64, int64, fst::SymbolTable*)': symbol-table-ops.cc:131:43: error: 'to_string' is not a member of 'std' if (index != syms->AddSymbol(prefix + std::to_string(i), index)) { ^ Reported by: pkg-fallout Approved by: portmgr blanket
* - Add LICENSE.stephen2016-10-031-0/+5
|
* - Update to 3.1.1.stephen2016-10-032-5/+5
|
* - Update to 2.4.2.stephen2016-10-032-3/+4
|
* - Update to 1.0.14.stephen2016-10-032-3/+4
|
* - Update to 1.5.2.stephen2016-10-032-3/+4
|
* math/pecl-stats: configure PORTSCOUTrm2016-10-022-2/+4
| | | | | | | | | - configure PORTSCOUT - fix typo on pkg-descr - small change on COMMENT PR: 212766 Submitted by: Danilo G. Baio (dbaio) <dbaio@bsd.com.br> (maintainer)
* Deprecate ports broken for more than 6 monthsantoine2016-10-016-0/+12
|
* - Update to 7.400.3danilo2016-10-012-4/+4
|
* Remove expired ports:rene2016-10-018-285/+0
| | | | | | | | | | 2016-09-30 math/why3-spark: Only useful for deprecated lang/spark 2016-09-30 lang/spark: Broken for more than 6 months 2016-09-30 math/alt-ergo-spark: Only useful for deprecate lang/spark 2016-09-30 security/nessus-libnasl: Abandoned, consider using OpenVAS 2016-09-30 security/nessus: Abandoned, consider using OpenVAS 2016-09-30 security/nessus-libraries: Abandoned, consider using OpenVAS 2016-09-30 security/nessus-plugins: Abandoned, consider using OpenVAS
* Five omnibus tests for testing the composite hypothesis of normality.wen2016-09-304-0/+24
| | | | | | | WWW: http://cran.r-project.org/web/packages/nortest/ PR: 213089 Submitted by: pfg@
* Density, distribution function, quantile function, random generationwen2016-09-304-0/+25
| | | | | | | | | | and expected value function for the truncated normal distribution with mean equal to 'mean' and standard deviation equal to 'sd'. WWW: http://cran.r-project.org/web/packages/truncnorm/ PR: 213091 Submitted by: pfg@
* Comment out PATCH_DEPENDS.ale2016-09-281-1/+1
| | | | Spotted by: mat
* Update to 3.1.5 release.ale2016-09-283-9/+8
|
* - Update devel/doxygen to 1.8.12antoine2016-09-282-3/+3
| | | | | | - Adjust plist of ports depending on it PR: 212869
* - Update to 1.2.1wen2016-09-272-4/+4
|
* - Update to 3.31.2wen2016-09-272-4/+4
|
* math/mpexpr: update to 1.2 (official) releasegahr2016-09-275-61/+4
| | | | | The previous version was a RC, despite there was no mention of it in the distfile. Most patches have been incorporated upstreams.
* - Update devel/icu to 57.1.tijl2016-09-242-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | - Clean up the Makefile. - Follow some upstream recommendations (--with-data-packaging=archive, --disable-renaming, -DICU_NO_USER_DATA_OVERRIDE). - Patch makefiles to install static libraries with INSTALL_DATA so they aren't stripped. - Patch config/mh-bsd-gcc to sync with config/mh-linux-gcc. - Fix endianness detection in ICU. The code wanted to use BYTE_ORDER defined in machine/endian.h, but this isn't visible because ICU is compiled with _XOPEN_SOURCE. Patch the code to use _BYTE_ORDER instead. - Compile ICU with C++11 compiler to enable move constructors. - Patch ICU to fix a problem with atomics in the case of a C++11 compiler without C++11 header <atomic> (like Clang on FreeBSD 9). - Bump all ports that depend on it due to library version change. - Add USES=compiler:c++0x to some ports that pick up -std=c++0x from ICU pkgconfig files. - Add USES=compiler:c++11-lib to graphics/libcdr01 because it also needs a C++11 runtime library now. Add this to all ports that depend on it so their executables load the right libstdc++.so on FreeBSD 9. PR: 205120 Exp-run by: antoine Approved by: portmgr (antoine)
* Update email address to jrm@FreeBSD.org for ports that I maintainjrm2016-09-241-1/+1
| | | | | | Reviewed by: mat, swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D7995
* lang/php56: Update from 5.6.25 to 5.6.26tz2016-09-232-2/+0
| | | | | | | | | | | | | Security: CVE-2016-7416 Security: CVE-2016-7412 Security: CVE-2016-7414 Security: CVE-2016-7417 Security: CVE-2016-7411 Security: CVE-2016-7413 Security: CVE-2016-7418 MFH: 2016Q3 Approved by: swills (mentor)
* Even if upstream thinks clang does not support openmp we will soon know how tobapt2016-09-221-0/+1
| | | | make it works :)
* - Update to 1.1.0amdmi32016-09-222-4/+4
| | | | | PR: 212857 Submitted by: neel@neelc.org (maintainer)
* lang/php70: Update from 7.0.10 to 7.0.11tz2016-09-212-2/+0
| | | | | | | | | | | | Security: CVE-2016-7416 Security: CVE-2016-7412 Security: CVE-2016-7414 Security: CVE-2016-7417 Security: CVE-2016-7413 Security: CVE-2016-7418 MFH: 2016Q3 Approved by: pi (mentor)
* - Update to 5.38.1wen2016-09-214-13/+186
| | | | | PR: 212827 Submitted by: satosi.kimura@nifty.ne.jp
* Mark as broken on sparc64.linimon2016-09-181-0/+1
| | | | Approved by: portmgr (tier-2 blanket)
* Mark broken on sparc64.linimon2016-09-181-0/+2
| | | | Approved by: portmgr (tier-2 blanket)
* Mark broken on sparc64.linimon2016-09-181-0/+2
| | | | Approved by: portmgr (tier-2 blanket)
* - Update to 7.2tota2016-09-172-5/+8
|
* - Update to 0.1.2.stephen2016-09-172-4/+4
|
* - Update to 1.0.5amdmi32016-09-172-6/+7
| | | | | | | | | | | | | | | | | | | | | | - Update LICENSE - Take maintainer'ship Changelog: 1.0.5 - Fix bug in stats_stat_binomial_coef which causes segfault in some environments - Fix bug in stats_stat_factorial which leads infinite loop in some cases - stats_stat_factorial returns immediately when the value are reached to +INF - Change supported version to PHP 5.3 or higher 1.0.4 - Fixed bugs (see tests for details) PR: 212504 Submitted by: dbaio@bsd.com.br
* math/mpexpr: update to 1.2gahr2016-09-169-127/+39
|
* math/R-cran-stabledist: updated to version 0.7-1dbn2016-09-162-4/+9
| | | | | | | | | - add new test dependencies: - devel/R-cran-RUnit - finance/R-cran-fBasics - math/R-cran-Rmpfr Generated by: portcran (0.1.2)
* Unmark broken on powerpc64swills2016-09-151-2/+0
| | | | These ports built successfully
* Drop spark-related ports for removal after 30 Septmarino2016-09-152-2/+8
|
* Release some of my ports back to the heapmarino2016-09-151-1/+1
|
* - Update to 2.4.3.stephen2016-09-152-4/+4
|
* GOOGLE_CODE has gone away.mat2016-09-145-1/+9
| | | | | | | | | | - If a port has another upstream, remove GOOGLE_CODE - If a port only has GOOGLE_CODE mark it BROKEN Some ports have a local mirror configured but for security reasons, it is not considered upstream. Sponsored by: Absolight
* - Corrections to pkg-plist for when option "EXAMPLES" is OFF.stephen2016-09-141-3/+3
| | | | | PR: ports/212315 Submitted by: ice@extreme.hu
* - Update to 1.1.9.2wen2016-09-132-6/+6
|
* - Update to 1.2.4.stephen2016-09-132-4/+4
|
* Update math/facile to 1.1.2tcberner2016-09-122-3/+4
| | | | | | Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7731
* Update math/facile MASTER_SITES.tcberner2016-09-121-1/+1
| | | | | | | Reviewed by: rakuco Approved by: rakuco (mentor) MFH: 2016Q3 Differential Revision: https://reviews.freebsd.org/D7731
* - Update to 1.72tota2016-09-102-5/+5
| | | | - Fix LICENSE section
* - Update to 5.29tota2016-09-102-6/+8
| | | | - Add "compiles" argument to USES=cran
* - In Uses/linux.mk use the loop variable directly when appending totijl2016-09-071-1/+1
| | | | | | | | | *_DEPENDS. Helper variables derived from the loop variable aren't expanded causing *_DEPENDS to be incorrect. - Bump all ports with more than one value in USE_LINUX. PR: 211645 Reported by: jkim
* math/galculator: Update to 2.1.4woodsb022016-09-074-13/+39
| | | | | | | | | | | | | | - Follow upstream move from SF to GitHub, and new website hosting - Add USES=autoreconf libtool as GH tarball only comes with configure.ac - Add OPTIONS to select GTK3 or GTK2 (GTK3 by default as per upstream) - Add USE_GNOME=cairo und GTK2_LIB_DEPENDS undeclared dependencies Changes this release: https://github.com/galculator/galculator/blob/v2.1.4/ChangeLog Reviewed by: adamw (mentor) Approved by: naddy (maintainer), mat (mentor) Differential Revision: https://reviews.freebsd.org/D7789
* - Replace Mk/bsd.linux-apps.mk and Mk/bsd.linux-rpm.mk withtijl2016-09-062-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mk/Uses/linux.mk. - Replace USE_LINUX=yes with USES+=linux and USE_LINUX=(.*) with USES+=linux:\1 in all ports. - Replace USE_LINUX_APPS with USE_LINUX in all ports. - Use INSTALL_SCRIPT instead of INSTALL_PROGRAM to install scripts in some ports. - When USE_LINUX_RPM is defined, simplify the way DISTFILES and EXTRACT_ONLY are defined. - Remove BRANDELF_DIRS and BRANDELF_FILES handling. In the very rare cases that it is still necessary ports can run ${BRANDELF} from post-patch. - Remove AUTOMATIC_PLIST handling. Only one port used it. - Fix Linux MASTER_SITES. - Replace OVERRIDE_LINUX_BASE_PORT and OVERRIDE_LINUX_NONBASE_PORTS with default versions framework. - bsd.port.mk: - Move Linux related bits to Uses/linux.mk, except USE_LINUX_PREFIX. - Put USE_LINUX_PREFIX handling after USES processing. - Define DOCSDIR, DATADIR, etc. after handling USE_LINUX_PREFIX so it can give these variables a different default value. - When a package needs to run Linux ldconfig check before installation if Linux support is enabled. - emulators/linux_base-*: - Use USES=linux and remove duplication. - Remove files/lp. FreeBSD or CUPS lp(1) should work. - Remove files/yp.conf. No longer seems to be used. - Remove pkg-deinstall and move pkg-install into pkg-plist. - Update pkg-descr and pkg-message. - Fix handling of ldconfig cache in pkg-plist. - devel/fb-adb: Use a Linux shell to run a Linux script but patch the script to use FreeBSD mkdir so mkdir -p $path creates $path and not /compat/linux/$path. PR: 211645 Exp-run by: antoine Approved by: portmgr (antoine)
* - Switch to options helpersamdmi32016-09-051-5/+7
| | | | - Silence stripping
* Correct dependencycrees2016-09-041-1/+1
| | | | Submitted by: maintainer
* - Fix build on 11.x+ by adding missing makeinfo dependencyamdmi32016-09-041-1/+1
| | | | Approved by: portmgr blanket
* Update math/eigen3 to 3.2.9tcberner2016-09-012-4/+5
| | | | | Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7729
* - Update math/cryptominisat and math/py-cryptominisat to 5.0.0cpm2016-09-019-53/+43
| | | | | | | PR: 211460 Submitted by: maintainer Reviewed by: koobs, feld (mentor) Approved by: feld (mentor)
* - Update to 5.0.270amdmi32016-08-315-704/+9
| | | | | | | | | | | | - Don't ship bundled java - Don't require linux-binaries anymore - Use java from ports - While here, add NO_ARCH Changelog: https://www.geogebra.org/manual/en/Reference:Changelog_5.0 PR: 212257 Submitted by: udvzsolt@gmail.com (maintainer)
* - Update to 1.0.8amdmi32016-08-312-5/+6
| | | | | | | - While here, add LICENSE_FILE and pet portlint PR: 212241 Submitted by: neel@neelc.org (maintainer)
* lang/php56: Update from 5.6.24 to 5.6.25tz2016-08-302-2/+2
| | | | | | PR: 212183 Submitted by: Kurt Jaeger <pi@FreeBSD.org> Approved by: pi (mentor)
* math/R-cran-gss: updated to version 2.1-6dbn2016-08-302-4/+5
| | | | | | - mark port as needing to compile Generated by: portcran (0.1.1)
* - Update to 7.400.2danilo2016-08-293-5/+5
|
* - Update to 2.1.1tota2016-08-292-6/+6
| | | | | - Update LICENSE - Add "compiles" argument to USES=cran
* - Update to 1.2.3.stephen2016-08-282-3/+4
|
* - Update to 0.7.400.2.0tota2016-08-272-4/+4
|
* Update to v2.16d and unbreak.thierry2016-08-274-19/+8
|
* Consistently set USE_JAVA to "yes" to reduce future confusion.jkim2016-08-261-1/+1
| | | | Approved by: olgeni (maintainer)
* - Update to 0.43wen2016-08-252-3/+4
| | | | Changes: http://cpansearch.perl.org/src/PJACKLAM/bignum-0.43/CHANGES
* - Update to 3.33wen2016-08-252-3/+4
| | | | Changes: http://cpansearch.perl.org/src/SISYPHUS/Math-MPFR-3.33/CHANGES
* Update to version 1.5.4.demon2016-08-253-31/+33
|
* Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks andtcberner2016-08-2411-23/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Plasma5 ports At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When working on the ports for KDE Frameworks and Plasma5 it seemed to be more reasonable to create a new kde.mk instead of adding an bsd.kde5.mk. The kde.mk in this review is a stripped down version of the one we are using in the KDE Test repositories plasma5 branch [1] to only contain the parts relevant to the current KDE4 ports in the portstree [2]. Changes to the KDE Ports needed by this: Replace USE_KDE4 by USE_KDE [3] Add USES=kde:4 [4] [1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk [2] The version in the plasma5 branch also handles frameworks/plasma5 and handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt Ports -- I chose to leave this out for now, as the diff is already large enough. [3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we want is already specified as argument to kde:<arg> [4] For KDE Frameworks and Plasma5 ports this would be kde:5 PR: 210667 Approved by: portmgr, mat (mentor), rakuco (mentor) Reviewed by: mat, rakuco Differential Revision: https://reviews.freebsd.org/D6961
* - Update to 1.3-7tota2016-08-242-5/+7
|
* - Update to 0.3.2.9.0tota2016-08-242-5/+8
| | | | - Add "compiles" argument to USES=cran
* math/oleo: document ncurses and remove extern errnomarino2016-08-2423-82/+98
| | | | While here, regenerate all patches with makepatch
* math/gmp: use CONFIGURE_TARGET rather than recreating itmarino2016-08-231-1/+1
| | | | | | | | | The --build configure argument is a re-invention of CONFIGURE_TARGET except that platform is hardcoded to freebsd rather than the value of OPSYS:tl. Use CONFIGURE_TARGET instead. It's a no-op for FreeBSD but is a fix for DragonFly. Approved by: non-invasive DF support blanket
* - Update to 7.400.1danilo2016-08-203-5/+8
|
* Update to version 1.5.3.demon2016-08-203-29/+34
|
* - Update to version 3.4.0, now hosted on GitHub [1]pawel2016-08-194-47/+42
| | | | | | | | | | | | | | | - Add EXAMPLES option [1] - Fix COMMENT declaration, use ?= so that slave can overide it - Add LICENSE_FILE - Convert to options helpers, test framework - Remove MPI option and move it's all functionality to slave port This allows removal of setting PKGNAMESUFFIX in master port depending on options selected which is deprecated. Move LIB_DEPENDS on mpich2 to slave, declare CONFLICTS_INSTALL, MPICH_ARG in such way that can be overidden by the slave. PR: 211454 [1] Submitted by: Iblis Lin [1]
* - Drop deprecated WX_UNICODEamdmi32016-08-165-15/+15
| | | | | - Regenerate patches with `make makepatch` - Fix WWW:
* - Mark BROKEN: does not fetch (no address record)amdmi32016-08-161-0/+2
|