Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio/lmms lmms: fix Qt breakage



details:   https://anonhg.NetBSD.org/pkgsrc/rev/802b58781cda
branches:  trunk
changeset: 434005:802b58781cda
user:      nia <nia%pkgsrc.org@localhost>
date:      Tue Jun 09 16:03:00 2020 +0000

description:
lmms: fix Qt breakage

diffstat:

 audio/lmms/distinfo                                           |   6 +++-
 audio/lmms/patches/patch-plugins_Eq_EqSpectrumView.h          |  18 +++++++++++
 audio/lmms/patches/patch-src_gui_AutomationPatternView.cpp    |  18 +++++++++++
 audio/lmms/patches/patch-src_gui_LmmsStyle.cpp                |  18 +++++++++++
 audio/lmms/patches/patch-src_gui_editors_AutomationEditor.cpp |  18 +++++++++++
 5 files changed, 77 insertions(+), 1 deletions(-)

diffs (107 lines):

diff -r 15b82433b980 -r 802b58781cda audio/lmms/distinfo
--- a/audio/lmms/distinfo       Tue Jun 09 15:58:37 2020 +0000
+++ b/audio/lmms/distinfo       Tue Jun 09 16:03:00 2020 +0000
@@ -1,10 +1,14 @@
-$NetBSD: distinfo,v 1.11 2019/10/24 16:36:56 nia Exp $
+$NetBSD: distinfo,v 1.12 2020/06/09 16:03:00 nia Exp $
 
 SHA1 (lmms_1.2.1.tar.xz) = 47d139272ba938de89fbd432fbd7438ea919e58c
 RMD160 (lmms_1.2.1.tar.xz) = 8a0361b2771eb49e979047e03600265c127dc220
 SHA512 (lmms_1.2.1.tar.xz) = 7054d1592fdea60d76423a0260e941c217f50d2db9c4fcc35df20c8b58067c431ed9b264ef05e9f3f2cba84ca66870d1bf23da92b294a00ac6d567e3d3e771d6
 Size (lmms_1.2.1.tar.xz) = 14543092 bytes
 SHA1 (patch-CMakeLists.txt) = e30599b486c83b734fd8f9afa4cf2bd488eab338
+SHA1 (patch-plugins_Eq_EqSpectrumView.h) = 76a2efb341ca724be552cdb9f04fb7d835eeee4b
 SHA1 (patch-src_CMakeLists.txt) = 92acfc9bc236c1b211bbe9686de818641c01b257
 SHA1 (patch-src_core_audio_AudioOss.cpp) = 6bc591b929f26cbfb5f160c3d9b49316bf165e58
 SHA1 (patch-src_core_midi_MidiOss.cpp) = d1bf1a7bf9aaec549f3ac97d300c7bee4d81ff29
+SHA1 (patch-src_gui_AutomationPatternView.cpp) = 50d1b5130ce98ce2fe0e40c4eada0197ab9af706
+SHA1 (patch-src_gui_LmmsStyle.cpp) = 4d965590a8dfd6facb40a156f93de303da26cfaf
+SHA1 (patch-src_gui_editors_AutomationEditor.cpp) = 6f0b7e5d2609059586df323ef7779c4af8465cf2
diff -r 15b82433b980 -r 802b58781cda audio/lmms/patches/patch-plugins_Eq_EqSpectrumView.h
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/lmms/patches/patch-plugins_Eq_EqSpectrumView.h      Tue Jun 09 16:03:00 2020 +0000
@@ -0,0 +1,18 @@
+$NetBSD: patch-plugins_Eq_EqSpectrumView.h,v 1.1 2020/06/09 16:03:00 nia Exp $
+
+[PATCH] Fix Qt 5.15 build issues (#5498)
+
+Add missing QPainterPath includes
+
+https://github.com/LMMS/lmms/commit/29a5abc30b5d5efa30b7f6b73fe06d76ec851cca.patch
+
+--- plugins/Eq/EqSpectrumView.h.orig   2018-11-03 01:43:42.000000000 +0000
++++ plugins/Eq/EqSpectrumView.h
+@@ -24,6 +24,7 @@
+ #define EQSPECTRUMVIEW_H
+ 
+ #include <QPainter>
++#include <QPainterPath>
+ #include <QWidget>
+ 
+ #include "fft_helpers.h"
diff -r 15b82433b980 -r 802b58781cda audio/lmms/patches/patch-src_gui_AutomationPatternView.cpp
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/lmms/patches/patch-src_gui_AutomationPatternView.cpp        Tue Jun 09 16:03:00 2020 +0000
@@ -0,0 +1,18 @@
+$NetBSD: patch-src_gui_AutomationPatternView.cpp,v 1.1 2020/06/09 16:03:00 nia Exp $
+
+[PATCH] Fix Qt 5.15 build issues (#5498)
+
+Add missing QPainterPath includes
+
+https://github.com/LMMS/lmms/commit/29a5abc30b5d5efa30b7f6b73fe06d76ec851cca.patch
+
+--- src/gui/AutomationPatternView.cpp.orig     2018-11-03 01:43:42.000000000 +0000
++++ src/gui/AutomationPatternView.cpp
+@@ -25,6 +25,7 @@
+ 
+ #include <QMouseEvent>
+ #include <QPainter>
++#include <QPainterPath>
+ #include <QMenu>
+ 
+ #include "AutomationEditor.h"
diff -r 15b82433b980 -r 802b58781cda audio/lmms/patches/patch-src_gui_LmmsStyle.cpp
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/lmms/patches/patch-src_gui_LmmsStyle.cpp    Tue Jun 09 16:03:00 2020 +0000
@@ -0,0 +1,18 @@
+$NetBSD: patch-src_gui_LmmsStyle.cpp,v 1.1 2020/06/09 16:03:00 nia Exp $
+
+[PATCH] Fix Qt 5.15 build issues (#5498)
+
+Add missing QPainterPath includes
+
+https://github.com/LMMS/lmms/commit/29a5abc30b5d5efa30b7f6b73fe06d76ec851cca.patch
+
+--- src/gui/LmmsStyle.cpp.orig 2018-11-03 01:43:42.000000000 +0000
++++ src/gui/LmmsStyle.cpp
+@@ -28,6 +28,7 @@
+ #include <QApplication>
+ #include <QFrame>
+ #include <QPainter>
++#include <QPainterPath>
+ #include <QStyleFactory>
+ #include <QStyleOption>
+ 
diff -r 15b82433b980 -r 802b58781cda audio/lmms/patches/patch-src_gui_editors_AutomationEditor.cpp
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/lmms/patches/patch-src_gui_editors_AutomationEditor.cpp     Tue Jun 09 16:03:00 2020 +0000
@@ -0,0 +1,18 @@
+$NetBSD: patch-src_gui_editors_AutomationEditor.cpp,v 1.1 2020/06/09 16:03:00 nia Exp $
+
+[PATCH] Fix Qt 5.15 build issues (#5498)
+
+Add missing QPainterPath includes
+
+https://github.com/LMMS/lmms/commit/29a5abc30b5d5efa30b7f6b73fe06d76ec851cca.patch
+
+--- src/gui/editors/AutomationEditor.cpp.orig  2018-11-03 01:43:42.000000000 +0000
++++ src/gui/editors/AutomationEditor.cpp
+@@ -35,6 +35,7 @@
+ #include <QLayout>
+ #include <QMdiArea>
+ #include <QPainter>
++#include <QPainterPath>
+ #include <QScrollBar>
+ #include <QStyleOption>
+ #include <QToolTip>



Home | Main Index | Thread Index | Old Index