| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Notes:
svn path=/head/; revision=492703
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Notes:
svn path=/head/; revision=487880
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Notes:
svn path=/head/; revision=483043
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
| |
though)
PR: 229005
Reported by: rozhuk.im@gmail.com
Notes:
svn path=/head/; revision=472785
|
|
|
|
| |
Notes:
svn path=/head/; revision=472270
|
|
|
|
| |
Notes:
svn path=/head/; revision=466504
|
|
|
|
|
|
|
| |
Reported by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at>
Notes:
svn path=/head/; revision=459927
|
|
|
|
| |
Notes:
svn path=/head/; revision=459840
|
|
|
|
| |
Notes:
svn path=/head/; revision=456389
|
|
|
|
| |
Notes:
svn path=/head/; revision=456105
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
| |
PR: 223545
With hat: portmgr
Notes:
svn path=/head/; revision=453865
|
|
|
|
| |
Notes:
svn path=/head/; revision=451750
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(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
|
|
|
|
| |
Notes:
svn path=/head/; revision=448375
|
|
|
|
| |
Notes:
svn path=/head/; revision=445071
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
| |
- Fix shebang in python script
Reported by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at>
Notes:
svn path=/head/; revision=438396
|
|
|
|
| |
Notes:
svn path=/head/; revision=438164
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Notes:
svn path=/head/; revision=431113
|
|
|
|
| |
Notes:
svn path=/head/; revision=424127
|
|
|
|
| |
Notes:
svn path=/head/; revision=423742
|
|
|
|
| |
Notes:
svn path=/head/; revision=420207
|
|
|
|
| |
Notes:
svn path=/head/; revision=417179
|
|
|
|
| |
Notes:
svn path=/head/; revision=413657
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=412346
|
|
|
|
| |
Notes:
svn path=/head/; revision=406114
|
|
|
|
|
|
|
| |
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=405891
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Use options helpers
- Use test framework
PR: 204325
Submitted by: amdmi3
Approved by: maintainer timeout (bf, 2 weeks)
Notes:
svn path=/head/; revision=402326
|
|
|
|
|
|
|
|
|
|
|
| |
- Add LICENSE_FILE
PR: 202392
Submitted by: amdmi3
Approved by: maintainer timeout (bf, 3 weeks)
Notes:
svn path=/head/; revision=396238
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
| |
Approved by: portmgr (implicit)
Notes:
svn path=/head/; revision=371280
|
|
|
|
|
|
|
| |
With hat: portmgr
Notes:
svn path=/head/; revision=365357
|
|
|
|
|
|
|
| |
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=356356
|
|
|
|
|
|
|
|
|
|
| |
use a more specific option name
PR: 186588, 186795
Submitted by: amdmi3, K. Zheng
Notes:
svn path=/head/; revision=346928
|
|
|
|
|
|
|
| |
for both
Notes:
svn path=/head/; revision=343135
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
| |
Notes:
svn path=/head/; revision=334262
|
|
|
|
|
|
|
| |
devel part 1)
Notes:
svn path=/head/; revision=327722
|
|
|
|
| |
Notes:
svn path=/head/; revision=324407
|
|
|
|
| |
Notes:
svn path=/head/; revision=324290
|
|
|
|
| |
Notes:
svn path=/head/; revision=320605
|