Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package moc for openSUSE:Factory checked in at 2023-05-28 19:23:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/moc (Old) and /work/SRC/openSUSE:Factory/.moc.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "moc" Sun May 28 19:23:48 2023 rev:17 rq:1089417 version:2.6.0~svn2994 Changes: -------- --- /work/SRC/openSUSE:Factory/moc/moc.changes 2022-09-06 13:01:24.439023671 +0200 +++ /work/SRC/openSUSE:Factory/.moc.new.1533/moc.changes 2023-05-28 19:24:11.517443909 +0200 @@ -1,0 +2,6 @@ +Sat May 27 17:46:16 UTC 2023 - mun...@googlemail.com + +- Explicitly use ffmpeg-5 (fix build on Factory/Tumbleweed) +- Add 0009-Add-https-to-is_url.patch from debian + +------------------------------------------------------------------- New: ---- 0009-Add-https-to-is_url.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ moc.spec ++++++ --- /var/tmp/diff_new_pack.Uao2Zh/_old 2023-05-28 19:24:11.985446694 +0200 +++ /var/tmp/diff_new_pack.Uao2Zh/_new 2023-05-28 19:24:11.993446742 +0200 @@ -31,6 +31,7 @@ Patch4: 0005-avcodec-include.patch Patch5: 0006-uncast-warnings.patch Patch6: 0007-cur-dts.patch +Patch7: 0009-Add-https-to-is_url.patch BuildRequires: autoconf BuildRequires: automake @@ -43,9 +44,6 @@ BuildRequires: pkgconfig(alsa) BuildRequires: pkgconfig(flac) >= 1.1 BuildRequires: pkgconfig(jack) -BuildRequires: pkgconfig(libavcodec) -BuildRequires: pkgconfig(libavformat) -BuildRequires: pkgconfig(libavutil) BuildRequires: pkgconfig(libcurl) BuildRequires: pkgconfig(libmodplug) >= 0.7 BuildRequires: pkgconfig(librcc) @@ -59,6 +57,13 @@ BuildRequires: pkgconfig(vorbis) >= 1.0 BuildRequires: pkgconfig(vorbisfile) >= 1.0 BuildRequires: pkgconfig(wavpack) >= 4.31 +%if 0%{?suse_version} > 1500 +BuildRequires: ffmpeg-5-mini-devel +%else +BuildRequires: pkgconfig(libavcodec) +BuildRequires: pkgconfig(libavformat) +BuildRequires: pkgconfig(libavutil) +%endif %description MOC (music on console) is a console audio player for LINUX/UNIX designed to be ++++++ 0009-Add-https-to-is_url.patch ++++++ >From 868951edfb1cb719fcc662b93d6b19e658f6dfde Mon Sep 17 00:00:00 2001 From: Elimar Riesebieter <riese...@lxtec.de> Date: Sun, 30 Oct 2022 10:01:19 +0100 Subject: [PATCH] Add https to is_url Signed-off-by: Elimar Riesebieter <riese...@lxtec.de> --- files.c | 1 + 1 file changed, 1 insertion(+) diff --git a/files.c b/files.c index 16aa4b6..ed59217 100644 --- a/files.c +++ b/files.c @@ -85,6 +85,7 @@ void files_cleanup () inline int is_url (const char *str) { return !strncasecmp (str, "http://", sizeof ("http://") - 1) + || !strncasecmp (str, "https://", sizeof ("https://") - 1) || !strncasecmp (str, "ftp://", sizeof ("ftp://") - 1); } -- 2.37.2