%global __provides_exclude_from %{_libdir}/VBoxGuestAdditions Name: virtualbox-guest-additions Version: 6.1.8 Release: 2%{?dist} Summary: VirtualBox Guest Additions License: GPLv2 or (GPLv2 and CDDL) URL: https://www.virtualbox.org/wiki/VirtualBox Source0: https://download.virtualbox.org/virtualbox/%{version}/VirtualBox-%{version}.tar.bz2 Source1: vboxservice.service Source2: 96-vbox.preset Source3: VirtualBox-60-vboxguest.rules Source4: vboxclient.service # Mainline vboxsf uses an option string rather then a custom binary data struct Patch2: 0001-VBoxServiceAutoMount-Change-Linux-mount-code-to-use-.patch # Do not show an error dialog when not running under vbox # Do not start VBoxClient --vmsvga-x11, we run VBoxClient --vmsvga as # a systemd service, this works with both Wayland and Xorg based sessions Patch3: VirtualBox-5.2.10-xclient.patch BuildRequires: gcc-c++ BuildRequires: kBuild >= 0.1.9998.r3093 BuildRequires: python%{python3_pkgversion}-devel BuildRequires: desktop-file-utils # for xsltproc BuildRequires: libxslt BuildRequires: makeself BuildRequires: yasm BuildRequires: boost-devel BuildRequires: libXcomposite-devel BuildRequires: libXdamage-devel BuildRequires: libXmu-devel BuildRequires: libXrandr-devel BuildRequires: libXt-devel BuildRequires: mesa-libEGL-devel BuildRequires: mesa-libGL-devel BuildRequires: mesa-libGLU-devel BuildRequires: openssl-devel BuildRequires: pam-devel BuildRequires: zlib-devel # For the OpenGL passthru libs, these are statically linked against libstdc++ # like mesa itself is to avoid trouble with game-runtimes providing their # own older libstdc++ (e.g. steam does this) BuildRequires: libstdc++-static %{?systemd_requires} BuildRequires: systemd # Obsoletes/provides for upgrade path from the rpmfusion guest-additions pkg Obsoletes: VirtualBox-guest-additions < %{version}-%{release} Provides: VirtualBox-guest-additions = %{version}-%{release} # VirtualBox guests are always x86, no need to build for other archs ExclusiveArch: i686 x86_64 # VBoxOGL was removed in 6.1.0 # we need obsolete it to fix upgrade path Obsoletes: %{name}-ogl < 6.0.14-2 %description VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. This package contains the VirtualBox Guest Additions which support better integration of VirtualBox guests with the Host, including file sharing, clipboard sharing and Seamless mode. %prep %autosetup -p1 -n VirtualBox-%{version} # Remove prebuilt binaries find -name '*.py[co]' -delete rm -r src/VBox/Additions/WINNT rm -r src/VBox/Additions/os2 rm -r kBuild/ rm -r tools/ # Remove bundle X11 sources and some lib sources rm -r src/VBox/Additions/x11/x11include/ rm -r src/VBox/Additions/x11/x11stubs/ rm -r src/VBox/Additions/3D/mesa/mesa-17.3.9/ rm -r src/libs/libxml2-2.9.*/ rm -r src/libs/libpng-1.6.*/ rm -r src/libs/zlib-1.2.*/ %build ./configure --only-additions --disable-kmods . ./env.sh umask 0022 # VirtualBox build system installs and builds in the same step, # not allways looking for the installed files to places they have # really been installed to. Therefore we do not override any of # the installation paths, but install the tree with the default # layout under 'obj' and shuffle files around in %%install. kmk %{_smp_mflags} \ KBUILD_VERBOSE=2 \ PATH_OUT="$PWD/obj" \ TOOL_YASM_AS=yasm \ VBOX_WITH_TESTCASES= \ VBOX_WITH_VALIDATIONKIT= \ VBOX_USE_SYSTEM_XORG_HEADERS=1 \ VBOX_USE_SYSTEM_GL_HEADERS=1 \ VBOX_NO_LEGACY_XORG_X11=1 \ SDK_VBOX_LIBPNG_INCS="" \ SDK_VBOX_LIBXML2_INCS="" \ SDK_VBOX_OPENSSL_INCS="" \ SDK_VBOX_OPENSSL_LIBS="ssl crypto" \ SDK_VBOX_ZLIB_INCS="" \ VBOX_BUILD_PUBLISHER=_Fedora %install # The directory layout created below attempts to mimic the one of # the commercially supported version to minimize confusion mkdir -p %{buildroot}%{_bindir} mkdir -p %{buildroot}%{_sbindir} mkdir -p %{buildroot}%{_libdir}/security install -m 0755 -t %{buildroot}%{_sbindir} \ obj/bin/additions/VBoxService install -m 0755 -t %{buildroot}%{_bindir} \ obj/bin/additions/VBoxClient \ obj/bin/additions/VBoxControl install -m 0755 -t %{buildroot}%{_libdir}/security \ obj/bin/additions/pam_vbox.so install -p -m 0755 -D src/VBox/Additions/x11/Installer/98vboxadd-xclient \ %{buildroot}%{_sysconfdir}/X11/xinit/xinitrc.d/98vboxadd-xclient.sh ln -s ../..%{_sysconfdir}/X11/xinit/xinitrc.d/98vboxadd-xclient.sh \ %{buildroot}%{_bindir}/VBoxClient-all desktop-file-install --dir=%{buildroot}%{_sysconfdir}/xdg/autostart/ \ --remove-key=Encoding src/VBox/Additions/x11/Installer/vboxclient.desktop desktop-file-validate \ %{buildroot}%{_sysconfdir}/xdg/autostart/vboxclient.desktop install -p -m 0644 -D %{SOURCE1} %{buildroot}%{_unitdir}/vboxservice.service install -p -m 0644 -D %{SOURCE2} %{buildroot}%{_presetdir}/96-vbox.preset install -p -m 0644 -D %{SOURCE3} %{buildroot}%{_udevrulesdir}/60-vboxguest.rules install -p -m 0644 -D %{SOURCE4} %{buildroot}%{_unitdir}/vboxclient.service %pre # Add a group "vboxsf" for Shared Folders access # All users which want to access the auto-mounted Shared Folders have to # be added to this group. getent group vboxsf >/dev/null || groupadd -r vboxsf 2>&1 getent passwd vboxadd >/dev/null || \ useradd -r -g 1 -d /var/run/vboxadd -s /sbin/nologin vboxadd 2>&1 %post %systemd_post vboxclient.service %systemd_post vboxservice.service %preun %systemd_preun vboxclient.service %systemd_preun vboxservice.service %postun %systemd_postun_with_restart vboxclient.service %systemd_postun_with_restart vboxservice.service %files %license COPYING* %{_bindir}/VBoxClient %{_bindir}/VBoxControl %{_bindir}/VBoxClient-all %{_sbindir}/VBoxService %{_libdir}/security/pam_vbox.so %{_sysconfdir}/X11/xinit/xinitrc.d/98vboxadd-xclient.sh %{_sysconfdir}/xdg/autostart/vboxclient.desktop %{_unitdir}/vboxclient.service %{_unitdir}/vboxservice.service %{_presetdir}/96-vbox.preset %{_udevrulesdir}/60-vboxguest.rules %changelog * Wed May 20 2020 Hans de Goede - 6.1.8-2 - Add a vboxclient.service which runs VBoxClient --vwsvga when using the VMSVGA virtual GPU, this fixes resizing in wayland sessions (rhbz 1789545) - Drop VBoxClient --vwsvga-x11 from VBoxClient-all, it is not necessary now that we run VBoxClient --vwsvga as service and it was breaking resize support with the VBoxSVGA virtual GPU (rhbz 1789545) - Drop ExecStartPre modprove vboxvideo vboxsf from vboxservice.service, this is not necessary, they will be loaded automatically * Sat May 16 2020 Sérgio Basto - 6.1.8-1 - Update Virtualbox Guest Additions to 6.1.8 * Thu Apr 16 2020 Sérgio Basto - 6.1.6-1 - Update Virtualbox Guest Additions to 6.1.6 * Wed Mar 11 2020 Sérgio Basto - 6.1.4-4 - koji test * Wed Mar 11 2020 Sérgio Basto - 6.1.4-3 - Fix for clipboard - Obsoletes virtualbox-guest-additions-ogl * Tue Mar 3 2020 Hans de Goede - 6.1.4-2 - Fix VBoxClient --vmsvga-x11 crash (rhbz#1806778) * Sat Feb 22 2020 Sérgio Basto - 6.1.4-1 - Update Virtualbox Guest Additions to 6.1.4 - Remove hack "Conflicts VirtualBox-server > %%{version}". With kernel 5.5.6 (more or less), vboxsf is included in Fedora kernel and virtualbox-guest-additions don't need akmod-VirtualBox, anymore. * Fri Jan 31 2020 Fedora Release Engineering - 6.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild * Sun Jan 19 2020 Sérgio Basto - 6.1.2-1 - Update Virtualbox Guest Additions to 6.1.2 * Fri Dec 20 2019 Sérgio Basto - 6.1.0-1 - Upgrade to 6.1.0 - Seems that VBoxOGL was removed in 6.1.0 * Wed Nov 13 2019 Sérgio Basto - 6.0.14-2 - Change BR from python2 to python3 * Thu Oct 17 2019 Sérgio Basto - 6.0.14-1 - Update Virtualbox Guest Additions to 6.0.14 * Fri Sep 06 2019 Sérgio Basto - 6.0.12-1 - Update Virtualbox Guest Additions to 6.0.12 * Sat Jul 27 2019 Fedora Release Engineering - 6.0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Wed Jul 17 2019 Sérgio Basto - 6.0.10-1 - Update Virtualbox Guest Additions to 6.0.10 * Fri May 24 2019 Sérgio Basto - 6.0.8-2 - Just force same version and not same release * Sun May 19 2019 Sérgio Basto - 6.0.8-1 - Update Virtualbox Guest Additions to 6.0.8 * Fri Apr 26 2019 Sérgio Basto - 6.0.6-1 - Update Virtualbox Guest Additions to 6.0.6 * Wed Mar 20 2019 Hans de Goede - 6.0.4-2 - Fix automounted shares not working on 6.0.x hosts * Thu Mar 07 2019 Sérgio Basto - 6.0.4-1 - Update Virtualbox Guest Additions to 6.0.4 * Sun Feb 03 2019 Fedora Release Engineering - 6.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Wed Jan 23 2019 Hans de Goede - 6.0.2-1 - Update Virtualbox Guest Additions to 6.0.2, security fix version * Mon Jan 14 2019 Björn Esser - 6.0.0-2 - Rebuilt for libcrypt.so.2 (#1666033) - Add a patch to fix build on Fedora 30 * Thu Dec 20 2018 Sérgio Basto - 6.0.0-1 - VirtualBox 6.0.0 * Mon Nov 12 2018 Sérgio Basto - 5.2.22-1 - Update Virtualbox Guest Additions to 5.2.22, security fix version * Sat Oct 20 2018 Sérgio Basto - 5.2.20-1 - Update Virtualbox Guest Additions to 5.2.20, bugfix version * Thu Aug 30 2018 Sérgio Basto - 5.2.18-1 - Update Virtualbox Guest Additions to 5.2.18 * Wed Aug 01 2018 Sérgio Basto - 5.2.16-2 - Force instalation of same version VirtualBox-kmodsrc and virtualBox-guest-additions * Sat Jul 21 2018 Sérgio Basto - 5.2.16-1 - Update Virtualbox Guest Additions to 5.2.16 * Sat Jul 14 2018 Fedora Release Engineering - 5.2.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot * Mon Jul 02 2018 Sérgio Basto - 5.2.14-1 - Update Virtualbox Guest Additions to 5.2.14 * Sat May 12 2018 Sérgio Basto - 5.2.12-1 - Update to 5.2.12 * Sun Apr 22 2018 Sérgio Basto - 5.2.10-1 - Update to 5.2.10 * Thu Mar 1 2018 Hans de Goede - 5.2.8-1 - Update to 5.2.8 - Use https for all URLs * Wed Feb 7 2018 Hans de Goede - 5.2.6-4 - Do not use pkg-config for includes, as pkg-config prefixes an unwanted -I - Fix /etc/X11/xinit/xinitrc.d/98vboxadd-xclient.sh to now show an error notification when not running under vbox, as we will be part of the Workstation livecd which may run anywhere * Mon Jan 29 2018 Hans de Goede - 5.2.6-3 - Update to 5.2.6 - Drop VirtualBox-4.3.0-no-bundles.patch, set make variables instead - Adjust automount vboxservice for mainline vboxsf filesystem driver - Drop mount.vboxsf, the mainline vboxsf filesystem driver works with the regular mount binary - Drop commented out Requires: kernel, this is bad idea (rhbz#1534595) - Use pkgconfig to get include/libs instead of hardcoding (rhbz#1534595) - Rename to lowercaps virtualbox-guest-additions, add Obsoletes / Provides for upgradepath from rpmfusion (rhbz#1534595) - Add Provides: VirtualBox-kmod-common for rpmfusion upgradepath (rhbz#1534595) - Latest rpmfusion Release is 2, set our Release field to 3 * Sun Nov 26 2017 Hans de Goede - 5.2.2-1 - Update to 5.2.2 * Thu Sep 21 2017 Hans de Goede - 5.2.0-0.1.svn68769 - Switch to a 5.2 svn snapshot, as 5.2 has a new /dev/vboxguest ioctl API which the mainline version of the vboxguest drivers implement * Mon Aug 28 2017 Hans de Goede - 5.1.26-3 - Put the libGL.so.1 replacement libs and VBoxOGLRun scripts in an -ogl subpackage, so that people can install both the i686 and x86_64 versions. - Filter out libGL.so.1 provides * Mon Aug 14 2017 Hans de Goede - 5.1.26-2 - Initial Fedora package based on the guest-addition parts of the rpmfusion VirtualBox package