[vdr-markad/f36] Update to 3.0.21
by Martin Gansser
Summary of changes:
13dd64f... Update to 3.0.21 (*)
(*) This commit already existed in another branch; no separate mail sent
2 years, 8 months
[vdr-markad] Update to 3.0.21
by Martin Gansser
commit 13dd64fbb8e42ae1c98f8d0ed450b78ece6fdef7
Author: Martin Gansser <mgansser(a)online.de>
Date: Fri Mar 25 18:51:32 2022 +0100
Update to 3.0.21
.gitignore | 1 +
sources | 2 +-
vdr-markad.spec | 5 ++++-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 661faae..fb46b08 100644
--- a/.gitignore
+++ b/.gitignore
@@ -46,3 +46,4 @@ vdr-plugin-markad-74e2a8c5382fa8bfacd12274899112724a1e0d51.tar.bz2
/vdr-markad-3.0.18.tar.gz
/vdr-markad-3.0.19.tar.gz
/vdr-markad-3.0.20.tar.gz
+/vdr-markad-3.0.21.tar.gz
diff --git a/sources b/sources
index 5087a41..ada4cc5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (vdr-markad-3.0.20.tar.gz) = 0b5365b948ef7fc9e760d942a640a8e6d3d24c85597688b87eefb286e62edb4a9b67bfb894432e94ae338431932402ec67d3853ca37c8277f5b49c94318f91e8
+SHA512 (vdr-markad-3.0.21.tar.gz) = 1d094f6b0f869355efddbd667c540b954c402dca7a1cd47f11f4104109646a796bfb4050ab87c1495d0ed48c941ce18ef2b72aee6a14878aeb99197fdcf593f9
diff --git a/vdr-markad.spec b/vdr-markad.spec
index 1ea9947..8f51f5e 100644
--- a/vdr-markad.spec
+++ b/vdr-markad.spec
@@ -1,5 +1,5 @@
Name: vdr-markad
-Version: 3.0.20
+Version: 3.0.21
Release: 1%{?dist}
Summary: Advanced commercial detection for VDR
License: GPLv2+
@@ -48,6 +48,9 @@ fi
%{vdr_vardir}/markad/
%changelog
+* Fri Mar 25 2022 Martin Gansser <martinkg(a)fedoraproject.org> - 3.0.21-1
+- Update to 3.0.21
+
* Mon Mar 07 2022 Martin Gansser <martinkg(a)fedoraproject.org> - 3.0.20-1
- Update to 3.0.20
2 years, 8 months
[xine-lib] Add patch for dav1d 1.0.0 support
by Xavier Bachelot
commit 4b0c1c5714c59687d8444198fea30ba68086c7d7
Author: Xavier Bachelot <xavier(a)bachelot.org>
Date: Fri Mar 25 10:15:59 2022 +0100
Add patch for dav1d 1.0.0 support
xine-lib-1.2.12-dav1d_100_support.patch | 40 +++++++++++++++++++++++++++++++++
xine-lib.spec | 9 +++++++-
2 files changed, 48 insertions(+), 1 deletion(-)
---
diff --git a/xine-lib-1.2.12-dav1d_100_support.patch b/xine-lib-1.2.12-dav1d_100_support.patch
new file mode 100644
index 0000000..f2b66b2
--- /dev/null
+++ b/xine-lib-1.2.12-dav1d_100_support.patch
@@ -0,0 +1,40 @@
+# HG changeset patch
+# User Petri Hintukainen <phintuka(a)users.sourceforge.net>
+# Date 1648142359 -7200
+# Thu Mar 24 19:19:19 2022 +0200
+# Node ID 97248a71021428baa49e2b2af34f566a3257452a
+# Parent b044102cc61810eec217d3911028ec18f87408cc
+dav1d 1.0.0 support
+
+https://sourceforge.net/p/xine/tickets/11/
+
+diff -r b044102cc618 -r 97248a710214 ChangeLog
+--- a/ChangeLog Thu Mar 17 14:05:08 2022 +0200
++++ b/ChangeLog Thu Mar 24 19:19:19 2022 +0200
+@@ -1,3 +1,5 @@
++ * Add dav1d 1.0.0 support.
++
+ xine-lib (1.2.12) 2022-03-09
+ * Add string tree library (generic info parser).
+ * Add OpenSL ES audio output plugin.
+diff -r b044102cc618 -r 97248a710214 src/video_dec/dav1d.c
+--- a/src/video_dec/dav1d.c Thu Mar 17 14:05:08 2022 +0200
++++ b/src/video_dec/dav1d.c Thu Mar 24 19:19:19 2022 +0200
+@@ -544,11 +544,17 @@
+
+ /* multithreading */
+ ncpu = xine_cpu_count();
++#if DAV1D_API_VERSION_MAJOR > 5
++ settings.n_threads = ncpu + 1;
++ xprintf(stream->xine, XINE_VERBOSITY_DEBUG, LOG_MODULE ": "
++ "Using %d threads\n", settings.n_threads);
++#else
+ settings.n_frame_threads = (ncpu > 8) ? 4 : (ncpu < 2) ? 1 : ncpu/2;
+ settings.n_tile_threads = MAX(1, ncpu - settings.n_frame_threads + 1);
+ xprintf(stream->xine, XINE_VERBOSITY_DEBUG, LOG_MODULE ": "
+ "Using %d frame threads, %d tile threads\n",
+ settings.n_frame_threads, settings.n_tile_threads);
++#endif
+
+ /* dri frame allocator */
+ settings.allocator.cookie = this;
diff --git a/xine-lib.spec b/xine-lib.spec
index 483e4c8..2fe5e4b 100644
--- a/xine-lib.spec
+++ b/xine-lib.spec
@@ -44,7 +44,7 @@
Summary: A multimedia engine
Name: xine-lib
Version: 1.2.12
-Release: 2%{?snapshot:.%{date}hg%{revision}}%{?dist}
+Release: 3%{?snapshot:.%{date}hg%{revision}}%{?dist}
License: GPLv2+
URL: https://www.xine-project.org/
%if ! 0%{?snapshot}
@@ -55,7 +55,10 @@ Source0: xine-lib-%{version}-%{date}hg%{revision}.tar.xz
# Script to make a snapshot
Source1: make_xinelib_snapshot.sh
+# https://sourceforge.net/p/xine/xine-lib-1.2/ci/928cdea835e656d6e1411c767e...
Patch1: xine-lib-1.2.12-fix_older_libcaca.patch
+# https://sourceforge.net/p/xine/xine-lib-1.2/ci/97248a71021428baa49e2b2af3...
+Patch2: xine-lib-1.2.12-dav1d_100_support.patch
Provides: xine-lib(plugin-abi) = %{plugin_abi}
%{?_isa:Provides: xine-lib(plugin-abi)%{?_isa} = %{plugin_abi}}
@@ -151,6 +154,7 @@ This package contains extra plugins for %{name}:
%if ! 0%{?snapshot}
%setup -q
%patch1 -p1
+%patch2 -p1
%else
%setup -q -n %{name}-%{version}-%{date}hg%{revision}
%endif
@@ -356,6 +360,9 @@ mkdir -p %{buildroot}%{codecdir}
%changelog
+* Fri Mar 25 2022 Xavier Bachelot <xavier(a)bachelot.org> - 1.2.12-3
+- Add patch for dav1d 1.0.0 support
+
* Thu Mar 10 2022 Xavier Bachelot <xavier(a)bachelot.org> - 1.2.12-2
- Fix build on EL7 and EL8
2 years, 8 months
[xtables-addons-kmod/el8] fix
by Leigh Scott
Summary of changes:
9a30302... fix (*)
(*) This commit already existed in another branch; no separate mail sent
2 years, 8 months
[xtables-addons-kmod] fix
by Leigh Scott
commit 9a30302f3eea0904b561e62aed972414168de326
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Thu Mar 24 14:02:33 2022 +0000
fix
el8_fix.patch | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
---
diff --git a/el8_fix.patch b/el8_fix.patch
index a09aafa..e88fa69 100644
--- a/el8_fix.patch
+++ b/el8_fix.patch
@@ -5,7 +5,18 @@
LINUX_VERSION_CODE >= KERNEL_VERSION(5, 9, 9) && LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0) || \
LINUX_VERSION_CODE >= KERNEL_VERSION(5, 4, 78) && LINUX_VERSION_CODE < KERNEL_VERSION(5, 5, 0) || \
- LINUX_VERSION_CODE >= KERNEL_VERSION(4, 19, 158) && LINUX_VERSION_CODE < KERNEL_VERSION(4, 20, 0)
-+ LINUX_VERSION_CODE >= KERNEL_VERSION(4, 18,0) && LINUX_VERSION_CODE < KERNEL_VERSION(4, 20, 0)
++ LINUX_VERSION_CODE >= KERNEL_VERSION(4, 18, 0) && LINUX_VERSION_CODE < KERNEL_VERSION(4, 20, 0)
#else
# define ip_route_me_harder(xnet, xsk, xskb, xaddrtype) ip_route_me_harder((xnet), (xskb), (xaddrtype))
# define ip6_route_me_harder(xnet, xsk, xskb) ip6_route_me_harder((xnet), (xskb))
+--- xtables-addons-3.19/extensions/xt_ipp2p.c
++++ xtables-addons-3.19/extensions/xt_ipp2p.c
+@@ -19,7 +19,7 @@ MODULE_AUTHOR("Eicke Friedrich/Klaus Deg
+ MODULE_DESCRIPTION("An extension to iptables to identify P2P traffic.");
+ MODULE_LICENSE("GPL");
+
+-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 1, 0)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 18, 0)
+ static inline unsigned int
+ ip_transport_len(const struct sk_buff *skb)
+ {
2 years, 8 months
[chromium-freeworld] fix
by Leigh Scott
commit b73dac256311f7b44c37e742fcd43a21f6179110
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Wed Mar 23 18:11:53 2022 +0000
fix
chromium-freeworld.spec | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
---
diff --git a/chromium-freeworld.spec b/chromium-freeworld.spec
index e42f075..7433cf3 100644
--- a/chromium-freeworld.spec
+++ b/chromium-freeworld.spec
@@ -88,6 +88,7 @@ BuildRequires: pkgconfig(libudev), pkgconfig(uuid)
BuildRequires: pkgconfig(xt)
BuildRequires: pkgconfig(xcb-proto)
BuildRequires: pkgconfig(gnome-keyring-1)
+BuildRequires: pkgconfig(libdrm)
BuildRequires: pkgconfig(libffi)
BuildRequires: expat-devel
BuildRequires: pciutils-devel
@@ -132,9 +133,6 @@ BuildRequires: harfbuzz-devel
%if %{system_libicu}
BuildRequires: libicu-devel
%endif
-%if %{system_libdrm}
-BuildRequires: libdrm-devel
-%endif
%if %{system_libjpeg}
BuildRequires: libjpeg-turbo-devel
%endif
2 years, 8 months
[nvidia-xconfig] Update to 510.60.02 release
by Leigh Scott
commit c7af9ac0fceaaf3302c4d6e8ea7690d8059eba8e
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Wed Mar 23 16:24:27 2022 +0000
Update to 510.60.02 release
.gitignore | 1 +
nvidia-xconfig.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 2f4eb36..b012c98 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ nvidia-xconfig-*.tar.bz2
/nvidia-xconfig-510.39.01.tar.gz
/nvidia-xconfig-510.47.03.tar.gz
/nvidia-xconfig-510.54.tar.gz
+/nvidia-xconfig-510.60.02.tar.gz
diff --git a/nvidia-xconfig.spec b/nvidia-xconfig.spec
index f495423..2437c46 100644
--- a/nvidia-xconfig.spec
+++ b/nvidia-xconfig.spec
@@ -1,6 +1,6 @@
Name: nvidia-xconfig
Epoch: 3
-Version: 510.54
+Version: 510.60.02
Release: 1%{?dist}
Summary: NVIDIA X configuration file editor
@@ -52,6 +52,9 @@ mkdir -p %{buildroot}%{_sbindir}
%changelog
+* Wed Mar 23 2022 Leigh Scott <leigh123linux(a)gmail.com> - 3:510.60.02-1
+- Update to 510.60.02 release
+
* Mon Feb 14 2022 Nicolas Chauvet <kwizart(a)gmail.com> - 3:510.54-1
- Update to 510.54
diff --git a/sources b/sources
index be30a63..437cf48 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (nvidia-xconfig-510.54.tar.gz) = b53192da2d68a9fdd0e9aed88fb88adc26151c4cadc1188349959e864d306eccf69131cfc3689f3a9df418db7e4399f3658deeeb392110fe4f5e4842bc2bd065
+SHA512 (nvidia-xconfig-510.60.02.tar.gz) = 77eeb06639d903f91d256ed2955ee813a8f70aa3336b98c9f1d7258523f2dc806c81ba5e26325f799722adcf8993f947113381bea40ee94d9f342475390eb3d7
2 years, 8 months