Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package audacious-plugins for
openSUSE:Factory checked in at 2021-06-24 18:22:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/audacious-plugins (Old)
and /work/SRC/openSUSE:Factory/.audacious-plugins.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "audacious-plugins"
Thu Jun 24 18:22:41 2021 rev:21 rq:901671 version:4.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/audacious-plugins/audacious-plugins.changes
2021-05-01 00:46:38.155468785 +0200
+++
/work/SRC/openSUSE:Factory/.audacious-plugins.new.2625/audacious-plugins.changes
2021-06-24 18:23:01.836946596 +0200
@@ -1,0 +2,6 @@
+Thu Jun 24 08:57:36 UTC 2021 - Ferdinand Thiessen <[email protected]>
+
+- Add fix-linking-mpg123.patch, required on Leap 15.2 and 15.3,
+ fixes boo#1187525
+
+-------------------------------------------------------------------
New:
----
fix-linking-mpg123.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ audacious-plugins.spec ++++++
--- /var/tmp/diff_new_pack.9tjm3M/_old 2021-06-24 18:23:02.320947133 +0200
+++ /var/tmp/diff_new_pack.9tjm3M/_new 2021-06-24 18:23:02.324947137 +0200
@@ -27,6 +27,8 @@
License: GPL-2.0-or-later AND LGPL-2.1-or-later AND GPL-3.0-only AND
MIT AND BSD-2-Clause
URL: https://audacious-media-player.org/
Source:
https://distfiles.audacious-media-player.org/%{name}-%{version}.tar.bz2
+# PATCH-FIX-OPENSUSE fix-linking-mpg123.patch boo#1187525
+Patch0: fix-linking-mpg123.patch
BuildRequires: fdupes
BuildRequires: gcc-c++ >= 4.6
BuildRequires: libmp3lame-devel
++++++ fix-linking-mpg123.patch ++++++
diff -Nur audacious-plugins-4.1/src/mpg123/Makefile new/src/mpg123/Makefile
--- audacious-plugins-4.1/src/mpg123/Makefile 2021-02-02 00:30:38.000000000
+0100
+++ new/src/mpg123/Makefile 2021-06-24 10:55:52.219980740 +0200
@@ -10,5 +10,5 @@
LD = ${CXX}
CFLAGS += ${PLUGIN_CFLAGS}
-CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MPG123_CFLAGS} -I../..
+CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MPG123_CFLAGS} -DMPG123_ENUM_API -I../..
LIBS += ${MPG123_LIBS} -laudtag -lm
diff -Nur audacious-plugins-4.1/src/mpg123/meson.build
new/src/mpg123/meson.build
--- audacious-plugins-4.1/src/mpg123/meson.build 2021-02-02
00:30:38.000000000 +0100
+++ new/src/mpg123/meson.build 2021-06-24 10:55:27.491807545 +0200
@@ -10,5 +10,6 @@
include_directories: [src_inc],
install: true,
install_dir: input_plugin_dir,
+ cpp_args: '-DMPG123_ENUM_API',
)
endif