non port: emulators/virtualbox-ose/Makefile |
Number of commits found: 299 (showing only 100 on this page) |
Tuesday, 29 Jan 2019
|
19:12 jkim
Update to 5.2.26.
https://www.virtualbox.org/wiki/Changelog-5.2#v26
 |
Monday, 28 Jan 2019
|
06:56 araujo
- Bump PORTREVISION of ports that depends of net/libvncserver after it
was updated to version 0.9.12
Submitted by: dereks_lifeofadishwasher.com
Differential Revision: https://reviews.freebsd.org/D18836
 |
Wednesday, 16 Jan 2019
|
15:19 jkim
Update to 5.2.24.
https://www.virtualbox.org/wiki/Changelog-5.2#v24
 |
11:13 tijl
Fix Qt5 symbol version scripts to put the catch-all clause first. When
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)
 |
Wednesday, 12 Dec 2018
|
01:35 gerald
Bump PORTREVISION for ports depending on the canonical version of GCC
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
 |
Thursday, 29 Nov 2018
|
21:09 jkim
Fix a VNC regression since 5.2.20.
PR: 232528
Obtained from: VirtualBox Ticket #18153
 |
Friday, 9 Nov 2018
|
23:54 jkim
Update to 5.2.22.
https://www.virtualbox.org/wiki/Changelog#22
 |
Wednesday, 17 Oct 2018
|
06:49 jkim
Update to 5.2.20.
https://www.virtualbox.org/wiki/Changelog#20
 |
Tuesday, 11 Sep 2018
|
18:34 zeising
Change x11/xorgproto to become a build dep
Change x11/xorgproto to become a build time dependency when added to
USE_XORG. Change the dependency to be on the port, rather than a file the
port installs.
Fix fallout.
Bump portrevision on depending ports.
PR: 230909
Reviewed by: eadler
Approved by: portmgr (antoine)
Obtained
from: https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/xorgproto
exp-run: antoine
Differential Revision: https://reviews.freebsd.org/D16906
 |
Wednesday, 15 Aug 2018
|
19:38 jkim
Update to 5.2.18.
https://www.virtualbox.org/wiki/Changelog#18
 |
Tuesday, 31 Jul 2018
|
18:41 zeising
Switch to xorgproto instead of individual packages
Upstream used to distribute protocol headers as separate packages, but has
decided to merge those to a common package, named xorgproto. This update
tracks that change.
* Add a new port, x11/xorgproto, with are protocol headers for xorg.
* Hook the new protocol port to the build and to infrastructure in
bsd.xorg.mk.
* Update all ports with a dependency on any of the old *proto packages to
instead depend on xorgproto. Bump portrevision.
* Delete the old *proto packages, update MOVED.
PR: 230023
Submitted by: zeising
Approved by: portmgr (antoine)
exp-run by: antoine
 |
Thursday, 26 Jul 2018
|
11:46 tobik
emulators/virtualbox-ose: Fix build when using 3.? as default Python
When using DEFAULT_VERSIONS=python=3.6 or similar the build fails
with
kBuild: Generating python -
.../out/freebsd.amd64/release/obj/VBoxOGLgen/spu_dispatch_table.h
kmk_builtin_redirect: posix_spawnp(python-not-found) failed: No such file or
directory
Explicitly use Python 2.7 for the time being to fix the build.
PR: 225734
Submitted by: Peter Wullinger <freebsd@dhke.de>
Approved by: vbox (maintainer timeout, 5 months+)
 |
Tuesday, 24 Jul 2018
|
23:22 bdrewery
vboxheadless: Fix start of specific machine after base r291770.
The vboxheadless rc script has its own pid checking, so the rc.subr
version in run_rc_command is not needed.
PR: 212074
 |
Tuesday, 17 Jul 2018
|
19:19 jkim
Update to 5.2.16.
https://www.virtualbox.org/wiki/Changelog#16
 |
