[ffmpeg] rebuild
by Leigh Scott
commit f7dece40ab511333fdc9615da16a8b0c1742f044
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Sun Jul 16 13:45:41 2023 +0100
rebuild
ffmpeg.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 7a55e1a..ba95cbc 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -112,7 +112,7 @@ ExclusiveArch: armv7hnl
Summary: Digital VCR and streaming server
Name: ffmpeg%{?flavor}
Version: 6.0
-Release: 14%{?date:.%{?date}%{?date:git}%{?rel}}%{?dist}
+Release: 15%{?date:.%{?date}%{?date:git}%{?rel}}%{?dist}
License: %{ffmpeg_license}
URL: https://ffmpeg.org/
%if 0%{?date}
@@ -532,6 +532,9 @@ strip %{buildroot}%{_libdir}/%{name}/libavcodec.so.*
%changelog
+* Sun Jul 16 2023 Leigh Scott <leigh123linux(a)gmail.com> - 6.0-15
+- rebuilt
+
* Fri Jun 23 2023 Leigh Scott <leigh123linux(a)gmail.com> - 6.0-14
- rebuilt
1 year, 4 months
[telegram-desktop/f37] Rebuilt due to Qt 6 private API export changes.
by Vitaly Zaitsev
commit c668be9bef4384e3acd06493296e6d945c5e857f
Author: Vitaly Zaitsev <vitaly(a)easycoding.org>
Date: Sun Jul 16 12:37:12 2023 +0200
Rebuilt due to Qt 6 private API export changes.
telegram-desktop.spec | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/telegram-desktop.spec b/telegram-desktop.spec
index 4219cb7..3c626ba 100644
--- a/telegram-desktop.spec
+++ b/telegram-desktop.spec
@@ -6,7 +6,7 @@
Name: telegram-desktop
Version: 4.8.4
-Release: 1%{?dist}
+Release: 2%{?dist}
# Application and 3rd-party modules licensing:
# * Telegram Desktop - GPL-3.0-or-later with OpenSSL exception -- main tarball;
@@ -38,16 +38,17 @@ BuildRequires: cmake(Qt6OpenGLWidgets)
BuildRequires: cmake(Qt6Svg)
BuildRequires: cmake(Qt6WaylandClient)
BuildRequires: cmake(Qt6Widgets)
+BuildRequires: cmake(fmt)
BuildRequires: cmake(range-v3)
BuildRequires: cmake(tg_owt)
BuildRequires: cmake(tl-expected)
-BuildRequires: cmake(fmt)
BuildRequires: pkgconfig(alsa)
BuildRequires: pkgconfig(gio-2.0)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(glibmm-2.68) >= 2.76.0
BuildRequires: pkgconfig(gobject-2.0)
+BuildRequires: pkgconfig(gobject-introspection-1.0)
BuildRequires: pkgconfig(hunspell)
BuildRequires: pkgconfig(jemalloc)
BuildRequires: pkgconfig(libavcodec)
@@ -73,8 +74,8 @@ BuildRequires: pkgconfig(xcb)
BuildRequires: pkgconfig(xcb-keysyms)
BuildRequires: pkgconfig(xcb-record)
BuildRequires: pkgconfig(xcb-screensaver)
-BuildRequires: pkgconfig(gobject-introspection-1.0)
+BuildRequires: boost-devel
BuildRequires: cmake
BuildRequires: desktop-file-utils
BuildRequires: ffmpeg-devel
@@ -90,7 +91,6 @@ BuildRequires: ninja-build
BuildRequires: python3
BuildRequires: qt6-qtbase-private-devel
BuildRequires: qt6-qtbase-static
-BuildRequires: boost-devel
%{?_qt6:Requires: %{_qt6}%{?_isa} = %{_qt6_version}}
Requires: hicolor-icon-theme
@@ -162,6 +162,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
%{_metainfodir}/*.metainfo.xml
%changelog
+* Sun Jul 16 2023 Vitaly Zaitsev <vitaly(a)easycoding.org> - 4.8.4-2
+- Rebuilt due to Qt 6 private API export changes.
+
* Wed Jun 14 2023 Vasiliy Glazov <vascom2(a)gmail.com> - 4.8.4-1
- Updated to version 4.8.4.
1 year, 4 months
[mixxx] Temporarily disable tests after build failures
by Uwe Klotz
commit ec301b4d9ba32940700a5238d47bc0c951bc0117
Author: Uwe Klotz <uwe.klotz(a)gmail.com>
Date: Fri Jul 14 14:40:03 2023 +0200
Temporarily disable tests after build failures
mixxx.spec | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index 7290fa5..ca5da8d 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -146,7 +146,10 @@ cp %{SOURCE2} %{__cmake_builddir}/downloads
-DVINYLCONTROL=ON \
-DWAVPACK=ON
-%cmake_build
+# TODO: Remove `--target mixxx` after building the tests with the
+# RedHat hardened GCC is fixed.
+# <https://github.com/mixxxdj/mixxx/issues/11742>
+%cmake_build --target mixxx
%install
@@ -188,11 +191,13 @@ rm -rf \
%endif
# Run tests
-%if "%{?ctest_exclude_regex}" == ""
- %ctest --timeout %ctest_timeout_secs
-%else
- %ctest --timeout %ctest_timeout_secs --exclude-regex "%ctest_exclude_regex"
-%endif
+# TODO: Renable tests after build failures with the RedHat hardened GCC are fixed.
+# <https://github.com/mixxxdj/mixxx/issues/11742>
+#if "%{?ctest_exclude_regex}" == ""
+# #ctest --timeout %ctest_timeout_secs
+#else
+# #ctest --timeout %ctest_timeout_secs --exclude-regex "%ctest_exclude_regex"
+#endif
# Validate AppStream data
appstreamcli \
1 year, 4 months
[mixxx] Replace %ctest3 with %ctest
by Uwe Klotz
commit e0e654cbe54addd331d7238873bcc984faabea55
Author: Uwe Klotz <uwe.klotz(a)gmail.com>
Date: Fri Jul 14 14:37:09 2023 +0200
Replace %ctest3 with %ctest
mixxx.spec | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index 9925616..7290fa5 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -189,9 +189,9 @@ rm -rf \
# Run tests
%if "%{?ctest_exclude_regex}" == ""
- %ctest3 --timeout %ctest_timeout_secs
+ %ctest --timeout %ctest_timeout_secs
%else
- %ctest3 --timeout %ctest_timeout_secs --exclude-regex "%ctest_exclude_regex"
+ %ctest --timeout %ctest_timeout_secs --exclude-regex "%ctest_exclude_regex"
%endif
# Validate AppStream data
1 year, 4 months
[mixxx/f36] Fix e-mail address in %changelog
by Uwe Klotz
commit c415ccc36322a068f6ec00802f56dc7563b7c28f
Author: Uwe Klotz <uwe.klotz(a)gmail.com>
Date: Fri Jun 2 00:54:20 2023 +0200
Fix e-mail address in %changelog
mixxx.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index 836de04..90b2188 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -214,7 +214,7 @@ appstreamcli \
%{_udevrulesdir}/69-%{name}-usb-uaccess.rules
%changelog
-* Wed May 10 2023 Uwe Klotz <uklotz(a)gmail.com> - 2.3.5-1
+* Wed May 10 2023 Uwe Klotz <uwe.klotz(a)gmail.com> - 2.3.5-1
- New upstream release 2.3.5
* Fri Mar 03 2023 Uwe Klotz <uklotz(a)mixxx.org> - 2.3.4-1
1 year, 4 months
[mixxx/f37] Fix e-mail address in %changelog
by Uwe Klotz
commit 45343500e59a18d230df8134b92c982afcf83bd0
Author: Uwe Klotz <uwe.klotz(a)gmail.com>
Date: Fri Jun 2 00:54:20 2023 +0200
Fix e-mail address in %changelog
mixxx.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index cfcac8d..f515eea 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -214,7 +214,7 @@ appstreamcli \
%{_udevrulesdir}/69-%{name}-usb-uaccess.rules
%changelog
-* Wed May 10 2023 Uwe Klotz <uklotz(a)gmail.com> - 2.3.5-1
+* Wed May 10 2023 Uwe Klotz <uwe.klotz(a)gmail.com> - 2.3.5-1
- New upstream release 2.3.5
* Fri Mar 03 2023 Uwe Klotz <uklotz(a)mixxx.org> - 2.3.4-1
1 year, 4 months
[mixxx] New upstream snapshot 2.4.0-beta
by Uwe Klotz
commit c84d56e6d93ed416cf5e2f29e8876e9410f0b3c6
Author: Uwe Klotz <uwe.klotz(a)gmail.com>
Date: Fri Jun 2 00:54:38 2023 +0200
New upstream snapshot 2.4.0-beta
mixxx.spec | 28 +++++++++++++++++++---------
sources | 3 ++-
2 files changed, 21 insertions(+), 10 deletions(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index 98b728f..9925616 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -4,16 +4,19 @@
%endif
# Optional: Package version suffix for pre-releases, e.g. "beta" or "rc"
-#global extraver beta
+%global extraver beta
# Optional: Only used for untagged snapshot versions
-#global gitcommit 060b86aa7bc36e99df0ede476b04eec0f19735d4
+%global gitcommit f73413685fe173a07239c66a3a8d619c954f8e74
# Format: <yyyymmdd>
-#global gitcommitdate 20210615
+%global gitcommitdate 20230713
# Additional sources
%global libkeyfinder_version 2.2.6
+# Additional sources
+%global libdjinterop_version 0.19.1
+
%if "%{?gitcommit}" == ""
# (Pre-)Releases
%global sources %{version}%{?extraver:-%{extraver}}
@@ -24,15 +27,16 @@
%endif
Name: mixxx
-Version: 2.3.5
-Release: 1%{?extraver:.%{extraver}}%{?snapinfo:.%{snapinfo}}%{?dist}
+Version: 2.4.0
+Release: 0.1%{?extraver:.%{extraver}}%{?snapinfo:.%{snapinfo}}%{?dist}
Summary: Mixxx is open source software for DJ'ing
License: GPLv2+
URL: http://www.mixxx.org
Source0: https://github.com/mixxxdj/%{name}/archive/%{sources}/%{name}-%{sources}....
# Append the actual downloaded file name with a preceding slash '/'
-# as a fragment identifier to the URL to populate SOURCE1 correctly
+# as a fragment identifier to the URL to populate SOURCE<n> correctly
Source1: https://github.com/mixxxdj/libkeyfinder/archive/refs/tags/v%{libkeyfinder...
+Source2: https://github.com/xsco/libdjinterop/archive/refs/tags/%{libdjinterop_ver...
# Build Tools
BuildRequires: desktop-file-utils
@@ -56,8 +60,7 @@ BuildRequires: libGL-devel
BuildRequires: libGLU-devel
BuildRequires: libchromaprint-devel
BuildRequires: fftw-devel
-# TODO: Add MS GSL support for the upcoming release v2.4
-#BuildRequires: guidelines-support-library-devel
+BuildRequires: guidelines-support-library-devel
BuildRequires: libid3tag-devel
BuildRequires: libmad-devel
BuildRequires: libmodplug-devel
@@ -73,6 +76,7 @@ BuildRequires: portmidi-devel
BuildRequires: protobuf-lite-devel
BuildRequires: qt5-linguist
BuildRequires: qt5-qtbase-devel
+BuildRequires: qt5-qtdeclarative-devel
BuildRequires: qt5-qtscript-devel
BuildRequires: qt5-qtsvg-devel
BuildRequires: qt5-qtx11extras-devel
@@ -84,6 +88,7 @@ BuildRequires: sqlite-devel
BuildRequires: taglib-devel
BuildRequires: upower-devel
BuildRequires: wavpack-devel
+BuildRequires: zlib-devel
# Runtime Requirements
Requires: faad2
@@ -110,10 +115,11 @@ echo "#pragma once" > src/build.h
echo "#define BUILD_REV \"%{snapinfo}\"" >> src/build.h
%endif
-# Copy the libkeyfinder archive from the sources folder into the
+# Copy the source archives from the sources folder into the
# dedicated downloads folder of the build directory.
mkdir -p %{__cmake_builddir}/downloads
cp %{SOURCE1} %{__cmake_builddir}/downloads
+cp %{SOURCE2} %{__cmake_builddir}/downloads
%build
@@ -126,6 +132,7 @@ cp %{SOURCE1} %{__cmake_builddir}/downloads
-DBATTERY=ON \
-DBROADCAST=ON \
-DBULK=ON \
+ -DENGINEPRIME=ON \
-DFAAD=ON \
-DFFMPEG=ON \
-DHID=ON \
@@ -210,6 +217,9 @@ appstreamcli \
%{_udevrulesdir}/69-%{name}-usb-uaccess.rules
%changelog
+* Thu Jul 13 2023 Uwe Klotz <uwe.klotz(a)gmail.com> - 2.4.0-0.1
+- New upstream snapshot 2.4.0-beta
+
* Wed May 10 2023 Uwe Klotz <uwe.klotz(a)gmail.com> - 2.3.5-1
- New upstream release 2.3.5
diff --git a/sources b/sources
index 6382f53..f3af47b 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,3 @@
+SHA512 (libdjinterop-0.19.1.tar.gz) = 7becb83ab62412b3d437ddee23b248a697b162f6b8a64070cd8a9782a4fce7726baaf12ea193b8e21bcf561a00039ab1ae1f04d00e6cbe8344ec19751779db14
SHA512 (libkeyfinder-2.2.6.zip) = 23ffcc4da59019349824b60dd1b125d559f39d7731fe7f00cdc8f4a97a342fa59ef5183c4e272ff4c5fd06eaa89c581e07fdb26bcfd3c98cc42d2dcc29e13e1e
-SHA512 (mixxx-2.3.5.tar.gz) = d81208e8fe91e1843bac7ab512dc248457266b935bf8720694f2bedf96389ba35789d68ea77fcecf0a02682fb75de2752612b2c44a49b8eba52323cab2b82e51
+SHA512 (mixxx-f73413685fe173a07239c66a3a8d619c954f8e74.tar.gz) = 4196da40e93c1942cbb58ae481c34ff0c2f36c81d72985e3c287f41963ad30ef431d834dd8bbd852b21a95ae44e61dddb58dfb3d9f494eccd5ed8dd2f80b1b51
1 year, 4 months