makedeb


firmware-nouveau 340.108-1


This package provides video & pgraph firmwares for all NVIDIA chipsets that need them

Click here to go back to the commit logs for firmware-nouveau.

Commit:


Hash: 41bcb01225b04435690c3b86ca5555fa4a51cacb

Message: Removed python2 dependency

Diff


diff --git a/.SRCINFO b/.SRCINFO
index 82ca8f5..fd67bbb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -6,7 +6,6 @@ pkgbase = firmware-nouveau
 	install = .INSTALL
 	arch = any
 	license = custom
-	makedepends = python2
 	depends = initramfs-tools
 	source = https://raw.github.com/envytools/firmware/master/extract_firmware.py
 	source = https://us.download.nvidia.com/XFree86/Linux-x86/340.108/NVIDIA-Linux-x86-340.108.run
diff --git a/PKGBUILD b/PKGBUILD
index 7d874d6..498ed2e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,7 +12,6 @@ install=.INSTALL
 arch=('any')
 license=('custom')
 depends=('initramfs-tools')
-makedepends=('python2')
 source=("https://raw.github.com/envytools/firmware/master/extract_firmware.py"
         "https://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run")
 md5sums=('SKIP'
@@ -22,12 +21,10 @@ sha256sums=('SKIP'
 
 build() {
   sh NVIDIA-Linux-x86-${pkgver}.run --extract-only
-  python2 extract_firmware.py
+  python3 extract_firmware.py
 }
 
 package() {
   install -dm 0755 "${pkgdir}"/lib/firmware/nouveau/
   cp -a nv* vuc-* "${pkgdir}"/lib/firmware/nouveau/
 }
-
-# vim:set ts=2 sw=2 et: