Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xf86-video-nvidia: update to 545.29.02 #8090

Merged
merged 3 commits into from Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions packages/x11/driver/xf86-video-nvidia/package.mk
Expand Up @@ -6,8 +6,8 @@ PKG_NAME="xf86-video-nvidia"
# Remember to run "python3 packages/x11/driver/xf86-video-nvidia/scripts/make_nvidia_udev.py" and commit
# changes to "packages/x11/driver/xf86-video-nvidia/udev.d/96-nvidia.rules" whenever bumping version.
# The build host may require installation of python3-lxml and python3-requests packages.
PKG_VERSION="470.199.02"
PKG_SHA256="9c86f9ef6aceaf2b292407aa161b98d817b2eb10a615f971d29a20c2a748ad09"
PKG_VERSION="545.29.02"
PKG_SHA256="b1b4059ca4685d35bbfa9c3350351956a74a2e4a3e0fb34f3fad3653d4fdafb1"
PKG_ARCH="x86_64"
PKG_LICENSE="nonfree"
PKG_SITE="https://www.nvidia.com/en-us/drivers/unix/"
Expand Down Expand Up @@ -90,6 +90,10 @@ makeinstall_target() {
cp -P nvidia_layers.json ${INSTALL}/usr/share/vulkan/icd.d
fi

# nvidia-gpucomp
mkdir -p ${INSTALL}/usr/lib
cp -P libnvidia-gpucomp.so.${PKG_VERSION} ${INSTALL}/usr/lib

# nvidia-tls
mkdir -p ${INSTALL}/usr/lib
cp -P libnvidia-tls.so.${PKG_VERSION} ${INSTALL}/usr/lib
Expand Down

This file was deleted.

This file was deleted.

@@ -1,7 +1,12 @@
#!/usr/bin/env python3

import os, sys
import requests

try:
import requests
except:
print('requests module not installed.\n\nOn Ubuntu, use "sudo apt install python3-requests"')
sys.exit(1)

try:
from lxml import html
Expand Down