git: 8996a92bf264 - main - astro/mepo: unbreak build after 91552559ae79

From: Jan Beich <jbeich_at_FreeBSD.org>
Date: Tue, 24 Jan 2023 00:05:24 UTC
The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=8996a92bf264597b9f80f524f208446e0d92ef39

commit 8996a92bf264597b9f80f524f208446e0d92ef39
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2023-01-23 23:21:53 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2023-01-23 23:51:41 +0000

    astro/mepo: unbreak build after 91552559ae79
    
    src/main.zig:15:13: error: encountered @panic at comptime
                @panic("Must be built against Zig 0.10.0");
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    referenced by:
        comptime_0: /usr/local/lib/zig/std/start.zig:59:50
        remaining reference traces hidden; use '-freference-trace' to see all reference traces
---
 astro/mepo/files/patch-zig-0.10.1 | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/astro/mepo/files/patch-zig-0.10.1 b/astro/mepo/files/patch-zig-0.10.1
new file mode 100644
index 000000000000..9aaa10bd3cf1
--- /dev/null
+++ b/astro/mepo/files/patch-zig-0.10.1
@@ -0,0 +1,15 @@
+Allow newer often compatible Zig patch-level updates
+
+--- src/main.zig.orig	2022-11-17 16:38:59 UTC
++++ src/main.zig
+@@ -11,8 +11,8 @@ pub fn main() !void {
+ pub fn main() !void {
+     comptime {
+         const v = builtin.zig_version;
+-        if (v.major != 0 or v.minor != 10 or v.patch != 0)
+-            @panic("Must be built against Zig 0.10.0");
++        if (v.major != 0 or v.minor != 10)
++            @panic("Must be built against Zig 0.10");
+     }
+ 
+     const allocator = std.heap.c_allocator;