[ffmpegthumbs] Update ffmpegthumbs to 21.12.2
by Sérgio M. Basto
commit 76bccb4d38a5c8a5ae924e199c7090cac35387aa
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sun Feb 27 14:28:49 2022 +0000
Update ffmpegthumbs to 21.12.2
Add ffmpeg-5 PR
lang has disappear from the package
.gitignore | 1 +
sources | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/.gitignore b/.gitignore
index 547430c..c53926a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,4 @@ ffmpegthumbs-4.13.97.tar.xz
/ffmpegthumbs-20.08.1.tar.xz
/ffmpegthumbs-20.12.2.tar.xz
/ffmpegthumbs-21.04.2.tar.xz
+/ffmpegthumbs-21.12.2.tar.xz
diff --git a/sources b/sources
index e38aef2..d492a7c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (ffmpegthumbs-21.04.2.tar.xz) = c645d5277ed31ca105b1f0115602a7e5c026669f252f1bc6bedc6d0b0343a15f87857d16505b3de92b38b2c4747d0bf72efe554e0baae1db91523a73a6da96d2
+SHA512 (ffmpegthumbs-21.12.2.tar.xz) = 433f5487b13e665898cf30a5f49e4d7971d9225d0ecd8b061fcd17310db87506b8e1ac36d56e67d483d16cd2b915e4a5a4b488bddb7186a054c7c3ef1c945062
2 years, 10 months
[qt5-qtwebengine-freeworld/f36] (4 commits) ...Fix changelog date.
by Kevin Kofler
Summary of changes:
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. (*)
(*) This commit already existed in another branch; no separate mail sent
2 years, 10 months
[ffmpegthumbs] Update ffmpegthumbs to 21.12.2
by Sérgio M. Basto
commit ddd366f21e8c62b4ab62e315ec7f6e804f128c65
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sat Feb 26 22:45:47 2022 +0000
Update ffmpegthumbs to 21.12.2
Add ffmpeg-5 PR
lang has disappear from the package
16.patch | 28 ++++++++++++++++++++++++++++
ffmpegthumbs.spec | 20 ++++++++++++--------
2 files changed, 40 insertions(+), 8 deletions(-)
---
diff --git a/16.patch b/16.patch
new file mode 100644
index 0000000..6232215
--- /dev/null
+++ b/16.patch
@@ -0,0 +1,28 @@
+From 8c9491775a5af072bfbcf1a2fdfc1f016d1333cf Mon Sep 17 00:00:00 2001
+From: Antonio Rojas <arojas(a)archlinux.org>
+Date: Tue, 25 Jan 2022 12:53:45 +0100
+Subject: [PATCH] Fix build with FFmpeg 5
+
+---
+ ffmpegthumbnailer/moviedecoder.h | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/ffmpegthumbnailer/moviedecoder.h b/ffmpegthumbnailer/moviedecoder.h
+index 502abe9..03eb6dd 100644
+--- a/ffmpegthumbnailer/moviedecoder.h
++++ b/ffmpegthumbnailer/moviedecoder.h
+@@ -57,7 +57,11 @@ private:
+ int m_VideoStream;
+ AVFormatContext* m_pFormatContext;
+ AVCodecContext* m_pVideoCodecContext;
++#if LIBAVCODEC_VERSION_MAJOR < 59
+ AVCodec* m_pVideoCodec;
++#else
++ const AVCodec* m_pVideoCodec;
++#endif
+ AVStream* m_pVideoStream;
+ AVFrame* m_pFrame;
+ quint8* m_pFrameBuffer;
+--
+GitLab
+
diff --git a/ffmpegthumbs.spec b/ffmpegthumbs.spec
index 6f6b8c6..3457fdf 100644
--- a/ffmpegthumbs.spec
+++ b/ffmpegthumbs.spec
@@ -1,8 +1,8 @@
%undefine __cmake_in_source_build
Name: ffmpegthumbs
-Version: 21.04.2
-Release: 4%{?dist}
+Version: 21.12.2
+Release: 1%{?dist}
Summary: KDE ffmpegthumbnailer service
License: GPLv2+
@@ -13,7 +13,8 @@ URL: https://projects.kde.org/projects/kde/kdemultimedia/%{name}
%else
%global stable stable
%endif
-Source0: http://download.kde.org/%{stable}/release-service/%{version}/src/%{name}-...
+Source0: https://download.kde.org/%{stable}/release-service/%{version}/src/%{name}...
+Patch0: https://invent.kde.org/multimedia/ffmpegthumbs/-/merge_requests/16.patch
BuildRequires: extra-cmake-modules
BuildRequires: pkgconfig(libjpeg)
@@ -34,7 +35,7 @@ KDE ffmpegthumbnailer service
%prep
-%autosetup
+%autosetup -p1
%build
@@ -46,11 +47,9 @@ KDE ffmpegthumbnailer service
%install
%cmake3_install
-%find_lang ffmpegthumbs
-
-%files -f ffmpegthumbs.lang
-%license COPYING
+%files
+%license LICENSES/*
%{_kf5_qtplugindir}/ffmpegthumbs.so
%{_kf5_datadir}/kservices5/ffmpegthumbs.desktop
%{_kf5_datadir}/config.kcfg/ffmpegthumbnailersettings5.kcfg
@@ -59,6 +58,11 @@ KDE ffmpegthumbnailer service
%changelog
+* Sat Feb 26 2022 Sérgio Basto <sergio(a)serjux.com> - 21.12.2-1
+- Update ffmpegthumbs to 21.12.2
+- Add ffmpeg-5 PR
+- lang has disappear from the package
+
* Wed Feb 09 2022 RPM Fusion Release Engineering <sergiomb(a)rpmfusion.org> - 21.04.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2 years, 10 months
[vlc/el8: 25/25] Merge branch 'master' into el8
by Leigh Scott
commit 88ad6006c1c20192545f17036497749a6df14d09
Merge: d4875fe 88ad023
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Sat Feb 26 21:15:36 2022 +0000
Merge branch 'master' into el8
...by-ref.-from-getConnectionEndpointAddress.patch | 50 +++++++++++
Remove_legacy_caca.patch | 98 ++++++++++++++++++++++
sources | 2 +-
vlc.spec | 73 ++++++++++++----
4 files changed, 204 insertions(+), 19 deletions(-)
---
2 years, 10 months
[vlc/el8] (25 commits) ...Merge branch 'master' into el8
by Leigh Scott
Summary of changes:
b4c36b7... Rebuilt (*)
3baadf2... Make check non-fatal (*)
4c7bbeb... Mass rebuild for x264-0.163 (*)
b9e3759... - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass (*)
8e9d909... Rebuilt (*)
e953da7... Rebuild (*)
4cfe09e... Rebuilt for new ffmpeg snapshot (*)
3e020fd... fix (*)
d4bf359... Apply upstream ffmpeg fix to f36+ (*)
3d5a592... Update to snapshot (*)
46051cf... Update patch (*)
c008e7e... Rebuilt (*)
410c535... Add sources (*)
9de2aaa... Update 3.x snapshot (*)
5a5f6fb... Fix build with new live555 (*)
b2e2ca7... Add WIP remaining patch for FFmpeg-5.0 (*)
0d3efe4... Apply patch (*)
2247057... Bump (*)
43434e5... fix (*)
2bdfb59... Reword conditions (*)
62442a1... Rebuilt (*)
285ea57... Rebuild (*)
98c4ce0... Update to 3.0.17 (*)
88ad023... Fixup (*)
88ad600... Merge branch 'master' into el8
(*) This commit already existed in another branch; no separate mail sent
2 years, 10 months
[tarsnap/f36] Update tarsnap to 1.0.40
by Sérgio M. Basto
Summary of changes:
6846f79... Update tarsnap to 1.0.40 (*)
(*) This commit already existed in another branch; no separate mail sent
2 years, 10 months
[tarsnap] Update tarsnap to 1.0.40
by Sérgio M. Basto
commit 6846f79d9bf453fb94c851ba39beea8d308bd65b
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sat Feb 26 18:57:49 2022 +0000
Update tarsnap to 1.0.40
.gitignore | 1 +
sources | 2 +-
tarsnap.spec | 8 +++++---
3 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e759dfa..c7a9cac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
tarsnap-autoconf-1.0.36.1.tgz
/tarsnap-4db3705fa3ce0b0d45244a51acf78f2504988400.tar.gz
/tarsnap-1.0.39.tar.gz
+/tarsnap-1.0.40.tar.gz
diff --git a/sources b/sources
index ffc7e3a..7f4ff4c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e2dfdbf1443080306c7d09bc35d21d92 tarsnap-1.0.39.tar.gz
+SHA512 (tarsnap-1.0.40.tar.gz) = 54ba631e4db69a3cf14d927e5fb4a85debf3dcf82a263a405fd1689e86dba1bcf8c83b804f763096bba9714464de988c225203b5634d5fa5d0301e4a009f0bcc
diff --git a/tarsnap.spec b/tarsnap.spec
index 0905303..f27a9a3 100644
--- a/tarsnap.spec
+++ b/tarsnap.spec
@@ -3,8 +3,8 @@
#global shortcommit0 #(c=#{commit}; echo ${c:0:7})
Name: tarsnap
-Version: 1.0.39
-Release: 11%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist}
+Version: 1.0.40
+Release: 1%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist}
Summary: Online encrypted backup service (client)
Group: Applications/Archiving
@@ -33,7 +33,6 @@ Group: Applications/Archiving
# - tar/getdate.c
License: Tarsnap License and BSD and Public Domain
URL: https://www.tarsnap.com/
-#Source0: https://www.tarsnap.com/download/tarsnap-autoconf-%{version}.tgz
Source0: https://github.com/Tarsnap/tarsnap/archive/%{version}/%{name}-%{version}....
BuildRequires: gcc-c++
@@ -94,6 +93,9 @@ autoreconf -fiv
%config(noreplace) %{_sysconfdir}/bash_completion.d/%{name}-keymgmt
%changelog
+* Sat Feb 26 2022 Sérgio Basto <sergio(a)serjux.com> - 1.0.40-1
+- Update tarsnap to 1.0.40
+
* Thu Feb 10 2022 RPM Fusion Release Engineering <sergiomb(a)rpmfusion.org> - 1.0.39-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2 years, 10 months
[vlc/f34: 25/25] Merge branch 'master' into f34
by Leigh Scott
commit 78f8dd084c47c0912a6a8a5ed0bb554eaf377541
Merge: e292d39 88ad023
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Sat Feb 26 17:00:23 2022 +0000
Merge branch 'master' into f34
...by-ref.-from-getConnectionEndpointAddress.patch | 50 +++++++++++
Remove_legacy_caca.patch | 98 ++++++++++++++++++++++
sources | 2 +-
vlc.spec | 73 ++++++++++++----
4 files changed, 204 insertions(+), 19 deletions(-)
---
2 years, 10 months
[vlc/f34] (25 commits) ...Merge branch 'master' into f34
by Leigh Scott
Summary of changes:
b4c36b7... Rebuilt (*)
3baadf2... Make check non-fatal (*)
4c7bbeb... Mass rebuild for x264-0.163 (*)
b9e3759... - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass (*)
8e9d909... Rebuilt (*)
e953da7... Rebuild (*)
4cfe09e... Rebuilt for new ffmpeg snapshot (*)
3e020fd... fix (*)
d4bf359... Apply upstream ffmpeg fix to f36+ (*)
3d5a592... Update to snapshot (*)
46051cf... Update patch (*)
c008e7e... Rebuilt (*)
410c535... Add sources (*)
9de2aaa... Update 3.x snapshot (*)
5a5f6fb... Fix build with new live555 (*)
b2e2ca7... Add WIP remaining patch for FFmpeg-5.0 (*)
0d3efe4... Apply patch (*)
2247057... Bump (*)
43434e5... fix (*)
2bdfb59... Reword conditions (*)
62442a1... Rebuilt (*)
285ea57... Rebuild (*)
98c4ce0... Update to 3.0.17 (*)
88ad023... Fixup (*)
78f8dd0... Merge branch 'master' into f34
(*) This commit already existed in another branch; no separate mail sent
2 years, 10 months