pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/lmms



Module Name:    pkgsrc
Committed By:   nia
Date:           Tue Jun  9 16:03:00 UTC 2020

Modified Files:
        pkgsrc/audio/lmms: distinfo
Added Files:
        pkgsrc/audio/lmms/patches: patch-plugins_Eq_EqSpectrumView.h
            patch-src_gui_AutomationPatternView.cpp patch-src_gui_LmmsStyle.cpp
            patch-src_gui_editors_AutomationEditor.cpp

Log Message:
lmms: fix Qt breakage


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/audio/lmms/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/audio/lmms/patches/patch-plugins_Eq_EqSpectrumView.h \
    pkgsrc/audio/lmms/patches/patch-src_gui_AutomationPatternView.cpp \
    pkgsrc/audio/lmms/patches/patch-src_gui_LmmsStyle.cpp \
    pkgsrc/audio/lmms/patches/patch-src_gui_editors_AutomationEditor.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/audio/lmms/distinfo
diff -u pkgsrc/audio/lmms/distinfo:1.11 pkgsrc/audio/lmms/distinfo:1.12
--- pkgsrc/audio/lmms/distinfo:1.11     Thu Oct 24 16:36:56 2019
+++ pkgsrc/audio/lmms/distinfo  Tue Jun  9 16:03:00 2020
@@ -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

Added files:

Index: pkgsrc/audio/lmms/patches/patch-plugins_Eq_EqSpectrumView.h
diff -u /dev/null pkgsrc/audio/lmms/patches/patch-plugins_Eq_EqSpectrumView.h:1.1
--- /dev/null   Tue Jun  9 16:03:00 2020
+++ pkgsrc/audio/lmms/patches/patch-plugins_Eq_EqSpectrumView.h Tue Jun  9 16:03:00 2020
@@ -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"
Index: pkgsrc/audio/lmms/patches/patch-src_gui_AutomationPatternView.cpp
diff -u /dev/null pkgsrc/audio/lmms/patches/patch-src_gui_AutomationPatternView.cpp:1.1
--- /dev/null   Tue Jun  9 16:03:00 2020
+++ pkgsrc/audio/lmms/patches/patch-src_gui_AutomationPatternView.cpp   Tue Jun  9 16:03:00 2020
@@ -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"
Index: pkgsrc/audio/lmms/patches/patch-src_gui_LmmsStyle.cpp
diff -u /dev/null pkgsrc/audio/lmms/patches/patch-src_gui_LmmsStyle.cpp:1.1
--- /dev/null   Tue Jun  9 16:03:00 2020
+++ pkgsrc/audio/lmms/patches/patch-src_gui_LmmsStyle.cpp       Tue Jun  9 16:03:00 2020
@@ -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>
+ 
Index: pkgsrc/audio/lmms/patches/patch-src_gui_editors_AutomationEditor.cpp
diff -u /dev/null pkgsrc/audio/lmms/patches/patch-src_gui_editors_AutomationEditor.cpp:1.1
--- /dev/null   Tue Jun  9 16:03:00 2020
+++ pkgsrc/audio/lmms/patches/patch-src_gui_editors_AutomationEditor.cpp        Tue Jun  9 16:03:00 2020
@@ -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