[buildsys-build-rpmfusion/el9] Bump for el9
by Nicolas Chauvet
commit d9dda93542ea11b97f347dbd45a82d557fc0dde9
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Wed Apr 6 16:58:36 2022 +0200
Bump for el9
buildsys-build-rpmfusion.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/buildsys-build-rpmfusion.spec b/buildsys-build-rpmfusion.spec
index c8ccc5a..711d277 100644
--- a/buildsys-build-rpmfusion.spec
+++ b/buildsys-build-rpmfusion.spec
@@ -3,7 +3,7 @@
Name: buildsys-build-%{repo}
Epoch: 11
Version: 35
-Release: 0.2
+Release: 0.3
Summary: Tools and files used by the %{repo} buildsys
License: MIT
@@ -77,6 +77,9 @@ sed -i 's|^default_prefix=.*|default_prefix=%{_datadir}/%{name}/|' \
%changelog
+* Wed Apr 06 2022 Nicolas Chauvet <kwizart(a)gmail.com> - 11:35-0.3
+- Bump for el9
+
* Sun Mar 14 2021 Nicolas Chauvet <kwizart(a)gmail.com> - 11:35-0.2
- rebuild for kernel default
2 years, 7 months
[tvheadend/f36] Update sources
by Mohamed ElMorabity
commit 46584d4208fd540b9c15118071695661ab9189c3
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Wed Apr 6 10:23:44 2022 +0200
Update sources
.gitignore | 1 +
sources | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/.gitignore b/.gitignore
index 95b247f..5cc38a7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,4 @@
/tvheadend-4.2.8.tar.gz
/tvheadend-eb59284.tar.gz
/tvheadend-6efa411.tar.gz
+/tvheadend-2bf1629.tar.gz
diff --git a/sources b/sources
index 618323c..d684479 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (tvheadend-6efa411.tar.gz) = a5deeed07e4cde36184d26ecaec00ba8240ac88782662a89f92e3b1da54eead4c1909fd7dba3a4b3be98da201b6493c0c7c702e700dd1d65492290c4b2ad0b69
+SHA512 (tvheadend-2bf1629.tar.gz) = 69cf151a5e9b32cf0e63b4ded953a129e684ef187b14b9e33d0a96a82f514fa722ebd81cadb4f78436f84855099fa6788ecd08a357b792db32fb72359622c890
2 years, 7 months
[tvheadend/f36] Update to latest snapshot + Fix build with GCC 12 + FFmpeg 4.0
by Mohamed ElMorabity
commit 2f5c45b4f709b526c17d679cf73e4856c660815c
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Wed Apr 6 10:09:59 2022 +0200
Update to latest snapshot + Fix build with GCC 12 + FFmpeg 4.0
tvheadend.spec | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
---
diff --git a/tvheadend.spec b/tvheadend.spec
index 826eddb..9b9354e 100644
--- a/tvheadend.spec
+++ b/tvheadend.spec
@@ -1,13 +1,13 @@
-%global commit 6efa411648cee0b9ca0ce5ab39ee847035c88566
+%global commit 2bf1629280bcd7d33e93df165985f3f6253c4b70
%global shortcommit %(c=%{commit}; echo ${c:0:7})
-%global commitdate 20210724
+%global commitdate 20220330
# https://tvheadend.org/issues/6026
%global _lto_cflags %nil
Name: tvheadend
Version: 4.3
-Release: 5.%{commitdate}git%{shortcommit}%{?dist}
+Release: 6.%{commitdate}git%{shortcommit}%{?dist}
Summary: TV streaming server and digital video recorder
# - Source code is GPLv3+
@@ -36,8 +36,8 @@ Patch5: %{name}-4.3-crypto_policies.patch
# https://bugzilla.rpmfusion.org/show_bug.cgi?id=5352)
Patch6: %{name}-4.3-libavresample.patch
-BuildRequires: /usr/bin/pathfix.py
BuildRequires: bzip2
+BuildRequires: compat-ffmpeg4
BuildRequires: gcc
BuildRequires: gettext
BuildRequires: gzip
@@ -46,13 +46,7 @@ BuildRequires: libdvbcsa-devel
BuildRequires: make
BuildRequires: pkgconfig(avahi-client)
BuildRequires: pkgconfig(dbus-1)
-BuildRequires: pkgconfig(libavcodec)
-BuildRequires: pkgconfig(libavfilter)
-BuildRequires: pkgconfig(libavformat)
-BuildRequires: pkgconfig(libavutil)
BuildRequires: pkgconfig(libpcre2-8)
-BuildRequires: pkgconfig(libswresample)
-BuildRequires: pkgconfig(libswscale)
BuildRequires: pkgconfig(libsystemd)
BuildRequires: pkgconfig(liburiparser)
BuildRequires: pkgconfig(libva)
@@ -114,6 +108,7 @@ done
%build
+export CFLAGS="$RPM_OPT_FLAGS -Wno-error=array-bounds -Wno-error=use-after-free -Wno-error=address"
echo "%{version}-%{release}" >rpm/version
%configure \
--disable-dvbscan \
@@ -128,12 +123,12 @@ echo "%{version}-%{release}" >rpm/version
--disable-libx265_static \
--enable-hdhomerun_client \
--enable-libsystemd_daemon \
- --python=%{__python3}
+ --python=%{python3}
%make_build \
V=1 \
- RUN_CSS="%{__python3} %{python3_sitearch}/rcssmin.py" \
- RUN_JS="%{__python3} %{python3_sitearch}/rjsmin.py"
+ RUN_CSS="%{python3} %{python3_sitearch}/rcssmin.py" \
+ RUN_JS="%{python3} %{python3_sitearch}/rjsmin.py"
%install
@@ -141,7 +136,7 @@ echo "%{version}-%{release}" >rpm/version
install -Dpm 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysusersdir}/%{name}.conf
-pathfix.py -pni "%{__python3} %{py3_shbang_opts}" $RPM_BUILD_ROOT%{_bindir}/{*.py,tvhmeta}
+%py3_shebang_fix $RPM_BUILD_ROOT%{_bindir}/{*.py,tvhmeta}
chmod 0755 $RPM_BUILD_ROOT%{_bindir}/{*.py,tvhmeta}
install -Dpm 0644 rpm/%{name}.service $RPM_BUILD_ROOT%{_unitdir}/%{name}.service
@@ -195,6 +190,11 @@ chmod 0644 $RPM_BUILD_ROOT%{_mandir}/man1/%{name}.1
%changelog
+* Mon Apr 04 2022 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 4.3-6.20220330git2bf1629
+- Update to latest snapshot
+- Add workaround to build with GCC 12
+- Force build with FFmpeg 4.0
+
* Wed Feb 09 2022 RPM Fusion Release Engineering <sergiomb(a)rpmfusion.org> - 4.3-5.20210724git6efa411
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2 years, 7 months
[tvheadend] Update sources
by Mohamed ElMorabity
commit 64d2e309ad853d6cce965c98c4695cc8086c4ce7
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Wed Apr 6 10:23:44 2022 +0200
Update sources
.gitignore | 1 +
sources | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/.gitignore b/.gitignore
index 95b247f..5cc38a7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,4 @@
/tvheadend-4.2.8.tar.gz
/tvheadend-eb59284.tar.gz
/tvheadend-6efa411.tar.gz
+/tvheadend-2bf1629.tar.gz
diff --git a/sources b/sources
index 618323c..d684479 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (tvheadend-6efa411.tar.gz) = a5deeed07e4cde36184d26ecaec00ba8240ac88782662a89f92e3b1da54eead4c1909fd7dba3a4b3be98da201b6493c0c7c702e700dd1d65492290c4b2ad0b69
+SHA512 (tvheadend-2bf1629.tar.gz) = 69cf151a5e9b32cf0e63b4ded953a129e684ef187b14b9e33d0a96a82f514fa722ebd81cadb4f78436f84855099fa6788ecd08a357b792db32fb72359622c890
2 years, 7 months
[tvheadend] Update to latest snapshot + Fix build with GCC 12 + FFmpeg 4.0
by Mohamed ElMorabity
commit a4a4683f240a07b22e1916d221d68fd01728247c
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Wed Apr 6 10:09:59 2022 +0200
Update to latest snapshot + Fix build with GCC 12 + FFmpeg 4.0
tvheadend.spec | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
---
diff --git a/tvheadend.spec b/tvheadend.spec
index 826eddb..9b9354e 100644
--- a/tvheadend.spec
+++ b/tvheadend.spec
@@ -1,13 +1,13 @@
-%global commit 6efa411648cee0b9ca0ce5ab39ee847035c88566
+%global commit 2bf1629280bcd7d33e93df165985f3f6253c4b70
%global shortcommit %(c=%{commit}; echo ${c:0:7})
-%global commitdate 20210724
+%global commitdate 20220330
# https://tvheadend.org/issues/6026
%global _lto_cflags %nil
Name: tvheadend
Version: 4.3
-Release: 5.%{commitdate}git%{shortcommit}%{?dist}
+Release: 6.%{commitdate}git%{shortcommit}%{?dist}
Summary: TV streaming server and digital video recorder
# - Source code is GPLv3+
@@ -36,8 +36,8 @@ Patch5: %{name}-4.3-crypto_policies.patch
# https://bugzilla.rpmfusion.org/show_bug.cgi?id=5352)
Patch6: %{name}-4.3-libavresample.patch
-BuildRequires: /usr/bin/pathfix.py
BuildRequires: bzip2
+BuildRequires: compat-ffmpeg4
BuildRequires: gcc
BuildRequires: gettext
BuildRequires: gzip
@@ -46,13 +46,7 @@ BuildRequires: libdvbcsa-devel
BuildRequires: make
BuildRequires: pkgconfig(avahi-client)
BuildRequires: pkgconfig(dbus-1)
-BuildRequires: pkgconfig(libavcodec)
-BuildRequires: pkgconfig(libavfilter)
-BuildRequires: pkgconfig(libavformat)
-BuildRequires: pkgconfig(libavutil)
BuildRequires: pkgconfig(libpcre2-8)
-BuildRequires: pkgconfig(libswresample)
-BuildRequires: pkgconfig(libswscale)
BuildRequires: pkgconfig(libsystemd)
BuildRequires: pkgconfig(liburiparser)
BuildRequires: pkgconfig(libva)
@@ -114,6 +108,7 @@ done
%build
+export CFLAGS="$RPM_OPT_FLAGS -Wno-error=array-bounds -Wno-error=use-after-free -Wno-error=address"
echo "%{version}-%{release}" >rpm/version
%configure \
--disable-dvbscan \
@@ -128,12 +123,12 @@ echo "%{version}-%{release}" >rpm/version
--disable-libx265_static \
--enable-hdhomerun_client \
--enable-libsystemd_daemon \
- --python=%{__python3}
+ --python=%{python3}
%make_build \
V=1 \
- RUN_CSS="%{__python3} %{python3_sitearch}/rcssmin.py" \
- RUN_JS="%{__python3} %{python3_sitearch}/rjsmin.py"
+ RUN_CSS="%{python3} %{python3_sitearch}/rcssmin.py" \
+ RUN_JS="%{python3} %{python3_sitearch}/rjsmin.py"
%install
@@ -141,7 +136,7 @@ echo "%{version}-%{release}" >rpm/version
install -Dpm 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysusersdir}/%{name}.conf
-pathfix.py -pni "%{__python3} %{py3_shbang_opts}" $RPM_BUILD_ROOT%{_bindir}/{*.py,tvhmeta}
+%py3_shebang_fix $RPM_BUILD_ROOT%{_bindir}/{*.py,tvhmeta}
chmod 0755 $RPM_BUILD_ROOT%{_bindir}/{*.py,tvhmeta}
install -Dpm 0644 rpm/%{name}.service $RPM_BUILD_ROOT%{_unitdir}/%{name}.service
@@ -195,6 +190,11 @@ chmod 0644 $RPM_BUILD_ROOT%{_mandir}/man1/%{name}.1
%changelog
+* Mon Apr 04 2022 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 4.3-6.20220330git2bf1629
+- Update to latest snapshot
+- Add workaround to build with GCC 12
+- Force build with FFmpeg 4.0
+
* Wed Feb 09 2022 RPM Fusion Release Engineering <sergiomb(a)rpmfusion.org> - 4.3-5.20210724git6efa411
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2 years, 7 months
[intel-media-driver/f36] Rebuilt
by Nicolas Chauvet
commit a49822941ab9378112c11e1735611737950dd7d8
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Wed Apr 6 08:30:06 2022 +0200
Rebuilt
intel-media-driver.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/intel-media-driver.spec b/intel-media-driver.spec
index b824fae..f663c26 100644
--- a/intel-media-driver.spec
+++ b/intel-media-driver.spec
@@ -2,7 +2,7 @@
Name: intel-media-driver
Version: 22.3.1
-Release: 1%{?dist}.1
+Release: 1%{?dist}.2
Summary: The Intel Media Driver for VAAPI
License: MIT and BSD
URL: https://github.com/intel/media-driver
@@ -94,6 +94,9 @@ rm -rf %{buildroot}%{_libdir}/pkgconfig
%changelog
+* Wed Apr 06 2022 Nicolas Chauvet <kwizart(a)gmail.com> - 22.3.1-1.2
+- Rebuilt for missing i686
+
* Tue Apr 05 2022 Nicolas Chauvet <kwizart(a)gmail.com> - 22.3.1-1.1
- rebuilt
2 years, 7 months
[intel-media-driver/f36] Rebuilt for missing override
by Nicolas Chauvet
commit fe67349578c233ff9d41a6d0b3d875fd4e677ec1
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Tue Apr 5 13:41:03 2022 +0200
Rebuilt for missing override
intel-media-driver.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/intel-media-driver.spec b/intel-media-driver.spec
index 792fba7..b824fae 100644
--- a/intel-media-driver.spec
+++ b/intel-media-driver.spec
@@ -2,7 +2,7 @@
Name: intel-media-driver
Version: 22.3.1
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: The Intel Media Driver for VAAPI
License: MIT and BSD
URL: https://github.com/intel/media-driver
@@ -94,6 +94,9 @@ rm -rf %{buildroot}%{_libdir}/pkgconfig
%changelog
+* Tue Apr 05 2022 Nicolas Chauvet <kwizart(a)gmail.com> - 22.3.1-1.1
+- rebuilt
+
* Fri Apr 01 2022 Nicolas Chauvet <kwizart(a)gmail.com> - 22.3.1-1
- Update to 22.3.1
2 years, 7 months