GNU bug report logs -
#75037
WIP: Upgrade MuseScore to 4.4.4
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 75037 in the body.
You can then email your comments to 75037 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#75037
; Package
guix-patches
.
(Sun, 22 Dec 2024 22:47:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Rovanion Luckey <rovanion.luckey <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sun, 22 Dec 2024 22:47:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
I have been working on and off for the last month to get MuseScore 4.4.x
packaged for Guix. I have come so far as to have the project build but not
run. The program gets partially through its startup procedure but fails
with a QML related error:
23:10:58.058 | WARN | main_thread | Qt |
> QQmlApplicationEngine failed to load component
> 23:10:58.112 | ERROR | main_thread | GuiApp::perform | error:
> qrc:/qml/platform/linux/Main.qml: module "QtQml.WorkerScript" is not
> installed
> 23:10:58.112 | WARN | main_thread | Qt |
> qrc:/qml/platform/linux/Main.qml: module "QtQml.WorkerScript" is not
> installed
> 23:10:58.112 | WARN | main_thread | Qt |
> QObject::connect(QQuickWindow, QApplication): invalid nullptr parameter
> 23:10:58.113 | INFO | main_thread | AudioOutputDeviceController::init
> | Available output devices changed, checking connection...
> 23:10:58.116 | ERROR | main_thread | GuiApp::perform | failed Qml load
If anyone has a pointer such are gracefully received. Right now it's time
for me to give up for today.
Unrelated: The largest change that's needed for this build to work is to
change build system for HarfBuzz to meson. This because the makefile based
build does not produce correct CMake-files for HarfBuzz. The attached
work-in-progress-patch creates a separate package for HarfBuzz for
convenience while developing the patch - but the build system should
probably be changed for the real HarfBuzz package in the real patch.
Cheers!
[Message part 2 (text/html, inline)]
[0001-WIP-gnu-music-Update-to-4.4.4.patch (text/x-patch, attachment)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75037
; Package
guix-patches
.
(Wed, 01 Jan 2025 20:15:03 GMT)
Full text and
rfc822 format available.
Message #8 received at 75037 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
I've now finalized my patch to bring up MuseScore to version 4.4. As
different downstream packagers have experienced this upgrade was trickier
than usual. Fortunately I could draw from their experiences to reach my now
working version. Loading, arranging and playback of arrangements works
well. Though there is graphical lag during playback with the playhead
visibly juttering.
On the Guix side I had to change the build system for Harfbuzz in order for
it to build correct CMake-files for MuseScore to consume - rather than
build its vendored version. The problem of course is that harfbuzz has
about 15 000 dependants. So I created a temporary package named
harfbuzz-meson to later be removed with a core-updates merge.
So the patches 0001 and 0002 are for master and 0003 is for core-updates.
[Message part 2 (text/html, inline)]
[0003-gnu-harfbuzz-Switch-build-system-to-meson.patch (text/x-patch, attachment)]
[0001-gnu-Add-harfbuzz-meson.patch (text/x-patch, attachment)]
[0002-gnu-musescore-Update-to-4.4.4.patch (text/x-patch, attachment)]
Information forwarded
to
liliana.prikler <at> gmail.com, maxim.cournoyer <at> gmail.com, vivien <at> planete-kraus.eu, guix-patches <at> gnu.org
:
bug#75037
; Package
guix-patches
.
(Wed, 08 Jan 2025 11:55:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 75037 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/gtk.scm (harfbuzz)[build-system]: Use meson-build-system.
[#:configure-flags]: Replace “--with-graphite2” with “-Dgraphite2=enabled”.
Remove other flags.
---
gnu/packages/gtk.scm | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index fd6448cc6d..c8bcb02cbb 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -291,7 +291,7 @@ (define-public harfbuzz
(sha256
(base32
"0izq2lpqxrf1l755nxrxkkiarywkx5j43asznankxplbxgm0358h"))))
- (build-system gnu-build-system)
+ (build-system meson-build-system)
(outputs '("out"
"bin")) ;160K, only hb-view depend on cairo
(inputs
@@ -309,9 +309,7 @@ (define-public harfbuzz
which)))
(arguments
(list #:configure-flags
- #~(list "--with-graphite2"
- "--with-gobject"
- (string-append "--bindir=" #$output:bin "/bin"))))
+ #~(list "-Dgraphite2=enabled")))
(synopsis "OpenType text shaping engine")
(description
"HarfBuzz is an OpenType text shaping engine.")
base-commit: 198b6c745a7ac9813a8c9b9995f287b3a4c6cb48
prerequisite-patch-id: b8ea62f663c0eb01ba5b47665196e3197cbb474c
--
2.47.1
Information forwarded
to
liliana.prikler <at> gmail.com, maxim.cournoyer <at> gmail.com, vivien <at> planete-kraus.eu, guix-patches <at> gnu.org
:
bug#75037
; Package
guix-patches
.
(Wed, 08 Jan 2025 11:55:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 75037 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/music.scm (musescore): Update to 4.4.4.
This update was a major one as it upgraded Qt from 5 to 6.
Change-Id: Ib5da630b73889625054f88b1e86af1e9666e6e93
Signed-off-by: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
---
gnu/packages/music.scm | 63 +++++++++++++++++++++++++-----------------
1 file changed, 37 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index fc6e774eda..7fe78484fd 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -38,7 +38,7 @@
;;; Copyright © 2021 Brendan Tildesley <mail <at> brendan.scot>
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me <at> bonfacemunyoki.com>
;;; Copyright © 2021 Frank Pursel <frank.pursel <at> gmail.com>
-;;; Copyright © 2021 Rovanion Luckey <rovanion.luckey <at> gmail.com>
+;;; Copyright © 2021, 2024, 2025 Rovanion Luckey <rovanion.luckey <at> gmail.com>
;;; Copyright © 2021 Justin Veilleux <terramorpha <at> cock.li>
;;; Copyright © 2021, 2022, 2023 Felix Gruber <felgru <at> posteo.net>
;;; Copyright © 2021 Simon Streit <simon <at> netpanic.org>
@@ -5370,7 +5370,7 @@ (define-public sfizz
(define-public musescore
(package
(name "musescore")
- (version "4.3.2")
+ (version "4.4.4")
(source
(origin
(method git-fetch)
@@ -5379,21 +5379,31 @@ (define-public musescore
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1hx0l6d7avyfbh88hwn01h9q51mgd9zix91q2kgg1ax73pqxhfs2"))
- (modules '((guix build utils)))
- (snippet
- '(begin
- ;; Delete precompiled binaries.
- (delete-file-recursively "src/diagnostics/crashpad_handler")
- (substitute* "src/diagnostics/CMakeLists.txt"
- (("install") "#install"))))))
+ (base32 "0cjp1sp50pwmrgvpxjxg849s0vsvk2vcb66ym617nvlj761h0ngz"))
+ (modules '((guix build utils)))))
(build-system qt-build-system)
(arguments
- `(#:configure-flags
- `("-DDOWNLOAD_SOUNDFONT=OFF"
- "-DBUILD_DIAGNOSTICS=OFF"
- "-DMUSESCORE_BUILD_CONFIG=release"
- "-DUSE_SYSTEM_FREETYPE=ON")
+ `(#:qtbase ,qtbase
+ #:configure-flags
+ `("-DMUSE_APP_BUILD_MODE=release"
+ ;; Disable the build and usage of the `/bin/crashpad_handler` utility -
+ ;; it does automatic crash reporting and is distributed as a
+ ;; pre-compiled binary in the source-tree of MuseScore:
+ ;; https://github.com/musescore/MuseScore/issues/15571
+ ;; Renamed from MUE_BUILD_CRASHPAD_CLIENT, MUE_BUILD_DIAGNOSTICS_MODULE
+ ;; https://github.com/musescore/MuseScore/commit/6f269e8b072cca36cb76eb016cb60c1c1c2b9906
+ "-DMUSE_MODULE_DIAGNOSTICS_CRASHPAD_CLIENT=OFF"
+ ;; Use Guix' versions of system libraries.
+ "-DMUE_COMPILE_USE_SYSTEM_FREETYPE=ON"
+ "-DMUE_COMPILE_USE_SYSTEM_HARFBUZZ=ON"
+ "-DMUE_COMPILE_USE_SYSTEM_TINYXML=ON"
+ "-DMUE_COMPILE_USE_SYSTEM_OPUSENC=ON" ; Ipmlies -DMUE_COMPILE_USE_SYSTEM_OPUS=ON
+ "-DMUE_COMPILE_USE_SYSTEM_FLAC=ON"
+ ;; Disable download of soundfont during build.
+ "-DDOWNLOAD_SOUNDFONT=OFF"
+ ;; Don't bundle Qt QML files, relevant really only for Darwin.
+ ;; "-DMUE_COMPILE_INSTALL_QTQML_FILES=OFF"
+ )
;; There are tests, but no simple target to run. The command used to
;; run them is:
;;
@@ -5404,30 +5414,31 @@ (define-public musescore
;; So we simply skip them.
#:tests? #f))
(native-inputs
- (list git-minimal pkg-config qttools-5))
+ (list git-minimal pkg-config qttools))
(inputs
(list alsa-lib
freetype
`(,gtk+ "bin") ;for gtk-update-icon-cache
+ harfbuzz-meson
jack-1
lame
libogg
+ libopusenc
libsndfile
libvorbis
portaudio
portmidi
pulseaudio
python
- qtbase-5
- qtdeclarative-5
- qtgraphicaleffects
- qtnetworkauth-5
- qtquickcontrols-5
- qtquickcontrols2-5
- qtscript
- qtsvg-5
- qtx11extras
- qtxmlpatterns))
+ qt5compat
+ qtbase
+ qtdeclarative
+ qtnetworkauth
+ qtscxml
+ qtshadertools
+ qtsvg
+ qtwayland
+ tinyxml2))
(propagated-inputs
(list `(,alsa-plugins "pulseaudio"))) ;for libasound_module_conf_pulse.so
(synopsis "Music composition and notation software")
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75037
; Package
guix-patches
.
(Wed, 08 Jan 2025 12:02:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 75037 <at> debbugs.gnu.org (full text, mbox):
Am Mittwoch, dem 01.01.2025 um 19:37 +0100 schrieb Rovanion Luckey:
> * gnu/packages/music.scm (musescore): Update to 4.4.4.
>
> This update was a major one as it upgraded Qt from 5 to 6.
>
> Change-Id: Ib5da630b73889625054f88b1e86af1e9666e6e93
> Signed-off-by: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
> ---
Ignore this, it's not yet signed off.
> gnu/packages/music.scm | 63 +++++++++++++++++++++++++---------------
> --
> 1 file changed, 37 insertions(+), 26 deletions(-)
>
> diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
> index fc6e774eda..7fe78484fd 100644
> --- a/gnu/packages/music.scm
> +++ b/gnu/packages/music.scm
> @@ -38,7 +38,7 @@
> ;;; Copyright © 2021 Brendan Tildesley <mail <at> brendan.scot>
> ;;; Copyright © 2021 Bonface Munyoki Kilyungi
> <me <at> bonfacemunyoki.com>
> ;;; Copyright © 2021 Frank Pursel <frank.pursel <at> gmail.com>
> -;;; Copyright © 2021 Rovanion Luckey <rovanion.luckey <at> gmail.com>
> +;;; Copyright © 2021, 2024, 2025 Rovanion Luckey
> <rovanion.luckey <at> gmail.com>
> ;;; Copyright © 2021 Justin Veilleux <terramorpha <at> cock.li>
> ;;; Copyright © 2021, 2022, 2023 Felix Gruber <felgru <at> posteo.net>
> ;;; Copyright © 2021 Simon Streit <simon <at> netpanic.org>
> @@ -5370,7 +5370,7 @@ (define-public sfizz
> (define-public musescore
> (package
> (name "musescore")
> - (version "4.3.2")
> + (version "4.4.4")
Looking good so far.
> (source
> (origin
> (method git-fetch)
> @@ -5379,21 +5379,31 @@ (define-public musescore
> (commit (string-append "v" version))))
> (file-name (git-file-name name version))
> (sha256
> - (base32
> "1hx0l6d7avyfbh88hwn01h9q51mgd9zix91q2kgg1ax73pqxhfs2"))
> - (modules '((guix build utils)))
> - (snippet
> - '(begin
> - ;; Delete precompiled binaries.
> - (delete-file-recursively
> "src/diagnostics/crashpad_handler")
> - (substitute* "src/diagnostics/CMakeLists.txt"
> - (("install") "#install"))))))
> + (base32
> "0cjp1sp50pwmrgvpxjxg849s0vsvk2vcb66ym617nvlj761h0ngz"))
> + (modules '((guix build utils)))))
This change is undocumented. If you do drop the snippet (is it really
safe to?), then you can also drop the modules.
> (build-system qt-build-system)
> (arguments
> - `(#:configure-flags
> - `("-DDOWNLOAD_SOUNDFONT=OFF"
> - "-DBUILD_DIAGNOSTICS=OFF"
> - "-DMUSESCORE_BUILD_CONFIG=release"
> - "-DUSE_SYSTEM_FREETYPE=ON")
> + `(#:qtbase ,qtbase
Is this flag needed? Anyway, new flags should be documented…
> + #:configure-flags
> + `("-DMUSE_APP_BUILD_MODE=release"
> + ;; Disable the build and usage of the
> `/bin/crashpad_handler` utility -
> + ;; it does automatic crash reporting and is distributed as
> a
> + ;; pre-compiled binary in the source-tree of MuseScore:
> + ;; https://github.com/musescore/MuseScore/issues/15571
> + ;; Renamed from MUE_BUILD_CRASHPAD_CLIENT,
> MUE_BUILD_DIAGNOSTICS_MODULE
> + ;;
> https://github.com/musescore/MuseScore/commit/6f269e8b072cca36cb76eb016cb60c1c1c2b9906
> + "-DMUSE_MODULE_DIAGNOSTICS_CRASHPAD_CLIENT=OFF"
> + ;; Use Guix' versions of system libraries.
> + "-DMUE_COMPILE_USE_SYSTEM_FREETYPE=ON"
> + "-DMUE_COMPILE_USE_SYSTEM_HARFBUZZ=ON"
> + "-DMUE_COMPILE_USE_SYSTEM_TINYXML=ON"
> + "-DMUE_COMPILE_USE_SYSTEM_OPUSENC=ON" ; Ipmlies -
> DMUE_COMPILE_USE_SYSTEM_OPUS=ON
> + "-DMUE_COMPILE_USE_SYSTEM_FLAC=ON"
> + ;; Disable download of soundfont during build.
> + "-DDOWNLOAD_SOUNDFONT=OFF"
> + ;; Don't bundle Qt QML files, relevant really only for
> Darwin.
> + ;; "-DMUE_COMPILE_INSTALL_QTQML_FILES=OFF"
> + )
… as should changes here. Is everything renamed from MUSE to MUE or
are these typos?
Also, parentheses are social animals, they like to group together :)
> ;; There are tests, but no simple target to run. The command
> used to
> ;; run them is:
> ;;
> @@ -5404,30 +5414,31 @@ (define-public musescore
> ;; So we simply skip them.
> #:tests? #f))
> (native-inputs
> - (list git-minimal pkg-config qttools-5))
> + (list git-minimal pkg-config qttools))
Write this out in the ChangeLog.
> (inputs
> (list alsa-lib
> freetype
> `(,gtk+ "bin") ;for gtk-update-icon-cache
> + harfbuzz-meson
Whoopsie, this can be regular harfbuzz with the new 1/2.
> jack-1
> lame
> libogg
> + libopusenc
> libsndfile
> libvorbis
> portaudio
> portmidi
> pulseaudio
> python
> - qtbase-5
> - qtdeclarative-5
> - qtgraphicaleffects
> - qtnetworkauth-5
> - qtquickcontrols-5
> - qtquickcontrols2-5
> - qtscript
> - qtsvg-5
> - qtx11extras
> - qtxmlpatterns))
> + qt5compat
> + qtbase
> + qtdeclarative
> + qtnetworkauth
> + qtscxml
> + qtshadertools
> + qtsvg
> + qtwayland
> + tinyxml2))
Write these out in the ChangeLog.
> (propagated-inputs
> (list `(,alsa-plugins "pulseaudio"))) ;for
> libasound_module_conf_pulse.so
> (synopsis "Music composition and notation software")
Cheers
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75037
; Package
guix-patches
.
(Fri, 10 Jan 2025 13:49:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 75037 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
I've attached an updated version 3 of the music.scm patch.
Den ons 8 jan. 2025 kl 13:01 skrev Liliana Marie Prikler <
liliana.prikler <at> gmail.com>:
> Am Mittwoch, dem 01.01.2025 um 19:37 +0100 schrieb Rovanion Luckey:
> > - (base32
> > "1hx0l6d7avyfbh88hwn01h9q51mgd9zix91q2kgg1ax73pqxhfs2"))
> > - (modules '((guix build utils)))
> > - (snippet
> > - '(begin
> > - ;; Delete precompiled binaries.
> > - (delete-file-recursively
> > "src/diagnostics/crashpad_handler")
> > - (substitute* "src/diagnostics/CMakeLists.txt"
> > - (("install") "#install"))))))
> > + (base32
> > "0cjp1sp50pwmrgvpxjxg849s0vsvk2vcb66ym617nvlj761h0ngz"))
> > + (modules '((guix build utils)))))
> This change is undocumented. If you do drop the snippet (is it really
> safe to?), then you can also drop the modules.
>
As far as I can tell, yes. This step is superseeded by the flag
-DMUSE_MODULE_DIAGNOSTICS_CRASHPAD_CLIENT=OFF.
> (build-system qt-build-system)
> > (arguments
> > - `(#:configure-flags
> > - `("-DDOWNLOAD_SOUNDFONT=OFF"
> > - "-DBUILD_DIAGNOSTICS=OFF"
> > - "-DMUSESCORE_BUILD_CONFIG=release"
> > - "-DUSE_SYSTEM_FREETYPE=ON")
> > + `(#:qtbase ,qtbase
> Is this flag needed? Anyway, new flags should be documented…
Yes, Musescore will crash on startup otherwise as it would be linked
against the wrong qtbase. Added a comment.
It's of course a bit insane that the qt-build-system doesn't pick up the
qt-base passed as arguments for the package, but that is what it is.
> + #:configure-flags
> > + `("-DMUSE_APP_BUILD_MODE=release"
> > + ;; Disable the build and usage of the
> > `/bin/crashpad_handler` utility -
> > + ;; it does automatic crash reporting and is distributed as
> > a
> > + ;; pre-compiled binary in the source-tree of MuseScore:
> > + ;; https://github.com/musescore/MuseScore/issues/15571
> > + ;; Renamed from MUE_BUILD_CRASHPAD_CLIENT,
> > MUE_BUILD_DIAGNOSTICS_MODULE
> > + ;;
> >
> https://github.com/musescore/MuseScore/commit/6f269e8b072cca36cb76eb016cb60c1c1c2b9906
> > + "-DMUSE_MODULE_DIAGNOSTICS_CRASHPAD_CLIENT=OFF"
> > + ;; Use Guix' versions of system libraries.
> > + "-DMUE_COMPILE_USE_SYSTEM_FREETYPE=ON"
> > + "-DMUE_COMPILE_USE_SYSTEM_HARFBUZZ=ON"
> > + "-DMUE_COMPILE_USE_SYSTEM_TINYXML=ON"
> > + "-DMUE_COMPILE_USE_SYSTEM_OPUSENC=ON" ; Ipmlies -
> > DMUE_COMPILE_USE_SYSTEM_OPUS=ON
> > + "-DMUE_COMPILE_USE_SYSTEM_FLAC=ON"
> > + ;; Disable download of soundfont during build.
> > + "-DDOWNLOAD_SOUNDFONT=OFF"
> > + ;; Don't bundle Qt QML files, relevant really only for
> > Darwin.
> > + ;; "-DMUE_COMPILE_INSTALL_QTQML_FILES=OFF"
> > + )
> … as should changes here.
I clearified the comment spanning multiple lines and hopefully understood
the meaning of document correctly when I added some text to the commit
message.
Is everything renamed from MUSE to MUE or
> are these typos?
>
Yes, renamed.
Also, parentheses are social animals, they like to group together :)
> > ;; There are tests, but no simple target to run. The command
> > used to
> > ;; run them is:
> > ;;
> > @@ -5404,30 +5414,31 @@ (define-public musescore
> > ;; So we simply skip them.
> > #:tests? #f))
> > (native-inputs
> > - (list git-minimal pkg-config qttools-5))
> > + (list git-minimal pkg-config qttools))
> Write this out in the ChangeLog.
>
Sure.
> (inputs
> > (list alsa-lib
> > freetype
> > `(,gtk+ "bin") ;for gtk-update-icon-cache
> > + harfbuzz-meson
> Whoopsie, this can be regular harfbuzz with the new 1/2.
>
Fixed.
> jack-1
> > lame
> > libogg
> > + libopusenc
> > libsndfile
> > libvorbis
> > portaudio
> > portmidi
> > pulseaudio
> > python
> > - qtbase-5
> > - qtdeclarative-5
> > - qtgraphicaleffects
> > - qtnetworkauth-5
> > - qtquickcontrols-5
> > - qtquickcontrols2-5
> > - qtscript
> > - qtsvg-5
> > - qtx11extras
> > - qtxmlpatterns))
> > + qt5compat
> > + qtbase
> > + qtdeclarative
> > + qtnetworkauth
> > + qtscxml
> > + qtshadertools
> > + qtsvg
> > + qtwayland
> > + tinyxml2))
> Write these out in the ChangeLog.
Done.
> (propagated-inputs
> > (list `(,alsa-plugins "pulseaudio"))) ;for
> > libasound_module_conf_pulse.so
> > (synopsis "Music composition and notation software")
>
> Cheers
>
Thanks for the review, hope this one fits the bill.
[Message part 2 (text/html, inline)]
[0002-gnu-musescore-Update-to-4.4.4.patch (text/x-patch, attachment)]
Reply sent
to
Liliana Marie Prikler <liliana.prikler <at> gmail.com>
:
You have taken responsibility.
(Sat, 18 Jan 2025 10:43:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Rovanion Luckey <rovanion.luckey <at> gmail.com>
:
bug acknowledged by developer.
(Sat, 18 Jan 2025 10:43:02 GMT)
Full text and
rfc822 format available.
Message #25 received at 75037-done <at> debbugs.gnu.org (full text, mbox):
Am Freitag, dem 10.01.2025 um 14:47 +0100 schrieb Rovanion Luckey:
> Thanks for the review, hope this one fits the bill.
It's now on gnome-team :)
Thanks
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75037
; Package
guix-patches
.
(Mon, 20 Jan 2025 10:00:02 GMT)
Full text and
rfc822 format available.
Message #28 received at 75037-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Cheers!
Den lör 18 jan. 2025 kl 11:42 skrev Liliana Marie Prikler <
liliana.prikler <at> gmail.com>:
> Am Freitag, dem 10.01.2025 um 14:47 +0100 schrieb Rovanion Luckey:
> > Thanks for the review, hope this one fits the bill.
> It's now on gnome-team :)
>
> Thanks
>
[Message part 2 (text/html, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 17 Feb 2025 12:24:10 GMT)
Full text and
rfc822 format available.
This bug report was last modified 173 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.