aboutsummaryrefslogtreecommitdiff
path: root/devel/cppcheck
Commit message (Collapse)AuthorAgeFilesLines
* - Update to 1.90Dmitry Marakasov2019-12-222-4/+4
| | | | Notes: svn path=/head/; revision=520619
* - Update to 1.89Dmitry Marakasov2019-09-093-32/+7
| | | | Notes: svn path=/head/; revision=511636
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* - Update to 1.88Dmitry Marakasov2019-07-023-4/+10
| | | | Notes: svn path=/head/; revision=505710
* - Update to 1.87Dmitry Marakasov2019-02-113-4/+8
| | | | Notes: svn path=/head/; revision=492703
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* - Update to 1.86Dmitry Marakasov2018-12-203-5/+6
| | | | Notes: svn path=/head/; revision=487880
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-0/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* - Update to 1.85Dmitry Marakasov2018-10-262-5/+4
| | | | Notes: svn path=/head/; revision=483043
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-0/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-1/+2
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* - Regenerate patches, as patching fails in some cases (could not reproduce ↵Dmitry Marakasov2018-06-192-4/+4
| | | | | | | | | | though) PR: 229005 Reported by: rozhuk.im@gmail.com Notes: svn path=/head/; revision=472785
* - Update to 1.84Dmitry Marakasov2018-06-122-6/+7
| | | | Notes: svn path=/head/; revision=472270
* - Update to 1.83Dmitry Marakasov2018-04-042-4/+4
| | | | Notes: svn path=/head/; revision=466504
* Fix build when Qt libs are present, but qmake is notDmitry Marakasov2018-01-251-0/+3
| | | | | | | Reported by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at> Notes: svn path=/head/; revision=459927
* - Update to 1.82Dmitry Marakasov2018-01-243-4/+6
| | | | Notes: svn path=/head/; revision=459840
* - Remove python version limitationDmitry Marakasov2017-12-151-2/+2
| | | | Notes: svn path=/head/; revision=456389
* Re-try ports affected by bug 193528 on powerpc* after r449590Jan Beich2017-12-121-2/+0
| | | | Notes: svn path=/head/; revision=456105
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464 Notes: svn path=/head/; revision=455210
* Fix the context of some patches so that they apply with stricter patch(1)Antoine Brodin2017-11-092-5/+5
| | | | | | | | PR: 223545 With hat: portmgr Notes: svn path=/head/; revision=453865
* - Update to 1.81Dmitry Marakasov2017-10-113-6/+6
| | | | Notes: svn path=/head/; revision=451750
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-0/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* - Update to 1.80Dmitry Marakasov2017-08-204-46/+5
| | | | Notes: svn path=/head/; revision=448375
* - Move cppcheck gui into separate port, devel/cppcheck-guiDmitry Marakasov2017-07-053-24/+39
| | | | Notes: svn path=/head/; revision=445071
* - Update to 1.79Dmitry Marakasov2017-05-316-54/+125
| | | | | | | | | | | - Fix segfault due to conflict between bundled and system tinyxml [1] - Switch to cmake build, simplifying the port - Enable GUI PR: 217881 [1], 218876 [1] Notes: svn path=/head/; revision=442261
* Mark some ports failing on power64. In cases where the error messageMark Linimon2017-05-211-0/+2
| | | | | | | | | | | | was a stub, provide a real one. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Reported by: swills Notes: svn path=/head/; revision=441429
* - Add missing python dependency (both build- and runtime)Dmitry Marakasov2017-04-121-2/+3
| | | | | | | | | - Fix shebang in python script Reported by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at> Notes: svn path=/head/; revision=438396
* - Update to 1.78Dmitry Marakasov2017-04-102-4/+4
| | | | Notes: svn path=/head/; revision=438164
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-0/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* - Update to 1.77Dmitry Marakasov2017-01-102-4/+4
| | | | Notes: svn path=/head/; revision=431113
* - Update to 1.76.1Dmitry Marakasov2016-10-173-5/+5
| | | | Notes: svn path=/head/; revision=424127
* - Update to 1.76Dmitry Marakasov2016-10-112-4/+4
| | | | Notes: svn path=/head/; revision=423742
* - Update to 1.75Dmitry Marakasov2016-08-152-4/+4
| | | | Notes: svn path=/head/; revision=420207
* - Update to 1.74Dmitry Marakasov2016-06-202-3/+4
| | | | Notes: svn path=/head/; revision=417179
* - Update to 1.73Dmitry Marakasov2016-04-192-9/+9
| | | | Notes: svn path=/head/; revision=413657
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-4/+4
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* - Update to 1.72Dmitry Marakasov2016-01-142-3/+3
| | | | Notes: svn path=/head/; revision=406114
* Convert LICENSE= "GPLxx # or later" to "GPLxx+"Dmitry Marakasov2016-01-121-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=405891
* - Update to 1.71Dmitry Marakasov2015-12-142-4/+5
| | | | | | | | | | | - Take maintainership in compliance with porter's handbook §5.5 (3 consecutive maintainer timeouts) PR: 204917 Submitted by: amdmi3 Approved by: maintainer timeout (bf, 2 weeks) Notes: svn path=/head/; revision=403734
* - Update to 1.70Dmitry Marakasov2015-11-232-41/+28
| | | | | | | | | | | | - Use options helpers - Use test framework PR: 204325 Submitted by: amdmi3 Approved by: maintainer timeout (bf, 2 weeks) Notes: svn path=/head/; revision=402326
* - Update to 1.69Dmitry Marakasov2015-09-072-8/+8
| | | | | | | | | | | - Add LICENSE_FILE PR: 202392 Submitted by: amdmi3 Approved by: maintainer timeout (bf, 3 weeks) Notes: svn path=/head/; revision=396238
* - Update to 2.2.0Sunpoet Po-Chuan Hsieh2015-02-191-0/+1
| | | | | | | | | | | | | - Simplify Makefile - Bump PORTREVISION for textproc/tinyxml2 shlib change Changes: https://github.com/leethomason/tinyxml2/commits/master PR: 196884 Submitted by: sunpoet (myself) Approved by: maintainer (timeout, 1 month) Notes: svn path=/head/; revision=379385
* - Convert ports of devel/ to USES=pythonMarcus von Appen2014-10-201-2/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371280
* Remove a few remaining NOPORTDATAAntoine Brodin2014-08-181-4/+0
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=365357
* - Convert USE_BZIP2 to USESDmitry Marakasov2014-06-031-2/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=356356
* Correct the plist for the case when the manpage isn't built, andBrendan Fabeny2014-03-031-5/+7
| | | | | | | | | | use a more specific option name PR: 186588, 186795 Submitted by: amdmi3, K. Zheng Notes: svn path=/head/; revision=346928
* Update textproc/tinyxml2 to 20140124 and devel/cppcheck to 1.63; use staging ↵Brendan Fabeny2014-02-062-13/+17
| | | | | | | for both Notes: svn path=/head/; revision=343135
* Python cleanup:Rene Ladan2014-01-131-1/+1
| | | | | | | | | | - USE_PYTHON* = 2.X -> USE_PYTHON* = 2 - USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes Reviewed by: python (mva, rm) Approved by: portmgr-lurkers (mat) Notes: svn path=/head/; revision=339634
* Update textproc/tinyxml2 to 20131105, and devel/cppcheck to 1.62Brendan Fabeny2013-11-182-5/+5
| | | | Notes: svn path=/head/; revision=334262