Monday, 2 Jul 2018
|
22:13 jkim
Update to 5.2.14.
https://www.virtualbox.org/wiki/ChangeLog#14
 |
Thursday, 28 Jun 2018
|
17:39 tcberner
Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
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
 |
Thursday, 10 May 2018
|
18:41 jkim
Update to 5.2.12.
https://www.virtualbox.org/wiki/Changelog#12
 |
Thursday, 3 May 2018
|
22:30 jkim
Chase Guest Additions change.
Reported by: Patrick Mackinlay (patrick at spacesurfer dot com)
 |
Tuesday, 17 Apr 2018
|
21:17 jkim
Update to 5.2.10.
https://www.virtualbox.org/wiki/Changelog#v10
 |
Saturday, 10 Mar 2018
|
17:46 gerald
Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
 |
Wednesday, 28 Feb 2018
|
23:36 jkim
Update to 5.2.8.
https://www.virtualbox.org/wiki/Changelog#v8
 |
Monday, 5 Feb 2018
|
21:06 eugen
emulators/virtualbox-ose: remove extra dependency on cdrtools.
Dependency on cdrtools was introduced 6 years ago for sake of mkisofs:
https://svnweb.freebsd.org/ports/head/emulators/virtualbox-ose/Makefile?revision=274444&view=markup
In fact, VirtualBox build system does not use makeisofs
while building for FreeBSD because it does not even try to buid
VirtualBox Additions ISO image as its documentation says
in the Prerequisites section:
mkisofs (required only for additions which aren't supported yet)
=> /usr/ports/sysutils/cdrtools
https://www.virtualbox.org/wiki/FreeBSD%20build%20instructions
And it never really used mkisofs.
Drop the dependency and bump PORTREVISION.
PR: 225376
Approved by: vbox (maintainer timeout, 2 weeks)
 |
Thursday, 25 Jan 2018
|
21:20 jbeich
multimedia/libvpx: update 1.7.0
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.6.1..v1.7.0
ABI: https://abi-laboratory.pro/tracker/timeline/libvpx/
 |
Tuesday, 23 Jan 2018
|
17:30 jkim
Re-enable AVX/AVX2 support for guest.
This patch is no longer necessary according to the original reporter.
PR: 211651
 |
Wednesday, 17 Jan 2018
|
01:59 jkim
Update to 5.2.6.
 |
Wednesday, 27 Dec 2017
|
21:01 jkim
Update to 5.2.4.
https://www.virtualbox.org/wiki/Changelog#v4
 |
Thursday, 30 Nov 2017
|
23:53 jkim
Reduce build dependency.
PR: 223709
 |
23:45 jkim
Update to 5.2.2.
 |
15:50 mat
Convert Python ports to FLAVORS.
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
 |
Monday, 30 Oct 2017
|
15:41 mat
Fix stage-qa warnings.
Sponsored by: Absolight
 |
Wednesday, 25 Oct 2017
|
00:15 jkim
- Work around build failures with Clang 3.4.
- Fix build without WEBSERVICE option. [1]
PR: 223201 [1]
 |
Monday, 23 Oct 2017
|
16:49 jkim
Update to 5.2.0.
 |
Tuesday, 17 Oct 2017
|
00:53 jkim
Update to 5.1.30.
 |
Thursday, 28 Sep 2017
|
23:46 jkim
Revert r450636. It did not work as we expected.
 |
Monday, 25 Sep 2017
|
21:39 jkim
Build recompiler with Clang if global register variable is supported.
Note support for global register variable was proposed in the following
upstream code reviews:
https://reviews.llvm.org/D3261
https://reviews.llvm.org/D3797
and commits:
http://llvm.org/viewvc/llvm-project?view=revision&revision=208104
http://llvm.org/viewvc/llvm-project?view=revision&revision=209149
However, it has very limited support as described in the following upstream
PR in the gory details:
https://bugs.llvm.org/show_bug.cgi?id=31005
Although it is incomplete, I *believe* Clang 3.5 and later has just enough
code to support (ancient) QEMU-based recompiler. If you experience any VM
crash related to recompiler, e.g., "fatal error in recompiler cpu" in its
VBox.log, please let me know.
FYI, QEMU was rewritten not to use this GCC-specific feature long time ago:
http://lists.gnu.org/archive/html/qemu-devel/2011-05/msg00855.html
https://www.mail-archive.com/qemu-devel@nongnu.org/msg63834.html
Unfortunately, VirtualBox stopped merging code from QEMU for some time now.
Tested by: soralx@cydem.org
 |
Friday, 15 Sep 2017
|
06:34 jkim
Update to 5.1.28.
 |
Friday, 8 Sep 2017
|
01:12 jkim
- Fix overflow in host memory size calculation.
- Catch up with PG_CACHE removal on head.
PR: 211432
 |
Tuesday, 1 Aug 2017
|
20:46 jkim
Revert r446286. ar(1) on head should be fixed with r321674.
 |
Friday, 28 Jul 2017
|
17:08 jkim
Update to 5.1.26.
 |
Thursday, 20 Jul 2017
|
19:05 jkim
Apply a bandaid to fix sporadic build failures on head.
 |
Wednesday, 19 Jul 2017
|
00:03 jkim
Update to 5.1.24.
 |
Wednesday, 12 Jul 2017
|
02:39 araujo
Bump PORTREVISION of several ports that depends of net/libvncserver to
reflect the changes made on r445054.
PR: ports/220565 (based on)
Submitted by: Martin Birgmeier <la5lbtyi@aon.at>
Sponsored by: iXsystems, Inc.
 |
Tuesday, 23 May 2017
|
05:03 rezny
Revision bump of all ports with USE_GL after consolidation of mesa-libs
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D10845
 |
Monday, 1 May 2017
|
18:49 jkim
Update to 5.1.22.
 |
Wednesday, 26 Apr 2017
|
19:04 ak
- Remove checks for .PARSEDIR and vestiges of pmake support
PR: 218832
Approved by: portmgr (antoine)
 |
Friday, 21 Apr 2017
|
16:43 jkim
Add a forgotten Qt4 patch in the previous commit.
Pointyhat to: jkim
PR: 218795
 |
Wednesday, 19 Apr 2017
|
18:10 jkim
- Fix build with option QT4.
- Warn users Qt4 support may be removed in the future.
PR: 218748
Submitted by: w dot schwarzenfeld at utanet dot at (initial)
 |
Tuesday, 18 Apr 2017
|
20:56 jkim
Update to 5.1.20.
 |
Wednesday, 15 Mar 2017
|
22:22 jkim
Update to 5.1.18.
 |
Thursday, 9 Mar 2017
|
21:50 jkim
Improve D-Bus support.
 |
19:21 jkim
Fix build with option QT4.
Submitted by: Walter Schwarzenfeld (w dot schwarzenfeld at utanet dot at)
 |
00:25 jkim
Update to 5.1.16.
 |
Tuesday, 21 Feb 2017
|
22:02 jkim
Update the hints to use service(8).
 |
21:56 jkim
Warn and stop build if the kernel cannot execute a 32-bit binary.
PR: 193946
 |
20:12 jkim
Fix build with option QT4.
PR: 217240
 |
Wednesday, 25 Jan 2017
|
21:01 jkim
Fix USB support.
PR: 212845
Submitted by: hselasky
Tested by: Graham Menhennitt (graham at menhennitt dot com dot au)
 |
Saturday, 21 Jan 2017
|
21:47 matthew
Update to 0.9.11
This includes a security fix for CVE-2016-9941 and CVE-2016-9942
* Drop files/patch-libvncclient_h264.c -- upstream has dropped h264 support
* Switch from USE_OPENSSL to USES+=ssl
* PORTREVISION bump in ports that link against libvncserver.so (with
their default OPTIONS settings) due to change in ABI version of
libvncserver.so
PR: 215802
Submitted by: vlad-fbsd@acheronmedia.com
MFH: 2017Q1
Security: 64be967a-d379-11e6-a071-001e67f15f5a
 |
Thursday, 19 Jan 2017
|
06:36 jkim
Fix build with QT4.
Reported by: ler
Tested by: ler
 |
Wednesday, 18 Jan 2017
|
19:09 jkim
Update to 5.1.14.
 |
Wednesday, 21 Dec 2016
|
14:01 jkim
Update to 5.1.12.
 |
Thursday, 24 Nov 2016
|
20:37 jkim
Update to 5.1.10.
 |
Sunday, 23 Oct 2016
|
19:37 jkim
Update to 5.1.8.
PR: 213683
Differential Revision: https://reviews.freebsd.org/D8292
 |
Wednesday, 5 Oct 2016
|
20:57 jkim
Fix the previous commit. It was incomplete.
Pointy hat: jkim
 |
20:49 jkim
Add newly added slave ports to CONFLICTS_INSTALL.
 |
20:13 jkim
Add the newly added emulators/virtualbox-ose-nox11 to CONFLICTS_INSTALL.
 |
19:55 jkim
- Rename emulators/virtualbox-ose-lite to emulators/virtualbox-ose-nox11 and
assign its maintainership to vbox@. [1]
- Use OPTIONS_EXCLUDE to simplify its master port.
Approved by: alfred (maintainer) [1]
 |
Friday, 30 Sep 2016
|
01:15 jbeich
multimedia/libvpx: update 1.6.0
ABI is incompatible... or not? SONAME has changed but the removed vp10
symbols weren't actually exposed (and still aren't).
Note, FreeBSD 9.x now builds with Clang 3.4 because GCC 4.2 fails:
vp9/encoder/x86/vp9_frame_scale_ssse3.c: In function 'eight_tap_row_ssse3':
vp9/encoder/x86/vp9_frame_scale_ssse3.c:93: internal compiler error: in
simplify_binary_operation_1, at simplify-rtx.c:2563
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.5.0..v1.6.0
ACC
report: https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.5.0_to_1.6.0/compat_report.html
 |
