[rpmfusion-packager/f36: 3/3] add comment
by Sérgio M. Basto
commit 6cebea0aefa1bf0b606655d4667ba75a7bf4da8f
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Tue Sep 6 17:04:33 2022 +0100
add comment
rpmfusion-packager.spec | 1 +
1 file changed, 1 insertion(+)
---
diff --git a/rpmfusion-packager.spec b/rpmfusion-packager.spec
index b834713..559e547 100644
--- a/rpmfusion-packager.spec
+++ b/rpmfusion-packager.spec
@@ -42,6 +42,7 @@ Requires: libabigail-fedora
%else
# EPEL8, ATM, don't have /usr/bin/fedabipkgdiff
# PR proposed: https://src.fedoraproject.org/rpms/libabigail/pull-request/5
+#Requires: libabigail
%endif
# Tools required by the scripts included
2 years, 2 months
[rpmfusion-packager/f36] (3 commits) ...add comment
by Sérgio M. Basto
Summary of changes:
56ef164... Rebuilt for Python 3.11 (*)
154770e... Only requires rfpkg, rfpkg will requires the rest (*)
6cebea0... add comment
(*) This commit already existed in another branch; no separate mail sent
2 years, 2 months
[rfpkg] Disable multilibs builds on el8, 9 and 9-next
by Sérgio M. Basto
commit 051ad3daa85ae6f445a0b0762ae8f36c292c2996
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Tue Sep 6 16:58:50 2022 +0100
Disable multilibs builds on el8, 9 and 9-next
...able-multilibs-builds-on-el8-9-and-9-next.patch | 27 ++++++++++++++++++++++
rfpkg.spec | 6 ++++-
2 files changed, 32 insertions(+), 1 deletion(-)
---
diff --git a/0001-disable-multilibs-builds-on-el8-9-and-9-next.patch b/0001-disable-multilibs-builds-on-el8-9-and-9-next.patch
new file mode 100644
index 0000000..50ab980
--- /dev/null
+++ b/0001-disable-multilibs-builds-on-el8-9-and-9-next.patch
@@ -0,0 +1,27 @@
+From 0370cf8a24e90382dcb7164188df95e263efed99 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= <sergio(a)serjux.com>
+Date: Mon, 5 Sep 2022 23:23:25 +0100
+Subject: [PATCH] disable multilibs builds on el8, 9 and 9-next
+
+---
+ rfpkg/__init__.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/rfpkg/__init__.py b/rfpkg/__init__.py
+index ada3868..75b4e9f 100644
+--- a/rfpkg/__init__.py
++++ b/rfpkg/__init__.py
+@@ -190,8 +190,8 @@ class Commands(pyrpkg.Commands):
+ 'opencore-amr', 'rtmpdump', 'vo-amrwbenc', 'x264', 'x265', 'xvidcore', 'zsnes',
+ 'Cg', 'dega-sdl', 'gens', 'pcsx2', 'steam', 'xorg-x11-drv-nvidia',
+ 'xorg-x11-drv-nvidia-470xx', 'xorg-x11-drv-nvidia-390xx',
+- 'xorg-x11-drv-nvidia-340xx', 'unace'] and self.branch_merge not in ['el6', 'f28',
+- 'f29', 'f30'] and self.namespace in ['free', 'nonfree']:
++ 'xorg-x11-drv-nvidia-340xx', 'unace'] and self.branch_merge not in ['el8', 'el9',
++ 'el9-next'] and self.namespace in ['free', 'nonfree']:
+ self._target += "-multilibs"
+
+ def _tag2version(self, dest_tag):
+--
+2.37.2
+
diff --git a/rfpkg.spec b/rfpkg.spec
index d8aeba7..e4bfb25 100644
--- a/rfpkg.spec
+++ b/rfpkg.spec
@@ -5,7 +5,7 @@
Name: rfpkg
Version: 1.27.0
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: RPM Fusion utility for working with dist-git
License: GPLv2+
Group: Applications/System
@@ -17,6 +17,7 @@ Patch3: 0003-Fix-the-download-of-old-sources-with-md5-hash.patch
# Removing duplicate retire parser because of incompatibility with Python 3.11
# See https://github.com/rpmfusion-infra/rfpkg/pull/25
Patch4: 0001-Remove-register_retire-from-rfpkg.patch
+Patch5: 0001-disable-multilibs-builds-on-el8-9-and-9-next.patch
BuildArch: noarch
@@ -151,6 +152,9 @@ nosetests
%changelog
+* Tue Sep 06 2022 Sérgio Basto <sergio(a)serjux.com> - 1.27.0-6
+- Disable multilibs builds on el8, 9 and 9-next
+
* Sat Jun 25 2022 Robert-André Mauchin <zebob.m(a)gmail.com> - 1.27.0-5
- Rebuilt for Python 3.11
2 years, 2 months
[rfpkg] Requires revision
by Sérgio M. Basto
commit 2b9cfc3dc985bb031e1229a3bd4ea59e3b5e79ec
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Tue Sep 6 16:30:07 2022 +0100
Requires revision
rfpkg.spec | 19 ++++++++++++++-----
1 file changed, 14 insertions(+), 5 deletions(-)
---
diff --git a/rfpkg.spec b/rfpkg.spec
index 9c4efe7..d8aeba7 100644
--- a/rfpkg.spec
+++ b/rfpkg.spec
@@ -30,11 +30,6 @@ BuildArch: noarch
BuildRequires: pkgconfig
BuildRequires: bash-completion
BuildRequires: python-rpm-macros
-
-Requires: git-core
-Requires: koji
-Requires: redhat-rpm-config
-
%if %{with python2}
BuildRequires: python2
BuildRequires: python2-rpm-macros
@@ -79,6 +74,20 @@ Requires: python3-rpmfusion-cert
Requires: rfpkgdb-cli
%endif
+# python3-rpkg already requires
+# mock
+# redhat-rpm-config
+# rpm-build
+# rpmlint
+Requires: git-core
+Requires: koji
+%if 0%{?rhel} && 0%{?rhel} <= 7
+Requires: rpmdevtools
+Requires: mock-rpmfusion-free
+%else
+Suggests: rpmdevtools
+Suggests: mock-rpmfusion-free
+%endif
%description
RPM Fusion utility for working with dist-git.
2 years, 2 months
[qt5-qtwebengine-freeworld/f35] (10 commits) ...feat: update to 5.15.10
by Ankur Sinha
Summary of changes:
d3575d4... Rebuild for libvpx 1.11.0 in Rawhide (*)
b7d9ea2... Screen sharing support under Wayland (#2054690) (*)
ab8fbaa... Revert "Screen sharing support under Wayland (#2054690)" (*)
7a89ff1... Switch to bundled FFmpeg on F36+, FFmpeg 5 not currently su (*)
729c96d... Fix changelog date. (*)
4f1f430... Enable libicu on EL9+ (*)
018cc08... Updated to version 5.15.9. (*)
31262aa... Restored pulseaudio-12.2-headers.tar.gz. (*)
1658075... - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass (*)
d6a5308... feat: update to 5.15.10 (*)
(*) This commit already existed in another branch; no separate mail sent
2 years, 2 months
[ffmpeg] Switch from glslang to shaderc
by Leigh Scott
commit 15c0273f9aa04e29213bdb5de6067af7303b0f29
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Mon Sep 5 18:56:36 2022 +0100
Switch from glslang to shaderc
ffmpeg.spec | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 943a58a..ee9cd27 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -38,7 +38,6 @@
%global _with_webp 1
%global _with_zmq 1
%else
-# libavfilter has undefined glslang symbols
%global _without_vulkan 1
%endif
%ifarch x86_64
@@ -112,7 +111,7 @@ ExclusiveArch: armv7hnl
Summary: Digital VCR and streaming server
Name: ffmpeg%{?flavor}
Version: 5.1.1
-Release: 2%{?date:.%{?date}%{?date:git}%{?rel}}%{?dist}
+Release: 3%{?date:.%{?date}%{?date:git}%{?rel}}%{?dist}
License: %{ffmpeg_license}
URL: http://ffmpeg.org/
%if 0%{?date}
@@ -213,7 +212,7 @@ BuildRequires: texinfo
%{?_with_vmaf:BuildRequires: libvmaf-devel >= 1.5.2}
%{?_with_wavpack:BuildRequires: wavpack-devel}
%{!?_without_vidstab:BuildRequires: vid.stab-devel}
-%{!?_without_vulkan:BuildRequires: vulkan-loader-devel glslang-devel >= 11.0}
+%{!?_without_vulkan:BuildRequires: vulkan-loader-devel pkgconfig(shaderc)}
%{!?_without_x264:BuildRequires: x264-devel >= 0.0.0-0.31}
%{!?_without_x265:BuildRequires: x265-devel}
%{!?_without_xvid:BuildRequires: xvidcore-devel}
@@ -357,7 +356,7 @@ This package contains development files for %{name}
%{?_with_vmaf:--enable-libvmaf --enable-version3} \\\
%{?_with_vapoursynth:--enable-vapoursynth} \\\
%{!?_without_vpx:--enable-libvpx} \\\
- %{!?_without_vulkan:--enable-vulkan --enable-libglslang} \\\
+ %{!?_without_vulkan:--enable-vulkan --enable-libshaderc} \\\
%{?_with_webp:--enable-libwebp} \\\
%{!?_without_x264:--enable-libx264} \\\
%{!?_without_x265:--enable-libx265} \\\
@@ -518,6 +517,9 @@ mv %{buildroot}%{_libdir}{/%{name},}/pkgconfig
%changelog
+* Mon Sep 05 2022 Leigh Scott <leigh123linux(a)gmail.com> - 5.1.1-3
+- Switch from glslang to shaderc
+
* Sun Sep 04 2022 Leigh Scott <leigh123linux(a)gmail.com> - 5.1.1-2
- move libs to a subdirectory to allow parallel installation with ffmpeg-free
2 years, 2 months
[zoneminder/el9] Rebuild for ffmpeg
by Leigh Scott
Summary of changes:
a94b787... Rebuild for ffmpeg (*)
(*) This commit already existed in another branch; no separate mail sent
2 years, 2 months
[zoneminder] Rebuild for ffmpeg
by Leigh Scott
commit a94b787b9fa16588536b70449f2d6dc99dc70f57
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Mon Sep 5 16:52:37 2022 +0100
Rebuild for ffmpeg
zoneminder.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/zoneminder.spec b/zoneminder.spec
index f146a53..2fbfc21 100644
--- a/zoneminder.spec
+++ b/zoneminder.spec
@@ -37,7 +37,7 @@
Name: zoneminder
Version: 1.36.25
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A camera monitoring and analysis tool
Group: System Environment/Daemons
# jQuery is under the MIT license: https://jquery.org/license/
@@ -432,6 +432,9 @@ ln -sf %{_sysconfdir}/zm/www/zoneminder.nginx.conf %{_sysconfdir}/zm/www/zonemin
%dir %attr(755,nginx,nginx) %{_localstatedir}/log/zoneminder
%changelog
+* Mon Sep 05 2022 Leigh Scott <leigh123linux(a)gmail.com> - 1.36.25-2
+- Rebuild for ffmpeg
+
* Sun Sep 04 2022 Andrew Bauer <zonexpertconsulting(a)outlook.com> - 1.36.25-1
- 1.36.25 release
2 years, 2 months
[gstreamer1-libav/el9] Rebuild for ffmpeg
by Leigh Scott
commit a28028bc4e6dbd49023cb3195b9f3fdff7c8d64d
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Mon Sep 5 16:50:25 2022 +0100
Rebuild for ffmpeg
gstreamer1-libav.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index 953bad0..775b9da 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,6 +1,6 @@
Name: gstreamer1-libav
Version: 1.18.4
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
License: LGPLv2+
URL: https://gstreamer.freedesktop.org/
@@ -71,6 +71,9 @@ export PKG_CONFIG_PATH="%{_libdir}/compat-ffmpeg4/pkgconfig"
%endif
%changelog
+* Mon Sep 05 2022 Leigh Scott <leigh123linux(a)gmail.com> - 1.18.4-2
+- Rebuild for ffmpeg
+
* Wed Mar 17 2021 Leigh Scott <leigh123linux(a)gmail.com> - 1.18.4-1
- 1.18.4
2 years, 2 months