[telegram-desktop] Update to 5.7.1.
by Vasiliy Glazov
commit 373733bb43c2dbe410b77091a82cd677b13200db
Author: Vasiliy Glazov <v.glazov(a)1440.space>
Date: Sat Nov 2 15:43:55 2024 +0300
Update to 5.7.1.
sources | 2 +-
telegram-desktop.spec | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/sources b/sources
index f859ca3..e810309 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (tdesktop-5.7.0-full.tar.gz) = 62cb1ed20a25c0ad46c61a5169e65b41e5090b347fc7a0810be7da88345c48c210c5c9064738e025d77ab25cc79ac595abb067a52ab0f259ae1f9eafaa04804e
+SHA512 (tdesktop-5.7.1-full.tar.gz) = 06c465c6766ba2bb349bb37dd629fa494275cd9c165357ae39bfa7d967f0cce40c587788e88551705923d7bab089fc6a11d3175902c930dca7506a3bfb7d09b5
diff --git a/telegram-desktop.spec b/telegram-desktop.spec
index 86d83c5..512b89c 100644
--- a/telegram-desktop.spec
+++ b/telegram-desktop.spec
@@ -5,7 +5,7 @@
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
Name: telegram-desktop
-Version: 5.7.0
+Version: 5.7.1
Release: 1%{?dist}
# Application and 3rd-party modules licensing:
@@ -177,6 +177,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
%{_metainfodir}/*.metainfo.xml
%changelog
+* Sat Nov 02 2024 Vasiliy Glazov <vascom2(a)gmail.com> - 5.7.1-1
+- Update to 5.7.1
+
* Fri Nov 01 2024 Vasiliy Glazov <vascom2(a)gmail.com> - 5.7.0-1
- Update to 5.7.0
2 weeks, 5 days
[mixxx] Add new dependency and prepare for F41
by Luís Correia
commit 3b58033adc41deb658b46f286133e4110cad0446
Author: Luís Correia <luis.f.correia(a)gmail.com>
Date: Sat Nov 2 10:48:45 2024 +0000
Add new dependency and prepare for F41
sources | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/sources b/sources
index 1355a84..72dc893 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
SHA512 (mixxx-2.4.1.tar.gz) = f62e0ce3bd016d411eda544a621e33b791517931c268391089cfe3101cd1e123eeb0b80bc8c138e7c67bb41cf378c6973f5c9284d5c720c693fd632f62372569
-SHA512 (libkeyfinder-2.2.6.zip) = 23ffcc4da59019349824b60dd1b125d559f39d7731fe7f00cdc8f4a97a342fa59ef5183c4e272ff4c5fd06eaa89c581e07fdb26bcfd3c98cc42d2dcc29e13e1e
+SHA512 (libkeyfinder-2.2.8.zip) = 0fd5c566430f5ffeca4e8a01e925c384ee8206d12b90eeb21c479baf822e741f2d1ac583a0355c380817994232deca314a40c0f65acb3cea84b173627948f3e3
SHA512 (libdjinterop-0.22.1.tar.gz) = 1c35d8609342f133cf002d1908d5746c411a9d5e74b42a7ec045545f07a3f4b8a89ce9a95d2fc17edd8970facafbee1b6d8a9283fcd8c74c9cb96ff61f15d47d
2 weeks, 5 days
[performous] Backport upstream patch for ffmpeg 7
by Mamoru Tasaka
commit 6b012a92d209b580da4dccfc301abae41926cf15
Author: Mamoru TASAKA <mtasaka(a)fedoraproject.org>
Date: Sat Nov 2 12:44:16 2024 +0900
Backport upstream patch for ffmpeg 7
performous-pr1005-ffmpeg-7.patch | 316 +++++++++++++++++++++++++++++++++++++++
performous.spec | 7 +-
2 files changed, 322 insertions(+), 1 deletion(-)
---
diff --git a/performous-pr1005-ffmpeg-7.patch b/performous-pr1005-ffmpeg-7.patch
new file mode 100644
index 0000000..f6c0bf1
--- /dev/null
+++ b/performous-pr1005-ffmpeg-7.patch
@@ -0,0 +1,316 @@
+From 391a92b2448a782ec03508549415bea04bc2cfe8 Mon Sep 17 00:00:00 2001
+From: Gregorio Litenstein <g.litenstein(a)gmail.com>
+Date: Fri, 13 Sep 2024 17:14:43 -0300
+Subject: [PATCH 1/4] ffmpeg: Use AVChannelLayout API when available
+
+This adds support for ffmpeg(a)5.1+
+---
+ .github/workflows/macos.yml | 9 +----
+ game/ffmpeg.cc | 65 ++++++++++++++++++++++---------------
+ game/ffmpeg.hh | 11 ++++++-
+ 3 files changed, 50 insertions(+), 35 deletions(-)
+
+diff --git a/game/ffmpeg.cc b/game/ffmpeg.cc
+index db204fb885..f2bc349c4f 100644
+--- a/game/ffmpeg.cc
++++ b/game/ffmpeg.cc
+@@ -6,8 +6,8 @@
+ #include "util.hh"
+
+ #include "aubio/aubio.h"
+-#include <memory>
+ #include <iostream>
++#include <memory>
+ #include <sstream>
+ #include <stdexcept>
+ #include <system_error>
+@@ -31,6 +31,11 @@ extern "C" {
+
+ #define AUDIO_CHANNELS 2
+
++#if !defined(__PRETTY_FUNCTION__) && defined(_MSC_VER)
++#define __PRETTY_FUNCTION__ __FUNCSIG__
++#endif
++
++#define FFMPEG_CHECKED(func, args, caller) FFmpeg::check(func args, caller)
+
+ namespace {
+ std::string ffversion(unsigned ver) {
+@@ -229,18 +234,13 @@ static void printFFmpegInfo() {
+ #endif
+ }
+
+-class FFmpeg::Error: public std::runtime_error {
+- public:
+- Error(const FFmpeg &self, int errorValue): std::runtime_error(msgFmt(self, errorValue)) {}
+- private:
+- static std::string msgFmt(const FFmpeg &self, int errorValue) {
++std::string FFmpeg::Error::msgFmt(const FFmpeg &self, int errorValue, const char *func) {
+ char message[AV_ERROR_MAX_STRING_SIZE];
+ av_strerror(errorValue, message, AV_ERROR_MAX_STRING_SIZE);
+ std::ostringstream oss;
+- oss << "FFmpeg Error: Processing file " << self.m_filename << " code=" << errorValue << ", error=" << message;
++ oss << "FFmpeg Error: Processing file " << self.m_filename << " code=" << errorValue << ", error=" << message << ", in function=" << func;
+ return oss.str();
+- }
+-};
++}
+
+ FFmpeg::FFmpeg(fs::path const& _filename, int mediaType) : m_filename(_filename) {
+ static std::once_flag static_infos;
+@@ -249,12 +249,10 @@ FFmpeg::FFmpeg(fs::path const& _filename, int mediaType) : m_filename(_filename)
+ av_log_set_level(AV_LOG_ERROR);
+ {
+ AVFormatContext *avfctx = nullptr;
+- auto err = avformat_open_input(&avfctx, m_filename.string().c_str(), nullptr, nullptr);
+- if (err) throw Error(*this, err);
++ FFMPEG_CHECKED(avformat_open_input, (&avfctx, m_filename.string().c_str(), nullptr, nullptr), __PRETTY_FUNCTION__);
+ m_formatContext.reset(avfctx);
+ }
+- auto err = avformat_find_stream_info(m_formatContext.get(), nullptr);
+- if (err < 0) throw Error(*this, err);
++ FFMPEG_CHECKED(avformat_find_stream_info, (m_formatContext.get(), nullptr), __PRETTY_FUNCTION__);
+ m_formatContext->flags |= AVFMT_FLAG_GENPTS;
+ // Find a track and open the codec
+ #if (LIBAVFORMAT_VERSION_INT) >= (AV_VERSION_INT(59, 0, 100))
+@@ -262,7 +260,7 @@ FFmpeg::FFmpeg(fs::path const& _filename, int mediaType) : m_filename(_filename)
+ #endif
+ AVCodec* codec = nullptr;
+ m_streamId = av_find_best_stream(m_formatContext.get(), static_cast<AVMediaType>(mediaType), -1, -1, &codec, 0);
+- if (m_streamId < 0) throw Error(*this, m_streamId);
++ if (m_streamId < 0) throw Error(*this, m_streamId, __PRETTY_FUNCTION__);
+
+ decltype(m_codecContext) pCodecCtx{avcodec_alloc_context3(codec), avcodec_free_context};
+ avcodec_parameters_to_context(pCodecCtx.get(), m_formatContext->streams[m_streamId]->codecpar);
+@@ -270,8 +268,7 @@ FFmpeg::FFmpeg(fs::path const& _filename, int mediaType) : m_filename(_filename)
+ static std::mutex s_avcodec_mutex;
+ // ffmpeg documentation is clear on the fact that avcodec_open2 is not thread safe.
+ std::lock_guard<std::mutex> l(s_avcodec_mutex);
+- err = avcodec_open2(pCodecCtx.get(), codec, nullptr);
+- if (err < 0) throw Error(*this, err);
++ FFMPEG_CHECKED(avcodec_open2, (pCodecCtx.get(), codec, nullptr), __PRETTY_FUNCTION__);
+ }
+ pCodecCtx->workaround_bugs = FF_BUG_AUTODETECT;
+ m_codecContext = std::move(pCodecCtx);
+@@ -290,13 +287,29 @@ AudioFFmpeg::AudioFFmpeg(fs::path const& filename, int rate, AudioCb audioCb) :
+ // setup resampler
+ m_resampleContext.reset(swr_alloc());
+ if (!m_resampleContext) throw std::runtime_error("Cannot create resampling context");
+- av_opt_set_int(m_resampleContext.get(), "in_channel_layout", m_codecContext->channel_layout ? static_cast<std::int64_t>(m_codecContext->channel_layout) : av_get_default_channel_layout(m_codecContext->channels), 0);
+- av_opt_set_int(m_resampleContext.get(), "out_channel_layout", av_get_default_channel_layout(AUDIO_CHANNELS), 0);
+- av_opt_set_int(m_resampleContext.get(), "in_sample_rate", m_codecContext->sample_rate, 0);
+- av_opt_set_int(m_resampleContext.get(), "out_sample_rate", static_cast<int>(m_rate), 0);
+- av_opt_set_int(m_resampleContext.get(), "in_sample_fmt", m_codecContext->sample_fmt, 0);
+- av_opt_set_int(m_resampleContext.get(), "out_sample_fmt", AV_SAMPLE_FMT_S16, 0);
+- swr_init(m_resampleContext.get());
++
++#if (LIBAVFORMAT_VERSION_INT) >= (AV_VERSION_INT(59,0,0))
++ AVChannelLayout inLayout;
++ AVChannelLayout outLayout;
++ av_channel_layout_default(&outLayout, AUDIO_CHANNELS);
++ if (m_codecContext->ch_layout.order != AV_CHANNEL_ORDER_UNSPEC) {
++ FFMPEG_CHECKED(av_channel_layout_copy, (&inLayout, &m_codecContext->ch_layout), __PRETTY_FUNCTION__);
++ }
++ else {
++ av_channel_layout_default(&inLayout, m_codecContext->ch_layout.nb_channels);
++ }
++ av_channel_layout_default(&outLayout, AUDIO_CHANNELS);
++ FFMPEG_CHECKED(av_opt_set_chlayout, (m_resampleContext.get(), "in_chlayout", &inLayout, 0), __PRETTY_FUNCTION__);
++ FFMPEG_CHECKED(av_opt_set_chlayout, (m_resampleContext.get(), "out_chlayout", &outLayout, 0), __PRETTY_FUNCTION__);
++#else
++ FFMPEG_CHECKED(av_opt_set_int, (m_resampleContext.get(), "in_channel_layout", m_codecContext->channel_layout ? static_cast<std::int64_t>(m_codecContext->channel_layout) : av_get_default_channel_layout(m_codecContext->channels), 0), __PRETTY_FUNCTION__);
++ FFMPEG_CHECKED(av_opt_set_int, (m_resampleContext.get(), "out_channel_layout", av_get_default_channel_layout(AUDIO_CHANNELS), 0), __PRETTY_FUNCTION__);
++#endif
++ FFMPEG_CHECKED(av_opt_set_int, (m_resampleContext.get(), "in_sample_rate", m_codecContext->sample_rate, 0), __PRETTY_FUNCTION__);
++ FFMPEG_CHECKED(av_opt_set_int, (m_resampleContext.get(), "out_sample_rate", static_cast<int>(m_rate), 0), __PRETTY_FUNCTION__);
++ FFMPEG_CHECKED(av_opt_set_sample_fmt, (m_resampleContext.get(), "in_sample_fmt", m_codecContext->sample_fmt, 0), __PRETTY_FUNCTION__);
++ FFMPEG_CHECKED(av_opt_set_sample_fmt, (m_resampleContext.get(), "out_sample_fmt", AV_SAMPLE_FMT_S16, 0), __PRETTY_FUNCTION__);
++ FFMPEG_CHECKED(swr_init, (m_resampleContext.get()), __PRETTY_FUNCTION__);
+ }
+
+ double FFmpeg::duration() const { return double(m_formatContext->duration) / double(AV_TIME_BASE); }
+@@ -319,7 +332,7 @@ void FFmpeg::handleOneFrame() {
+ // End of file: no more data to read.
+ throw Eof();
+ } else if(ret < 0) {
+- throw Error(*this, ret);
++ throw Error(*this, ret, __PRETTY_FUNCTION__);
+ }
+
+ if (pkt->stream_index != m_streamId) continue;
+@@ -332,7 +345,7 @@ void FFmpeg::handleOneFrame() {
+ // no room for new data, need to get more frames out of the decoder by
+ // calling avcodec_receive_frame()
+ } else if(ret < 0) {
+- throw Error(*this, ret);
++ throw Error(*this, ret, __PRETTY_FUNCTION__);
+ }
+ handleSomeFrames();
+ read_one = true;
+@@ -364,7 +377,7 @@ void FFmpeg::handleSomeFrames() {
+ // not enough data to decode a frame, go read more and feed more to the decoder
+ break;
+ } else if (ret < 0) {
+- throw Error(*this, ret);
++ throw Error(*this, ret, __PRETTY_FUNCTION__);
+ }
+ // frame is available here
+ if (frame->pts != std::int64_t(AV_NOPTS_VALUE)) {
+diff --git a/game/ffmpeg.hh b/game/ffmpeg.hh
+index 337091f5b6..e3b54a64a9 100644
+--- a/game/ffmpeg.hh
++++ b/game/ffmpeg.hh
+@@ -19,6 +19,7 @@
+
+ // ffmpeg forward declarations
+ extern "C" {
++ struct AVChannelLayout;
+ struct AVCodecContext;
+ struct AVFormatContext;
+ struct AVFrame;
+@@ -35,9 +36,17 @@ class FFmpeg {
+ public:
+ // Exceptions thrown by class
+ class Eof: public std::exception {};
+- class Error;
++ class Error : public std::runtime_error {
++ public:
++ Error(const FFmpeg &self, int errorValue, const char *func): std::runtime_error(msgFmt(self, errorValue, func)) {}
++ private:
++ static std::string msgFmt(const FFmpeg &self, int errorValue, const char *func);
++ };
+ friend Error;
+
++ void inline check(int errorCode, const char* func = "") {
++ if (errorCode < 0) throw Error(*this, errorCode, func);
++ };
+ /// Decode file, depending on media type audio.
+ FFmpeg(fs::path const& filename, int mediaType);
+
+
+From 179c2ef93da18ffb34e96975b8b110d590db1661 Mon Sep 17 00:00:00 2001
+From: Gregorio Litenstein <g.litenstein(a)gmail.com>
+Date: Fri, 13 Sep 2024 17:11:41 -0300
+Subject: [PATCH 2/4] macOS bundler: Detect different ffmpeg versions.
+
+---
+ osx-utils/macos-bundler.py | 44 ++++++++++++++++++++++----------------
+ 1 file changed, 26 insertions(+), 18 deletions(-)
+
+diff --git a/osx-utils/macos-bundler.py b/osx-utils/macos-bundler.py
+index bd3b66b4c4..baf715d573 100755
+--- a/osx-utils/macos-bundler.py
++++ b/osx-utils/macos-bundler.py
+@@ -20,6 +20,7 @@
+ brew_location = None
+ opencv_prefix: Path = None
+ openssl_prefix: Path = None
++ffmpeg_prefix: Path = None
+ openssl_root = ""
+ script_prefix: Path = None
+ performous_source_dir = None
+@@ -65,46 +66,51 @@ def check_brew_formula(name : str, file : str) -> Optional[Path]:
+ else:
+ return None
+
+-def check_installed_port(name : str, file : str) -> Optional[str]:
++def check_installed_port(name : str, file : str) -> Optional[Path]:
+ p = subprocess.run(args = ["port", "contents", name], encoding="utf-8", capture_output=True)
+ if p.returncode == 0:
+ p2 = subprocess.run(args = ["grep", file], encoding="utf-8", capture_output=True, input=p.stdout)
+ if p2.returncode == 0:
+- return str(str_to_path(p2.stdout.strip()).parent.parent)
++ return str_to_path(p2.stdout.strip()).parent.parent
+ else:
+ return None
+ else:
+ return None
+
+ def detect_prefix():
+- global opencv_prefix, script_prefix, openssl_prefix, openssl_root
++ global opencv_prefix, script_prefix, openssl_prefix, ffmpeg_prefix, openssl_root
+ port_location = check_installed('port')
+ brew_location = check_installed('brew')
+ if port_location != None:
+ print("--- MacPorts install detected at: " + str(port_location) + "\n")
+- check_opencv = check_installed_port("opencv4", "OpenCVConfig.cmake")
+- if check_opencv != None:
+- opencv_prefix = str(check_opencv)
+- print("--- OpenCV 4+ detected at: " + str(opencv_prefix) + "\n")
+- else:
+- check_opencv = check_installed_port("opencv3", "OpenCVConfig.cmake")
++ for opencv_version in ["4", "3"]:
++ check_opencv = check_installed_port(f"opencv{opencv_version}", "OpenCVConfig.cmake")
+ if check_opencv != None:
+ opencv_prefix = str(check_opencv)
+- print("--- OpenCV 3 detected at: " + str(opencv_prefix) + "\n")
+-
++ print(f"--- OpenCV {opencv_version} detected at: " + str(opencv_prefix) + "\n")
++ break
++ for ffmpeg_version in ["7", "6", ""]:
++ check_ffmpeg = check_installed_port(f"ffmpeg{ffmpeg_version}", "libavcodec.pc")
++ if check_ffmpeg != None:
++ ffmpeg_prefix = str(check_ffmpeg.parent)
++ print(f"--- FFMpeg {ffmpeg_version or '4'} detected at: " + str(ffmpeg_prefix) + "\n")
++ break
+ else:
+ print("--- MacPorts does not appear to be installed.\n")
+ if brew_location != None:
+ print("--- Homebrew install detected at: " + str(brew_location))
+- check_opencv = check_brew_formula("opencv", "OpenCVConfig.cmake")
+- if check_opencv != None:
+- opencv_prefix = str(check_opencv.parent)
+- print("--- OpenCV 4+ detected at: " + str(opencv_prefix) + "\n")
+- else:
+- check_opencv = check_brew_formula("opencv@3", "OpenCVConfig.cmake")
++ for opencv_version in ["4", "3"]:
++ check_opencv = check_brew_formula("opencv@{opencv_version}", "OpenCVConfig.cmake")
+ if check_opencv != None:
+ opencv_prefix = str(check_opencv.parent)
+- print("--- OpenCV 3 detected at: " + str(opencv_prefix) + "\n")
++ print("--- OpenCV {opencv_version} detected at: " + str(opencv_prefix) + "\n")
++ break
++ for ffmpeg_version in ["7", "6", "5", "4"]:
++ check_ffmpeg = check_brew_formula(f"ffmpeg@{ffmpeg_version}", "libavcodec.pc")
++ if check_ffmpeg != None:
++ ffmpeg_prefix = str(check_ffmpeg.parent)
++ print(f"--- FFMpeg {ffmpeg_version} detected at: " + str(ffmpeg_prefix) + "\n")
++ break
+ check_openssl = check_brew_formula("openssl", "libcrypto.pc")
+ if check_openssl != None:
+ openssl_prefix = str(check_openssl)
+@@ -355,6 +361,8 @@ def bundle_libs():
+ prefix += (";" + str(opencv_prefix))
+ if openssl_prefix != None:
+ prefix += (";" + str(openssl_prefix))
++ if ffmpeg_prefix != None:
++ prefix += (";" + str(ffmpeg_prefix))
+ command = fr"""
+ cmake \
+ {openssl_root} \
+
+From fee7e651d894c847846a97fff3afadf9645ad778 Mon Sep 17 00:00:00 2001
+From: Gregorio Litenstein <g.litenstein(a)gmail.com>
+Date: Fri, 13 Sep 2024 23:11:22 -0300
+Subject: [PATCH 3/4] Fix ffmpeg check; no one likes semver anyway rite?
+
+The new API was introduced in ffmpeg 5.1, not 5.0.
+---
+ game/ffmpeg.cc | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/game/ffmpeg.cc b/game/ffmpeg.cc
+index f2bc349c4f..21c06a4f03 100644
+--- a/game/ffmpeg.cc
++++ b/game/ffmpeg.cc
+@@ -288,7 +288,7 @@ AudioFFmpeg::AudioFFmpeg(fs::path const& filename, int rate, AudioCb audioCb) :
+ m_resampleContext.reset(swr_alloc());
+ if (!m_resampleContext) throw std::runtime_error("Cannot create resampling context");
+
+-#if (LIBAVFORMAT_VERSION_INT) >= (AV_VERSION_INT(59,0,0))
++#if (LIBAVUTIL_VERSION_INT) >= (AV_VERSION_INT(57,28,100)) // ffmpeg 5.1
+ AVChannelLayout inLayout;
+ AVChannelLayout outLayout;
+ av_channel_layout_default(&outLayout, AUDIO_CHANNELS);
+
+
diff --git a/performous.spec b/performous.spec
index cb3aeac..9e05da9 100644
--- a/performous.spec
+++ b/performous.spec
@@ -7,7 +7,7 @@
Name: performous
Epoch: 1
Version: 1.3.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Free cross-platform music and rhythm / party game
# The main code is GPLv2+, and there are fonts under ASL 2.0 and SIL licenses
@@ -18,6 +18,8 @@ Source1: https://github.com/performous/compact_enc_det/archive/%{commit1}
Source3: performous.appdata.xml
Patch0: performous-ced-offline.patch
Patch1: https://github.com/performous/performous/commit/eb9b97f46b7d064c32ed0f086...
+# https://github.com/performous/performous/pull/1005
+Patch2: performous-pr1005-ffmpeg-7.patch
BuildRequires: alsa-lib-devel
BuildRequires: aubio-devel
@@ -132,6 +134,9 @@ rm -rf %buildroot%{_libdir}/*.{a,la}
%changelog
+* Sat Nov 02 2024 Mamoru TASAKA <mtasaka(a)tbz.t-com.ne.jp> - 1:1.3.1-2
+- Backport upstream patch for ffmpeg 7
+
* Sun Aug 04 2024 Leigh Scott <leigh123linux(a)gmail.com> - 1:1.3.1-1
- Update to 1.3.1
2 weeks, 6 days
[mixxx] Add new dependency and prepare for F41
by Luís Correia
commit db040380a1e9c43c191f7e43872184dfbed9ecbe
Author: Luís Correia <luis.f.correia(a)gmail.com>
Date: Fri Nov 1 18:09:25 2024 +0000
Add new dependency and prepare for F41
mixxx.spec | 13 +++++++++++--
sources | 4 ++--
2 files changed, 13 insertions(+), 4 deletions(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index 7e919c1..c1a69f8 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -15,7 +15,7 @@
%global libkeyfinder_version 2.2.8
# Additional sources
-%global libdjinterop_version 0.20.2
+%global libdjinterop_version 0.22.1
%if "%{?gitcommit}" == ""
# (Pre-)Releases
@@ -28,7 +28,7 @@
Name: mixxx
Version: 2.4.1
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Mixxx is open source software for DJ'ing
License: GPLv2+
URL: http://www.mixxx.org
@@ -222,6 +222,15 @@ appstreamcli \
%{_udevrulesdir}/69-%{name}-usb-uaccess.rules
%changelog
+* Fri Nov 01 2024 Luís Correia <luis.f.correia(a)gmail.com> - 2.4.1-3
+- Add new dependency and prepare for F41
+
+* Fri Nov 01 2024 Luís Correia <luis.f.correia(a)gmail.com> - 2.4.1-4
+- rebuilt
+
+* Fri Nov 01 2024 Luís Correia <luis.f.correia(a)gmail.com> - 2.4.1-3
+- rebuilt
+
* Fri Aug 02 2024 RPM Fusion Release Engineering <sergiomb(a)rpmfusion.org> - 2.4.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
diff --git a/sources b/sources
index e0046be..1355a84 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
-SHA512 (libdjinterop-0.20.2.tar.gz) = 591cbf8102e16b11337ec25ad90ef035bf65dbbd18591802d959044874f36bb61bce3d5db974b00ecee14b45c7ea2488542b226d823d9087c92a0b452d804ff3
-SHA512 (libkeyfinder-2.2.8.zip) = 0fd5c566430f5ffeca4e8a01e925c384ee8206d12b90eeb21c479baf822e741f2d1ac583a0355c380817994232deca314a40c0f65acb3cea84b173627948f3e3
SHA512 (mixxx-2.4.1.tar.gz) = f62e0ce3bd016d411eda544a621e33b791517931c268391089cfe3101cd1e123eeb0b80bc8c138e7c67bb41cf378c6973f5c9284d5c720c693fd632f62372569
+SHA512 (libkeyfinder-2.2.6.zip) = 23ffcc4da59019349824b60dd1b125d559f39d7731fe7f00cdc8f4a97a342fa59ef5183c4e272ff4c5fd06eaa89c581e07fdb26bcfd3c98cc42d2dcc29e13e1e
+SHA512 (libdjinterop-0.22.1.tar.gz) = 1c35d8609342f133cf002d1908d5746c411a9d5e74b42a7ec045545f07a3f4b8a89ce9a95d2fc17edd8970facafbee1b6d8a9283fcd8c74c9cb96ff61f15d47d
2 weeks, 6 days
[telegram-desktop] Update to 5.7.0.
by Vasiliy Glazov
commit 6558f5b774b22f7dcb160f9ebd4bda4f87814ab4
Author: Vasiliy Glazov <v.glazov(a)1440.space>
Date: Fri Nov 1 09:21:00 2024 +0300
Update to 5.7.0.
sources | 2 +-
telegram-desktop.spec | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/sources b/sources
index 50d9a15..f859ca3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (tdesktop-5.6.3-full.tar.gz) = 0cce16f780f1350199d8a10a9eff6e8052888aede5d3839d3435acdfb34f445098ec24cac21d1950f704350c22bec86020e6c746706bb34c5533e2086e6cb597
+SHA512 (tdesktop-5.7.0-full.tar.gz) = 62cb1ed20a25c0ad46c61a5169e65b41e5090b347fc7a0810be7da88345c48c210c5c9064738e025d77ab25cc79ac595abb067a52ab0f259ae1f9eafaa04804e
diff --git a/telegram-desktop.spec b/telegram-desktop.spec
index df99d2a..86d83c5 100644
--- a/telegram-desktop.spec
+++ b/telegram-desktop.spec
@@ -5,7 +5,7 @@
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
Name: telegram-desktop
-Version: 5.6.3
+Version: 5.7.0
Release: 1%{?dist}
# Application and 3rd-party modules licensing:
@@ -177,6 +177,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
%{_metainfodir}/*.metainfo.xml
%changelog
+* Fri Nov 01 2024 Vasiliy Glazov <vascom2(a)gmail.com> - 5.7.0-1
+- Update to 5.7.0
+
* Thu Oct 17 2024 Vasiliy Glazov <vascom2(a)gmail.com> - 5.6.3-1
- Update to 5.6.3
2 weeks, 6 days