Friday, 16 Sep 2016
|
19:47 jkim
Remove a redundant PLIST_SUB.
 |
18:48 jkim
Add support for Python 3.x.
PR: 212691
 |
Monday, 12 Sep 2016
|
22:52 jkim
Update to 5.1.6.
 |
Wednesday, 7 Sep 2016
|
21:35 jkim
Update to 5.1.4.
 |
Saturday, 13 Aug 2016
|
04:05 jkim
Temporarily disable AVX support for guest. It is unstable for FreeBSD.
PR: 211651
 |
Tuesday, 2 Aug 2016
|
20:43 jkim
Fix build with non-base OpenSSL without MD2 support.
PR: 211524
 |
Friday, 22 Jul 2016
|
20:28 jkim
Update to 5.0.26.
 |
Wednesday, 20 Jul 2016
|
15:33 mat
Cleanup $() variables in ports Makefiles.
Mostly replace with ${}, but sometime, replace with $$() because it is
what was intended in the first place. (I think.)
Sponsored by: Absolight
 |
Tuesday, 12 Jul 2016
|
18:55 jkim
Allow overriding MAINTAINER from slave ports.
 |
Tuesday, 5 Jul 2016
|
08:06 alfred
virtualbox-ose-lite minimal deps for packaging
This package has minimal deps, only udp server and
vncserver are required.
This works really nicely for someone who just wants
to run headless vms or the VBoxManage tools without
bloat.
 |
