Github messages for voidlinux
 help / color / mirror / Atom feed
From: oreo639 <oreo639@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] rosegarden: update to 22.12.1.
Date: Fri, 10 Feb 2023 18:48:07 +0100	[thread overview]
Message-ID: <20230210174807.fmbmalSBIlGdJ-POj9r9qV3K5dzCnp4xtCLB7Klk2_8@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-42188@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 1254 bytes --]

There is an updated pull request by oreo639 against master on the void-packages repository

https://github.com/oreo639/void-packages rosegarden
https://github.com/void-linux/void-packages/pull/42188

rosegarden: update to 22.12.1.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/42188.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rosegarden-42188.patch --]
[-- Type: text/x-diff, Size: 2285 bytes --]

From 91b578bd91e83b43aec5d506d3e47e7df995742a Mon Sep 17 00:00:00 2001
From: oreo639 <oreo6391@gmail.com>
Date: Fri, 10 Feb 2023 06:42:49 -0800
Subject: [PATCH] rosegarden: update to 22.12.1.

---
 .../patches/fix-use-after-free-lilypad.patch         | 12 ++++++++++++
 srcpkgs/rosegarden/template                          |  5 +++--
 2 files changed, 15 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/rosegarden/patches/fix-use-after-free-lilypad.patch

diff --git a/srcpkgs/rosegarden/patches/fix-use-after-free-lilypad.patch b/srcpkgs/rosegarden/patches/fix-use-after-free-lilypad.patch
new file mode 100644
index 000000000000..7d84b7376556
--- /dev/null
+++ b/srcpkgs/rosegarden/patches/fix-use-after-free-lilypad.patch
@@ -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 =
diff --git a/srcpkgs/rosegarden/template b/srcpkgs/rosegarden/template
index d9bf2c26cd76..ba6498262438 100644
--- a/srcpkgs/rosegarden/template
+++ b/srcpkgs/rosegarden/template
@@ -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"

  parent reply	other threads:[~2023-02-10 17:48 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-10 14:43 [PR PATCH] " oreo639
2023-02-10 17:47 ` [PR PATCH] [Updated] " oreo639
2023-02-10 17:48 ` oreo639 [this message]
2023-02-11 22:35 ` [PR PATCH] [Merged]: " classabbyamp
2023-02-12 19:18 ` newbluemoon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230210174807.fmbmalSBIlGdJ-POj9r9qV3K5dzCnp4xtCLB7Klk2_8@z \
    --to=oreo639@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).