Package Details: virtualbox-ext-oracle 7.2.14-1

Git Clone URL: https://aur.archlinux.org/virtualbox-ext-oracle.git (read-only, click to copy)
Package Base: virtualbox-ext-oracle
Description: Oracle VM VirtualBox Extension Pack
Upstream URL: https://www.virtualbox.org/
Keywords: virtualbox
Licenses: custom:PUEL
Submitter: seblu
Maintainer: seblu (eworm)
Last Packager: eworm
Votes: 1370
Popularity: 1.27
First Submitted: 2010-12-24 16:48 (UTC)
Last Updated: 2026-07-21 13:29 (UTC)

Dependencies (2)

Required by (1)

Sources (1)

Pinned Comments

eworm commented on 2026-07-21 13:06 (UTC)

The update requires manual intervention once. We have news on virtualbox-ext-vnc, the same applies for this package.

https://archlinux.org/news/virtualbox-ext-vnc-7212-2-requires-manual-intervention/

eworm commented on 2025-10-28 16:29 (UTC)

Please build in a clean environment, and the version dependency is not an issue: https://wiki.archlinux.org/title/DeveloperWiki:Building_in_a_clean_chroot

Latest Comments

1 2 3 4 5 6 .. 44 Next › Last »

nursoda commented on 2026-07-21 22:26 (UTC)

7.2.14-1: extpack never gets installed, /usr/share/virtualbox/extensions/ stays empty and the hook fails with "Not a regular file: /usr/share/virtualbox/extensions/". Upstream dropped the "VM_" from the filename; package()/.install still use the old name. Please update the glob. Workaround — install straight from Oracle:

ver=$(VBoxManage --version | grep -oP '^\d+\.\d+\.\d+')
curl -O "https://download.virtualbox.org/virtualbox/${ver}/Oracle_VirtualBox_Extension_Pack-${ver}.vbox-extpack"
sudo VBoxManage extpack install --replace "Oracle_VirtualBox_Extension_Pack-${ver}.vbox-extpack"

eworm commented on 2026-07-21 13:06 (UTC)

The update requires manual intervention once. We have news on virtualbox-ext-vnc, the same applies for this package.

https://archlinux.org/news/virtualbox-ext-vnc-7212-2-requires-manual-intervention/

thesupertechie commented on 2026-07-07 18:54 (UTC)

@Ketchup901, the point is that we shouldn't need to go through all of this nonsense if the PKGBUILD was updated correctly like @Healing_Hands suggested. Even if 1008 people say to clean build, that's deflecting the issue that is entirely with the PKGBUILD.

Ketchup901 commented on 2026-07-07 18:52 (UTC) (edited on 2026-07-07 18:53 (UTC) by Ketchup901)

How to update this:

  1. Clone the repo
  2. Build in a clean chroot: https://wiki.archlinux.org/title/DeveloperWiki:Building_in_a_clean_chroot (just use pkgctl build)
  3. Update virtualbox, skipping dependency version checks (pacman -Syd virtualbox)
  4. Install the package from step 2
  5. Update the rest of your system.

No need to overcomplicate things.

Healing_Hands commented on 2026-04-29 18:43 (UTC) (edited on 2026-04-29 18:46 (UTC) by Healing_Hands)

The PKGBUILD for this package does not follow best practices as outlined in ArchWiki. Section 4.1 of the ArchWiki page on PKGBUILD:
https://wiki.archlinux.org/title/PKGBUILD#depends


4.1 depends
An array of packages that must be installed for the software to build and run. Dependencies defined inside the package() function are only required to run the software.

Since the virtualbox package is not required to build the package, the depends line should be moved inside the package() function.

pixup1 commented on 2026-04-26 23:23 (UTC)

Is this dependency issue ever going to get addressed ? It still locks up pacman completely on every update, and I don't know how you could possibly argue that is intended behavior.

Scimmia commented on 2025-10-28 23:37 (UTC) (edited on 2025-10-28 23:38 (UTC) by Scimmia)

MartinX3, the fact that you didn't understand eworm's post doesn't make them wrong. Building in a clean chroot and adding to a local repo DOES work just fine. Your stupid helper script will not.

MartinX3 commented on 2025-10-28 20:43 (UTC)

@eworm: Wrong, doesn't fix the issue.

I won't be able to upgrade to virtualbox 7.2.5, if virtualbox-ext-oracle 7.2.4 is still installed.

Because first system packages get upgraded and THEN AFTER AUR packages get upgraded.

To the the system upgrades won't work because the already installed old virtualbox-ext-oracle requires virtualbox 7.2.4, so I can't upgrade virtualbox to 7.2.5.

I have to remove this AUR package first, to be able to upgrade my system package virtualbox....

eworm commented on 2025-10-28 16:29 (UTC)

Please build in a clean environment, and the version dependency is not an issue: https://wiki.archlinux.org/title/DeveloperWiki:Building_in_a_clean_chroot

thesupertechie commented on 2025-10-26 04:56 (UTC) (edited on 2025-10-26 04:59 (UTC) by thesupertechie)

Also, the pinned comment suggests that a hardcoded version number isn't there when it is. It's just dynamically hardcoded instead of manually done.