mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: musescore: Update to 4.5.2-0.6ebc98e.
* gnu/packages/music.scm (musescore): Update to 4.5.2-0.6ebc98e. [source] <modules, patches>: Delete fields. [inputs]: Move gtk+:bin to... [native-inputs]: ... here. * gnu/packages/patches/musescore-fix-build.patch: Delete file. * gnu/local.mk (dist_patch_DATA): De-register it. Change-Id: If3f261b13bc01cae581db5822a44815909157ceb
This commit is contained in:
parent
4fbf920dc1
commit
2b70a3d191
3 changed files with 83 additions and 104 deletions
|
@ -1903,7 +1903,6 @@ dist_patch_DATA = \
|
||||||
%D%/packages/patches/mswebrtc-cmake.patch \
|
%D%/packages/patches/mswebrtc-cmake.patch \
|
||||||
%D%/packages/patches/mtools-mformat-uninitialized.patch \
|
%D%/packages/patches/mtools-mformat-uninitialized.patch \
|
||||||
%D%/packages/patches/mupen64plus-ui-console-notice.patch \
|
%D%/packages/patches/mupen64plus-ui-console-notice.patch \
|
||||||
%D%/packages/patches/musescore-fix-build.patch \
|
|
||||||
%D%/packages/patches/musl-cross-locale.patch \
|
%D%/packages/patches/musl-cross-locale.patch \
|
||||||
%D%/packages/patches/mutt-store-references.patch \
|
%D%/packages/patches/mutt-store-references.patch \
|
||||||
%D%/packages/patches/m17n-lib-1.8.0-use-pkg-config-for-freetype.patch \
|
%D%/packages/patches/m17n-lib-1.8.0-use-pkg-config-for-freetype.patch \
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||||||
;;; Copyright © 2022, 2023 Sughosha <sughosha@disroot.org>
|
;;; Copyright © 2022, 2023 Sughosha <sughosha@disroot.org>
|
||||||
;;; Copyright © 2022, 2025 Remco van 't Veer <remco@remworks.net>
|
;;; Copyright © 2022, 2025 Remco van 't Veer <remco@remworks.net>
|
||||||
;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2022, 2023, 2025 Maxim Cournoyer <maxim@guixotic.coop>
|
||||||
;;; Copyright © 2022 Wamm K. D. <jaft.r@outlook.com>
|
;;; Copyright © 2022 Wamm K. D. <jaft.r@outlook.com>
|
||||||
;;; Copyright © 2022 Jose G Perez Taveras <josegpt27@gmail.com>
|
;;; Copyright © 2022 Jose G Perez Taveras <josegpt27@gmail.com>
|
||||||
;;; Copyright © 2022 jgart <jgart@dismail.de>
|
;;; Copyright © 2022 jgart <jgart@dismail.de>
|
||||||
|
@ -5516,24 +5516,24 @@ includes LV2 plugins and a JACK standalone client.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public musescore
|
(define-public musescore
|
||||||
|
(let ((commit "6ebc98e021ba9d677fffa31255f8a53e60753724")
|
||||||
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "musescore")
|
(name "musescore")
|
||||||
(version "4.5.2")
|
(version (git-version "4.5.2" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/musescore/MuseScore")
|
(url "https://github.com/musescore/MuseScore")
|
||||||
(commit (string-append "v" version))))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(patches (search-patches "musescore-fix-build.patch"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "12lwv0gxd49dily2hwmadbw6c59h11sfm5751dpfnzzjvj3rydpn"))
|
(base32 "09a9wdfvjimapghygpbdpyr1y5zznnagbmxz9ahmslph5lflrhza"))))
|
||||||
(modules '((guix build utils)))))
|
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:qtbase qtbase ;Qt 6
|
#:qtbase qtbase ;for qt 6
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
#~(list
|
#~(list
|
||||||
"-DMUSE_APP_BUILD_MODE=release"
|
"-DMUSE_APP_BUILD_MODE=release"
|
||||||
|
@ -5563,12 +5563,15 @@ includes LV2 plugins and a JACK standalone client.")
|
||||||
;; Basically, it requires to start a whole new build process.
|
;; Basically, it requires to start a whole new build process.
|
||||||
;; So we simply skip them.
|
;; So we simply skip them.
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
(native-inputs (list git-minimal pkg-config qttools))
|
(native-inputs
|
||||||
|
(list git-minimal
|
||||||
|
`(,gtk+ "bin") ;for gtk-update-icon-cache
|
||||||
|
pkg-config
|
||||||
|
qttools))
|
||||||
(inputs
|
(inputs
|
||||||
(list alsa-lib
|
(list alsa-lib
|
||||||
flac
|
flac
|
||||||
freetype
|
freetype
|
||||||
`(,gtk+ "bin") ;for gtk-update-icon-cache
|
|
||||||
harfbuzz
|
harfbuzz
|
||||||
jack-1
|
jack-1
|
||||||
lame
|
lame
|
||||||
|
@ -5605,7 +5608,7 @@ appearance and layout are provided.
|
||||||
MuseScore can also play back scores through the built-in sequencer and SoundFont
|
MuseScore can also play back scores through the built-in sequencer and SoundFont
|
||||||
sample library.")
|
sample library.")
|
||||||
(home-page "https://musescore.org")
|
(home-page "https://musescore.org")
|
||||||
(license license:gpl3)))
|
(license license:gpl3))))
|
||||||
|
|
||||||
(define-public muse-sequencer
|
(define-public muse-sequencer
|
||||||
(package
|
(package
|
||||||
|
|
|
@ -1,23 +0,0 @@
|
||||||
--- a/src/instrumentsscene/view/systemobjectslayersettingsmodel.cpp
|
|
||||||
+++ b/src/instrumentsscene/view/systemobjectslayersettingsmodel.cpp
|
|
||||||
@@ -83,6 +83,7 @@
|
|
||||||
|
|
||||||
void SystemObjectsLayerSettingsModel::setSystemObjectsGroupVisible(int index, bool visible)
|
|
||||||
{
|
|
||||||
+ using muse::TranslatableString;
|
|
||||||
const size_t idx = static_cast<size_t>(index);
|
|
||||||
if (idx >= m_systemObjectGroups.size()) {
|
|
||||||
return;
|
|
||||||
@@ -95,9 +96,9 @@
|
|
||||||
|
|
||||||
SystemObjectsGroup& group = m_systemObjectGroups.at(idx);
|
|
||||||
|
|
||||||
- const muse::TranslatableString actionName = visible
|
|
||||||
- ? TranslatableString("undoableAction", "Make system marking(s) visible")
|
|
||||||
- : TranslatableString("undoableAction", "Make system marking(s) invisible");
|
|
||||||
+ const TranslatableString actionName = visible
|
|
||||||
+ ? TranslatableString("undoableAction", "Make system marking(s) visible")
|
|
||||||
+ : TranslatableString("undoableAction", "Make system marking(s) invisible");
|
|
||||||
|
|
||||||
notation->undoStack()->prepareChanges(actionName);
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue