This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new d0aaef326b gnu: mono: Support reading manifest files with "<runpath>"
in them.
d0aaef326b is described below
commit d0aaef326b548bb9d5fb1c7bc5c9c1903e4e0549
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Sat Jul 5 12:33:09 2025 +0200
gnu: mono: Support reading manifest files with "<runpath>" in them.
* gnu/packages/patches/mono-6.12.0-add-runpath.patch: Modify.
Change-Id: Idac0e9cefd747982b77cc616c7ca9d900f1d9616
---
gnu/packages/patches/mono-6.12.0-add-runpath.patch | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/gnu/packages/patches/mono-6.12.0-add-runpath.patch
b/gnu/packages/patches/mono-6.12.0-add-runpath.patch
index 3062bd6a0d..2492d9db8c 100644
--- a/gnu/packages/patches/mono-6.12.0-add-runpath.patch
+++ b/gnu/packages/patches/mono-6.12.0-add-runpath.patch
@@ -183,3 +183,15 @@ index d973de53c8c..8888c7b4fac 100644
}
/**
+diff -ru
a/mcs/class/System.Configuration/System.Configuration/SectionGroupInfo.cs
b/mcs/class/System.Configuration/System.Configuration/SectionGroupInfo.cs
+--- a/mcs/class/System.Configuration/System.Configuration/SectionGroupInfo.cs
2025-07-05 12:28:26.634141555 +0200
++++ b/mcs/class/System.Configuration/System.Configuration/SectionGroupInfo.cs
2025-07-05 12:28:53.620591274 +0200
+@@ -293,7 +293,7 @@
+ continue;
+ }
+
+- if (reader.LocalName == "dllmap") {
++ if (reader.LocalName == "dllmap" ||
reader.LocalName == "runpath") {
+ reader.Skip ();
+ continue;
+ }