rosegarden: update to 23.06

This commit is contained in:
newbluemoon 2023-06-18 15:06:17 +02:00 committed by Duncan Overbruck
parent a3975c6064
commit 2e39fdcb04
2 changed files with 3 additions and 15 deletions

View file

@ -1,12 +0,0 @@
--- 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 =

View file

@ -1,6 +1,6 @@
# Template file for 'rosegarden'
pkgname=rosegarden
version=22.12.1
version=23.06
revision=1
build_style=cmake
hostmakedepends="pkg-config shared-mime-info"
@ -12,8 +12,8 @@ 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=7ea7a27f7ee5c49781708f9c615a51919b892264a599e64edf2cd23733d99206
distfiles="${SOURCEFORGE_SITE}/rosegarden/rosegarden/${version/*.*.*/${version%.*}}/rosegarden-${version}.tar.xz"
checksum=1f34578bf47bac364faf1c6c14daaedaa387a4f3b19704f5ba868f4ecd2d72cc
if [ -n "${CROSS_BUILD}" ]; then
hostmakedepends+=" qt5-devel qt5-host-tools"