Thursday, 16 Jun 2016
|
13:23 mat
Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.
WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo
PR: 210149
Submitted by: mat
Exp-run by: antoine
Sponsored by: The FreeBSD Foundation, Absolight
Differential Revision: https://reviews.freebsd.org/D6577
 |
Tuesday, 10 May 2016
|
05:29 pi
emulators/virtualbox-ose: fix VirtualBox hang on file dialog in KDE
PR: 199364
Submitted by: yuri@rawbw.com
Approved by: maintainer timeout
 |
Thursday, 21 Apr 2016
|
17:11 jkim
Update to 4.3.38.
MFH: 2016Q2
 |
Tuesday, 19 Apr 2016
|
16:20 jkim
Install NAT helper.
PR: 208893
 |
Friday, 1 Apr 2016
|
14:00 mat
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight
 |
Friday, 5 Feb 2016
|
04:24 jkim
Update to 4.3.36.
 |
Friday, 22 Jan 2016
|
12:46 lwhsu
Add "Enable R0 logging" option and set BUILD_TYPE=debug while DEBUG option set
PR: 206470
Submitted by: lwhsu
Approved by: decke
 |
Saturday, 14 Nov 2015
|
19:34 jbeich
multimedia/libvpx: update 1.5.0
ABI isn't compatible, so bump PORTREVISION in consumers.
Changes: https://chromium.googlesource.com/webm/libvpx/+log/e67d45d..v1.5.0
ACC
report: https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.4.0.488_1_to_1.5.0/compat_report.html
PR: 204478
Exp-run by: antoine
Approved by: ashish (maintainer)
 |
