[smplayer] Update smplayer to 20.4.2
by Leigh Scott
commit 49c255cf80c7ca27dfb895e0cf30342be9d58cf3
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Thu Apr 16 10:23:23 2020 +0100
Update smplayer to 20.4.2
.gitignore | 1 +
smplayer.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e27d30a..8a7bf18 100644
--- a/.gitignore
+++ b/.gitignore
@@ -55,3 +55,4 @@ smtube-16.3.0.tar.bz2
/smplayer-19.10.0.tar.bz2
/smplayer-19.10.2.tar.bz2
/smplayer-20.4.0.tar.bz2
+/smplayer-20.4.2.tar.bz2
diff --git a/smplayer.spec b/smplayer.spec
index 88677e0..5e2779f 100644
--- a/smplayer.spec
+++ b/smplayer.spec
@@ -1,5 +1,5 @@
Name: smplayer
-Version: 20.4.0
+Version: 20.4.2
%global smplayer_themes_ver 18.6.0
%global smplayer_skins_ver 15.2.0
Release: 1%{?dist}
@@ -171,6 +171,9 @@ fi
%{_datadir}/smplayer/themes/
%changelog
+* Thu Apr 16 2020 Leigh Scott <leigh123linux(a)gmail.com> - 20.4.2-1
+- Update smplayer to 20.4.2
+
* Thu Apr 09 2020 Sérgio Basto <sergio(a)serjux.com> - 20.4.0-1
- Update smplayer to 20.4.0
diff --git a/sources b/sources
index b5bf47d..da0890f 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
-SHA512 (smplayer-20.4.0.tar.bz2) = 2ab84d342dcdb2343d6b5705e59eaa89e0e7abe18f626777d22919b1604be66747112a007abd469385be69f3ba3b0387e267c56c0f2935d761ad8289b87770fe
+SHA512 (smplayer-20.4.2.tar.bz2) = 03404c2e7ba00d257ab2db82fe837eb4ab314c2b32a262ad18e75b245d43f812533f7e4609a6fe335c5c2e370cfb5fac8f0b3b8917c33a22c5b84f0074039156
SHA512 (smplayer-themes-18.6.0.tar.bz2) = e16f2dc50015b0034134a096ca99603167309c31bb50a44679c343b5f9c0ea786a17a0fb64eb1d71c61dacbd2a295adc0a82d23bd0837adf96664120f33adda6
SHA512 (smplayer-skins-15.2.0.tar.bz2) = 58d1dcc9caf5d93b7f0692ffa7ff4875eb8dd83db78293aee25a713a1f6007c83af556215cd1f7666dec98bc323b074c6b1fdb66eb9560176db842669c206a83
4 years, 7 months
[nvidia-kmod] Patch for kernel-5.7rc
by Leigh Scott
commit aa3e2abe04abf94d62145dd5507cc1212b558387
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Thu Apr 16 10:04:49 2020 +0100
Patch for kernel-5.7rc
kernel-5.7.patch | 22 ++++++++++++++++++++++
nvidia-kmod.spec | 7 ++++++-
2 files changed, 28 insertions(+), 1 deletion(-)
---
diff --git a/kernel-5.7.patch b/kernel-5.7.patch
new file mode 100644
index 0000000..a6821b5
--- /dev/null
+++ b/kernel-5.7.patch
@@ -0,0 +1,22 @@
+diff --git a/kernel/conftest.sh b/kernel/conftest.sh
+index 8f807a1..af29636 100755
+--- a/kernel/conftest.sh
++++ b/kernel/conftest.sh
+@@ -143,6 +143,7 @@ test_headers() {
+ FILES="$FILES video/nv_internal.h"
+ FILES="$FILES asm/book3s/64/hash-64k.h"
+ FILES="$FILES asm/set_memory.h"
++ FILES="$FILES asm/pgtable.h"
+ FILES="$FILES asm/prom.h"
+ FILES="$FILES asm/powernv.h"
+ FILES="$FILES asm/tlbflush.h"
+@@ -466,6 +467,9 @@ compile_test() {
+ # It does not exist on all architectures.
+ #
+ CODE="
++ #if defined(NV_ASM_PGTABLE_H_PRESENT)
++ #include <asm/pgtable.h>
++ #endif
+ #if defined(NV_ASM_SET_MEMORY_H_PRESENT)
+ #include <asm/set_memory.h>
+ #else
diff --git a/nvidia-kmod.spec b/nvidia-kmod.spec
index a4e3523..00cd42b 100644
--- a/nvidia-kmod.spec
+++ b/nvidia-kmod.spec
@@ -12,12 +12,13 @@ Name: nvidia-kmod
Epoch: 3
Version: 440.82
# Taken over by kmodtool
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: NVIDIA display driver kernel module
License: Redistributable, no modification permitted
URL: http://www.nvidia.com/
Source11: nvidia-kmodtool-excludekernel-filterfile
+Patch0: kernel-5.7.patch
# needed for plague to make sure it builds for i586 and i686
ExclusiveArch: x86_64
@@ -41,6 +42,7 @@ kmodtool --target %{_target_cpu} --repo rpmfusion --kmodname %{name} --filterf
%setup -T -c
tar --use-compress-program xz -xf %{_datadir}/%{name}-%{version}/%{name}-%{version}-%{_target_cpu}.tar.xz
# patch loop
+%patch0 -p1
for kernel_version in %{?kernel_versions} ; do
cp -a kernel _kmod_build_${kernel_version%%___*}
@@ -68,6 +70,9 @@ done
%changelog
+* Wed Apr 15 2020 Leigh Scott <leigh123linux(a)gmail.com> - 3:440.82-2
+- Patch for kernel-5.7rc
+
* Tue Apr 07 2020 leigh123linux <leigh123linux(a)googlemail.com> - 3:440.82-1
- Update to 440.82 release
4 years, 7 months
[VirtualBox-kmod] Update to 6.1.6
by Sérgio M. Basto
commit 1dd1f46b7999f7fe8ec26261754956ee6116ca71
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Wed Apr 15 01:50:01 2020 +0100
Update to 6.1.6
VirtualBox-kmod.spec | 9 ++++++---
update_vbox.sh | 4 ++--
2 files changed, 8 insertions(+), 5 deletions(-)
---
diff --git a/VirtualBox-kmod.spec b/VirtualBox-kmod.spec
index c2a5906..bd64ae4 100644
--- a/VirtualBox-kmod.spec
+++ b/VirtualBox-kmod.spec
@@ -31,13 +31,13 @@
#global prerel RC1
%global prereltag %{?prerel:_%(awk 'BEGIN {print toupper("%{prerel}")}')}
-%global vboxrel 3
+%global vboxrel 1
%global vboxreltag %{?vboxrel:-%{vboxrel}}
%global __arch_install_post /usr/lib/rpm/check-rpaths /usr/lib/rpm/check-buildroot
Name: VirtualBox-kmod
-Version: 6.1.4
-Release: 3%{?dist}
+Version: 6.1.6
+Release: 1%{?dist}
#Release: 1%%{?prerel:.%%{prerel}}%%{?dist}
Summary: Kernel module for VirtualBox
@@ -133,6 +133,9 @@ DIRS=$(ls %{name}-%{version} |wc -l)
%changelog
+* Wed Apr 15 2020 Sérgio Basto <sergio(a)serjux.com> - 6.1.6-1
+- Update to 6.1.6
+
* Fri Mar 20 2020 Sérgio Basto <sergio(a)serjux.com> - 6.1.4-3
- Force use of VirtualBox-kmodsrc-6.1.4-3
diff --git a/update_vbox.sh b/update_vbox.sh
index 53c33fa..71e62dd 100755
--- a/update_vbox.sh
+++ b/update_vbox.sh
@@ -1,5 +1,5 @@
-VERSION=6.1.4
-REL=2
+VERSION=6.1.6
+REL=1
RAWHIDE=33
REPOS="32 31 30"
4 years, 7 months
[VirtualBox/f31] Update VBox to 6.1.6
by Sérgio M. Basto
Summary of changes:
133b869... Update VBox to 6.1.6 (*)
(*) This commit already existed in another branch; no separate mail sent
4 years, 7 months