rosegarden: update to 22.12.1.
This commit is contained in:
parent
47778fa559
commit
75d795ad8f
2 changed files with 15 additions and 2 deletions
12
srcpkgs/rosegarden/patches/fix-use-after-free-lilypad.patch
Normal file
12
srcpkgs/rosegarden/patches/fix-use-after-free-lilypad.patch
Normal file
|
@ -0,0 +1,12 @@
|
|||
--- a/src/document/io/LilyPondExporter.cpp
|
||||
+++ b/src/document/io/LilyPondExporter.cpp
|
||||
@@ -462,7 +462,8 @@ LilyPondExporter::handleStartingPostEven
|
||||
}
|
||||
|
||||
// Duration
|
||||
- const char * d = restsDuration.toStdString().data();
|
||||
+ std::string tmp = restsDuration.toStdString();
|
||||
+ const char * d = tmp.data();
|
||||
|
||||
// Indication
|
||||
const char * in =
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'rosegarden'
|
||||
pkgname=rosegarden
|
||||
version=22.06
|
||||
version=22.12.1
|
||||
revision=1
|
||||
build_style=cmake
|
||||
hostmakedepends="pkg-config shared-mime-info"
|
||||
|
@ -11,8 +11,9 @@ short_desc="Music composition and editing environment"
|
|||
maintainer="newbluemoon <blaumolch@mailbox.org>"
|
||||
license="GPL-2.0-or-later"
|
||||
homepage="http://rosegardenmusic.com/"
|
||||
changelog="https://raw.githubusercontent.com/tedfelix/rosegarden-official/master/CHANGELOG"
|
||||
distfiles="${SOURCEFORGE_SITE}/rosegarden/rosegarden/${version/*.*.*/${version%.*}}/rosegarden-${version}.tar.bz2"
|
||||
checksum=9024825155ebb1be8b4af567f3502026957398fdefd086e23fe399f1d033fadb
|
||||
checksum=7ea7a27f7ee5c49781708f9c615a51919b892264a599e64edf2cd23733d99206
|
||||
|
||||
if [ -n "${CROSS_BUILD}" ]; then
|
||||
hostmakedepends+=" qt5-devel qt5-host-tools"
|
||||
|
|
Loading…
Add table
Reference in a new issue