Thursday, 12 Nov 2015
|
22:15 jkim
Update to 4.3.34.
MFH: 2015Q4
 |
Tuesday, 20 Oct 2015
|
20:09 jkim
Update to 4.3.32.
MFH: 2015Q4
 |
Thursday, 15 Oct 2015
|
14:55 mat
Drop 8 support.
With hat: portmgr
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3694
 |
Friday, 10 Jul 2015
|
20:42 jkim
Update to 4.3.30.
MFH: 2015Q3
 |
Tuesday, 9 Jun 2015
|
14:25 jbeich
multimedia/libvpx: update to 1.4.0
ABI isn't compatible, so bump PORTREVISION in consumers.
Changes: https://chromium.googlesource.com/webm/libvpx/+/v1.4.0
Differential Revision: https://reviews.freebsd.org/D2570
Exp-run by: antoine
Approved by: ashish, multimedia (kwm)
Approved by: maintainer timeout (ale, dinoex; 2 weeks)
 |
Friday, 15 May 2015
|
19:29 jkim
Fix build without OpenSSL in the base.
PR: 199377
 |
Wednesday, 13 May 2015
|
22:20 jkim
Update to 4.3.28.
 |
Monday, 16 Mar 2015
|
23:04 jkim
Update to 4.3.26.
 |
17:57 jkim
Fix the fix. My patch was actually wrong and upstream properly fixed it.
Pointy hat to: jkim
 |
Friday, 13 Mar 2015
|
21:21 jkim
Fix several bugs found by Clang. Note few patches were obtained from
upstream. Other patches were submitted to upstream.
 |
00:39 jkim
VBoxSDL does not support drag and drop feature. Make it depend upon QT4.
 |
Thursday, 12 Mar 2015
|
06:52 jkim
- Enable drag and drop from host to guest.
- Make UDPTUNNEL option actually work.
 |
Tuesday, 3 Mar 2015
|
05:43 jkim
Update to 4.3.24.
 |
Tuesday, 17 Feb 2015
|
07:07 jkim
Let rc(8) scripts directly execute binaries. This makes them stop properly.
Submitted by: vvd@unislabs.com (initial patch)
 |
Monday, 16 Feb 2015
|
21:49 jkim
Fix the executable wrapper to properly check its installation directory when
QT4 option is disabled.
Reported by: raul@b2n.org, abi@abinet.ru
Submitted by: gpalmer (initial patch)
 |
Number of commits found: 299 (showing only 100 on this page) |