diff --git a/pmb/aportgen/device.py b/pmb/aportgen/device.py index c8827ab5..c23e24a2 100644 --- a/pmb/aportgen/device.py +++ b/pmb/aportgen/device.py @@ -239,7 +239,6 @@ def generate_apkbuild(args, pkgname, name, arch, flash_method): depends.append("mkbootimg") if flash_method == "0xffff": depends.append("uboot-tools") - depends.append("mesa-dri-gallium") # Whole APKBUILD depends.sort() diff --git a/test/test_aportgen_device_wizard.py b/test/test_aportgen_device_wizard.py index a26e3673..e2d0f716 100644 --- a/test/test_aportgen_device_wizard.py +++ b/test/test_aportgen_device_wizard.py @@ -129,7 +129,6 @@ def test_aportgen_device_wizard(args, monkeypatch): assert apkbuild["pkgname"] == "device-testsuite-testdevice" assert apkbuild["pkgdesc"] == "Testsuite Testdevice" assert apkbuild["depends"] == ["linux-testsuite-testdevice", - "mesa-dri-gallium", "postmarketos-base"] assert apkbuild_linux["pkgname"] == "linux-testsuite-testdevice" @@ -166,7 +165,6 @@ def test_aportgen_device_wizard(args, monkeypatch): answers["Path"] = "" deviceinfo, apkbuild, apkbuild_linux = generate(args, monkeypatch, answers) assert apkbuild["depends"] == ["linux-testsuite-testdevice", - "mesa-dri-gallium", "mkbootimg", "postmarketos-base"] @@ -177,7 +175,6 @@ def test_aportgen_device_wizard(args, monkeypatch): answers["Flash method"] = "0xffff" deviceinfo, apkbuild, apkbuild_linux = generate(args, monkeypatch, answers) assert apkbuild["depends"] == ["linux-testsuite-testdevice", - "mesa-dri-gallium", "postmarketos-base", "uboot-tools"]