Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package waylock for openSUSE:Factory checked 
in at 2025-07-02 12:09:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/waylock (Old)
 and      /work/SRC/openSUSE:Factory/.waylock.new.7067 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "waylock"

Wed Jul  2 12:09:23 2025 rev:9 rq:1289382 version:1.3.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/waylock/waylock.changes  2024-06-17 
19:29:09.565517434 +0200
+++ /work/SRC/openSUSE:Factory/.waylock.new.7067/waylock.changes        
2025-07-02 12:10:13.072539583 +0200
@@ -1,0 +2,6 @@
+Mon Jun 30 05:29:36 UTC 2025 - Soc Virnyl Estela 
<uncomfyhaloma...@opensuse.org>
+
+- Update to 1.3.0:
+  * This release adds a new -input-alt-color option
+
+-------------------------------------------------------------------

Old:
----
  waylock-1.2.0.tar.gz
  waylock-1.2.0.tar.gz.sig

New:
----
  waylock-1.3.0.tar.gz
  waylock-1.3.0.tar.gz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ waylock.spec ++++++
--- /var/tmp/diff_new_pack.g1DWhE/_old  2025-07-02 12:10:14.020579195 +0200
+++ /var/tmp/diff_new_pack.g1DWhE/_new  2025-07-02 12:10:14.024579362 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package waylock
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           waylock
-Version:        1.2.0
+Version:        1.3.0
 Release:        0
 Summary:        Small screenlocker for Wayland compositors
 License:        ISC
@@ -30,8 +30,8 @@
 Patch1:         add-experimental-non-llvm-zig-backend.patch
 BuildRequires:  pkgconfig
 BuildRequires:  scdoc >= 1.9.2
-BuildRequires:  zig
-BuildRequires:  zig-rpm-macros
+BuildRequires:  zig = 0.13.0
+BuildRequires:  zig-rpm-macros = 0.13.0
 BuildRequires:  zstd
 BuildRequires:  pkgconfig(pam)
 BuildRequires:  pkgconfig(wayland-protocols) >= 1.24

++++++ vendor.tar.zst ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/b/3d7ce1646169d5022922a5e22ff38e70/builtin.zig 
new/vendor/b/3d7ce1646169d5022922a5e22ff38e70/builtin.zig
--- old/vendor/b/3d7ce1646169d5022922a5e22ff38e70/builtin.zig   2024-06-15 
14:19:04.180232394 +0200
+++ new/vendor/b/3d7ce1646169d5022922a5e22ff38e70/builtin.zig   1970-01-01 
01:00:00.000000000 +0100
@@ -1,103 +0,0 @@
-const std = @import("std");
-/// Zig version. When writing code that supports multiple versions of Zig, 
prefer
-/// feature detection (i.e. with `@hasDecl` or `@hasField`) over version 
checks.
-pub const zig_version = std.SemanticVersion.parse(zig_version_string) catch 
unreachable;
-pub const zig_version_string = "0.13.0";
-pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm;
-
-pub const output_mode = std.builtin.OutputMode.Lib;
-pub const link_mode = std.builtin.LinkMode.static;
-pub const is_test = false;
-pub const single_threaded = false;
-pub const abi = std.Target.Abi.gnu;
-pub const cpu: std.Target.Cpu = .{
-    .arch = .x86_64,
-    .model = &std.Target.x86.cpu.x86_64,
-    .features = std.Target.x86.featureSet(&[_]std.Target.x86.Feature{
-        .@"64bit",
-        .adx,
-        .aes,
-        .avx,
-        .avx2,
-        .bmi,
-        .bmi2,
-        .clflushopt,
-        .cmov,
-        .cx16,
-        .cx8,
-        .f16c,
-        .fma,
-        .fsgsbase,
-        .fxsr,
-        .idivq_to_divl,
-        .invpcid,
-        .lzcnt,
-        .macrofusion,
-        .mmx,
-        .movbe,
-        .nopl,
-        .pclmul,
-        .pku,
-        .popcnt,
-        .prfchw,
-        .rdrnd,
-        .rdseed,
-        .sahf,
-        .sgx,
-        .slow_3ops_lea,
-        .slow_incdec,
-        .sse,
-        .sse2,
-        .sse3,
-        .sse4_1,
-        .sse4_2,
-        .ssse3,
-        .vzeroupper,
-        .x87,
-        .xsave,
-        .xsavec,
-        .xsaveopt,
-        .xsaves,
-    }),
-};
-pub const os = std.Target.Os{
-    .tag = .linux,
-    .version_range = .{ .linux = .{
-        .range = .{
-            .min = .{
-                .major = 6,
-                .minor = 9,
-                .patch = 3,
-            },
-            .max = .{
-                .major = 6,
-                .minor = 9,
-                .patch = 3,
-            },
-        },
-        .glibc = .{
-            .major = 2,
-            .minor = 39,
-            .patch = 0,
-        },
-    }},
-};
-pub const target: std.Target = .{
-    .cpu = cpu,
-    .os = os,
-    .abi = abi,
-    .ofmt = object_format,
-    .dynamic_linker = 
std.Target.DynamicLinker.init("/lib64/ld-linux-x86-64.so.2"),
-};
-pub const object_format = std.Target.ObjectFormat.elf;
-pub const mode = std.builtin.OptimizeMode.ReleaseFast;
-pub const link_libc = false;
-pub const link_libcpp = false;
-pub const have_error_return_tracing = false;
-pub const valgrind_support = false;
-pub const sanitize_thread = false;
-pub const position_independent_code = false;
-pub const position_independent_executable = false;
-pub const strip_debug_info = false;
-pub const code_model = std.builtin.CodeModel.default;
-pub const omit_frame_pointer = false;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/b/3fbfca35be5a5a65aa5264174590ec4b/builtin.zig 
new/vendor/b/3fbfca35be5a5a65aa5264174590ec4b/builtin.zig
--- old/vendor/b/3fbfca35be5a5a65aa5264174590ec4b/builtin.zig   1970-01-01 
01:00:00.000000000 +0100
+++ new/vendor/b/3fbfca35be5a5a65aa5264174590ec4b/builtin.zig   1970-01-01 
01:00:00.000000000 +0100
@@ -0,0 +1,103 @@
+const std = @import("std");
+/// Zig version. When writing code that supports multiple versions of Zig, 
prefer
+/// feature detection (i.e. with `@hasDecl` or `@hasField`) over version 
checks.
+pub const zig_version = std.SemanticVersion.parse(zig_version_string) catch 
unreachable;
+pub const zig_version_string = "0.13.0";
+pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm;
+
+pub const output_mode = std.builtin.OutputMode.Exe;
+pub const link_mode = std.builtin.LinkMode.static;
+pub const is_test = false;
+pub const single_threaded = false;
+pub const abi = std.Target.Abi.gnu;
+pub const cpu: std.Target.Cpu = .{
+    .arch = .x86_64,
+    .model = &std.Target.x86.cpu.x86_64,
+    .features = std.Target.x86.featureSet(&[_]std.Target.x86.Feature{
+        .@"64bit",
+        .adx,
+        .aes,
+        .avx,
+        .avx2,
+        .bmi,
+        .bmi2,
+        .clflushopt,
+        .cmov,
+        .cx16,
+        .cx8,
+        .f16c,
+        .fma,
+        .fsgsbase,
+        .fxsr,
+        .idivq_to_divl,
+        .invpcid,
+        .lzcnt,
+        .macrofusion,
+        .mmx,
+        .movbe,
+        .nopl,
+        .pclmul,
+        .pku,
+        .popcnt,
+        .prfchw,
+        .rdrnd,
+        .rdseed,
+        .sahf,
+        .sgx,
+        .slow_3ops_lea,
+        .slow_incdec,
+        .sse,
+        .sse2,
+        .sse3,
+        .sse4_1,
+        .sse4_2,
+        .ssse3,
+        .vzeroupper,
+        .x87,
+        .xsave,
+        .xsavec,
+        .xsaveopt,
+        .xsaves,
+    }),
+};
+pub const os = std.Target.Os{
+    .tag = .linux,
+    .version_range = .{ .linux = .{
+        .range = .{
+            .min = .{
+                .major = 6,
+                .minor = 14,
+                .patch = 6,
+            },
+            .max = .{
+                .major = 6,
+                .minor = 14,
+                .patch = 6,
+            },
+        },
+        .glibc = .{
+            .major = 2,
+            .minor = 41,
+            .patch = 0,
+        },
+    }},
+};
+pub const target: std.Target = .{
+    .cpu = cpu,
+    .os = os,
+    .abi = abi,
+    .ofmt = object_format,
+    .dynamic_linker = 
std.Target.DynamicLinker.init("/lib64/ld-linux-x86-64.so.2"),
+};
+pub const object_format = std.Target.ObjectFormat.elf;
+pub const mode = std.builtin.OptimizeMode.Debug;
+pub const link_libc = false;
+pub const link_libcpp = false;
+pub const have_error_return_tracing = true;
+pub const valgrind_support = true;
+pub const sanitize_thread = false;
+pub const position_independent_code = false;
+pub const position_independent_executable = false;
+pub const strip_debug_info = false;
+pub const code_model = std.builtin.CodeModel.default;
+pub const omit_frame_pointer = false;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/b/6e43fbd823a30eeb7de260276d6ffa1e/builtin.zig 
new/vendor/b/6e43fbd823a30eeb7de260276d6ffa1e/builtin.zig
--- old/vendor/b/6e43fbd823a30eeb7de260276d6ffa1e/builtin.zig   2024-06-15 
14:19:04.063565752 +0200
+++ new/vendor/b/6e43fbd823a30eeb7de260276d6ffa1e/builtin.zig   1970-01-01 
01:00:00.000000000 +0100
@@ -1,103 +0,0 @@
-const std = @import("std");
-/// Zig version. When writing code that supports multiple versions of Zig, 
prefer
-/// feature detection (i.e. with `@hasDecl` or `@hasField`) over version 
checks.
-pub const zig_version = std.SemanticVersion.parse(zig_version_string) catch 
unreachable;
-pub const zig_version_string = "0.13.0";
-pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm;
-
-pub const output_mode = std.builtin.OutputMode.Exe;
-pub const link_mode = std.builtin.LinkMode.static;
-pub const is_test = false;
-pub const single_threaded = false;
-pub const abi = std.Target.Abi.gnu;
-pub const cpu: std.Target.Cpu = .{
-    .arch = .x86_64,
-    .model = &std.Target.x86.cpu.x86_64,
-    .features = std.Target.x86.featureSet(&[_]std.Target.x86.Feature{
-        .@"64bit",
-        .adx,
-        .aes,
-        .avx,
-        .avx2,
-        .bmi,
-        .bmi2,
-        .clflushopt,
-        .cmov,
-        .cx16,
-        .cx8,
-        .f16c,
-        .fma,
-        .fsgsbase,
-        .fxsr,
-        .idivq_to_divl,
-        .invpcid,
-        .lzcnt,
-        .macrofusion,
-        .mmx,
-        .movbe,
-        .nopl,
-        .pclmul,
-        .pku,
-        .popcnt,
-        .prfchw,
-        .rdrnd,
-        .rdseed,
-        .sahf,
-        .sgx,
-        .slow_3ops_lea,
-        .slow_incdec,
-        .sse,
-        .sse2,
-        .sse3,
-        .sse4_1,
-        .sse4_2,
-        .ssse3,
-        .vzeroupper,
-        .x87,
-        .xsave,
-        .xsavec,
-        .xsaveopt,
-        .xsaves,
-    }),
-};
-pub const os = std.Target.Os{
-    .tag = .linux,
-    .version_range = .{ .linux = .{
-        .range = .{
-            .min = .{
-                .major = 6,
-                .minor = 9,
-                .patch = 3,
-            },
-            .max = .{
-                .major = 6,
-                .minor = 9,
-                .patch = 3,
-            },
-        },
-        .glibc = .{
-            .major = 2,
-            .minor = 39,
-            .patch = 0,
-        },
-    }},
-};
-pub const target: std.Target = .{
-    .cpu = cpu,
-    .os = os,
-    .abi = abi,
-    .ofmt = object_format,
-    .dynamic_linker = 
std.Target.DynamicLinker.init("/lib64/ld-linux-x86-64.so.2"),
-};
-pub const object_format = std.Target.ObjectFormat.elf;
-pub const mode = std.builtin.OptimizeMode.Debug;
-pub const link_libc = false;
-pub const link_libcpp = false;
-pub const have_error_return_tracing = true;
-pub const valgrind_support = true;
-pub const sanitize_thread = false;
-pub const position_independent_code = false;
-pub const position_independent_executable = false;
-pub const strip_debug_info = false;
-pub const code_model = std.builtin.CodeModel.default;
-pub const omit_frame_pointer = false;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/b/841eaa40d450fc25af8ff08adc38f478/builtin.zig 
new/vendor/b/841eaa40d450fc25af8ff08adc38f478/builtin.zig
--- old/vendor/b/841eaa40d450fc25af8ff08adc38f478/builtin.zig   1970-01-01 
01:00:00.000000000 +0100
+++ new/vendor/b/841eaa40d450fc25af8ff08adc38f478/builtin.zig   1970-01-01 
01:00:00.000000000 +0100
@@ -0,0 +1,103 @@
+const std = @import("std");
+/// Zig version. When writing code that supports multiple versions of Zig, 
prefer
+/// feature detection (i.e. with `@hasDecl` or `@hasField`) over version 
checks.
+pub const zig_version = std.SemanticVersion.parse(zig_version_string) catch 
unreachable;
+pub const zig_version_string = "0.13.0";
+pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm;
+
+pub const output_mode = std.builtin.OutputMode.Lib;
+pub const link_mode = std.builtin.LinkMode.static;
+pub const is_test = false;
+pub const single_threaded = false;
+pub const abi = std.Target.Abi.gnu;
+pub const cpu: std.Target.Cpu = .{
+    .arch = .x86_64,
+    .model = &std.Target.x86.cpu.x86_64,
+    .features = std.Target.x86.featureSet(&[_]std.Target.x86.Feature{
+        .@"64bit",
+        .adx,
+        .aes,
+        .avx,
+        .avx2,
+        .bmi,
+        .bmi2,
+        .clflushopt,
+        .cmov,
+        .cx16,
+        .cx8,
+        .f16c,
+        .fma,
+        .fsgsbase,
+        .fxsr,
+        .idivq_to_divl,
+        .invpcid,
+        .lzcnt,
+        .macrofusion,
+        .mmx,
+        .movbe,
+        .nopl,
+        .pclmul,
+        .pku,
+        .popcnt,
+        .prfchw,
+        .rdrnd,
+        .rdseed,
+        .sahf,
+        .sgx,
+        .slow_3ops_lea,
+        .slow_incdec,
+        .sse,
+        .sse2,
+        .sse3,
+        .sse4_1,
+        .sse4_2,
+        .ssse3,
+        .vzeroupper,
+        .x87,
+        .xsave,
+        .xsavec,
+        .xsaveopt,
+        .xsaves,
+    }),
+};
+pub const os = std.Target.Os{
+    .tag = .linux,
+    .version_range = .{ .linux = .{
+        .range = .{
+            .min = .{
+                .major = 6,
+                .minor = 14,
+                .patch = 6,
+            },
+            .max = .{
+                .major = 6,
+                .minor = 14,
+                .patch = 6,
+            },
+        },
+        .glibc = .{
+            .major = 2,
+            .minor = 41,
+            .patch = 0,
+        },
+    }},
+};
+pub const target: std.Target = .{
+    .cpu = cpu,
+    .os = os,
+    .abi = abi,
+    .ofmt = object_format,
+    .dynamic_linker = 
std.Target.DynamicLinker.init("/lib64/ld-linux-x86-64.so.2"),
+};
+pub const object_format = std.Target.ObjectFormat.elf;
+pub const mode = std.builtin.OptimizeMode.ReleaseFast;
+pub const link_libc = false;
+pub const link_libcpp = false;
+pub const have_error_return_tracing = false;
+pub const valgrind_support = false;
+pub const sanitize_thread = false;
+pub const position_independent_code = false;
+pub const position_independent_executable = false;
+pub const strip_debug_info = false;
+pub const code_model = std.builtin.CodeModel.default;
+pub const omit_frame_pointer = false;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/b/cacd014620ab483f379e2739ee75b8bc/builtin.zig 
new/vendor/b/cacd014620ab483f379e2739ee75b8bc/builtin.zig
--- old/vendor/b/cacd014620ab483f379e2739ee75b8bc/builtin.zig   2024-06-15 
14:19:14.630230236 +0200
+++ new/vendor/b/cacd014620ab483f379e2739ee75b8bc/builtin.zig   1970-01-01 
01:00:00.000000000 +0100
@@ -1,103 +0,0 @@
-const std = @import("std");
-/// Zig version. When writing code that supports multiple versions of Zig, 
prefer
-/// feature detection (i.e. with `@hasDecl` or `@hasField`) over version 
checks.
-pub const zig_version = std.SemanticVersion.parse(zig_version_string) catch 
unreachable;
-pub const zig_version_string = "0.13.0";
-pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm;
-
-pub const output_mode = std.builtin.OutputMode.Lib;
-pub const link_mode = std.builtin.LinkMode.static;
-pub const is_test = false;
-pub const single_threaded = false;
-pub const abi = std.Target.Abi.gnu;
-pub const cpu: std.Target.Cpu = .{
-    .arch = .x86_64,
-    .model = &std.Target.x86.cpu.x86_64,
-    .features = std.Target.x86.featureSet(&[_]std.Target.x86.Feature{
-        .@"64bit",
-        .adx,
-        .aes,
-        .avx,
-        .avx2,
-        .bmi,
-        .bmi2,
-        .clflushopt,
-        .cmov,
-        .cx16,
-        .cx8,
-        .f16c,
-        .fma,
-        .fsgsbase,
-        .fxsr,
-        .idivq_to_divl,
-        .invpcid,
-        .lzcnt,
-        .macrofusion,
-        .mmx,
-        .movbe,
-        .nopl,
-        .pclmul,
-        .pku,
-        .popcnt,
-        .prfchw,
-        .rdrnd,
-        .rdseed,
-        .sahf,
-        .sgx,
-        .slow_3ops_lea,
-        .slow_incdec,
-        .sse,
-        .sse2,
-        .sse3,
-        .sse4_1,
-        .sse4_2,
-        .ssse3,
-        .vzeroupper,
-        .x87,
-        .xsave,
-        .xsavec,
-        .xsaveopt,
-        .xsaves,
-    }),
-};
-pub const os = std.Target.Os{
-    .tag = .linux,
-    .version_range = .{ .linux = .{
-        .range = .{
-            .min = .{
-                .major = 6,
-                .minor = 9,
-                .patch = 3,
-            },
-            .max = .{
-                .major = 6,
-                .minor = 9,
-                .patch = 3,
-            },
-        },
-        .glibc = .{
-            .major = 2,
-            .minor = 39,
-            .patch = 0,
-        },
-    }},
-};
-pub const target: std.Target = .{
-    .cpu = cpu,
-    .os = os,
-    .abi = abi,
-    .ofmt = object_format,
-    .dynamic_linker = 
std.Target.DynamicLinker.init("/lib64/ld-linux-x86-64.so.2"),
-};
-pub const object_format = std.Target.ObjectFormat.elf;
-pub const mode = std.builtin.OptimizeMode.ReleaseFast;
-pub const link_libc = true;
-pub const link_libcpp = false;
-pub const have_error_return_tracing = false;
-pub const valgrind_support = false;
-pub const sanitize_thread = false;
-pub const position_independent_code = true;
-pub const position_independent_executable = false;
-pub const strip_debug_info = false;
-pub const code_model = std.builtin.CodeModel.default;
-pub const omit_frame_pointer = false;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/vendor/b/ea6ced57bd937f2abf4768846f2657f2/builtin.zig 
new/vendor/b/ea6ced57bd937f2abf4768846f2657f2/builtin.zig
--- old/vendor/b/ea6ced57bd937f2abf4768846f2657f2/builtin.zig   2024-06-15 
14:19:14.223563653 +0200
+++ new/vendor/b/ea6ced57bd937f2abf4768846f2657f2/builtin.zig   1970-01-01 
01:00:00.000000000 +0100
@@ -1,103 +0,0 @@
-const std = @import("std");
-/// Zig version. When writing code that supports multiple versions of Zig, 
prefer
-/// feature detection (i.e. with `@hasDecl` or `@hasField`) over version 
checks.
-pub const zig_version = std.SemanticVersion.parse(zig_version_string) catch 
unreachable;
-pub const zig_version_string = "0.13.0";
-pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm;
-
-pub const output_mode = std.builtin.OutputMode.Exe;
-pub const link_mode = std.builtin.LinkMode.dynamic;
-pub const is_test = false;
-pub const single_threaded = false;
-pub const abi = std.Target.Abi.gnu;
-pub const cpu: std.Target.Cpu = .{
-    .arch = .x86_64,
-    .model = &std.Target.x86.cpu.x86_64,
-    .features = std.Target.x86.featureSet(&[_]std.Target.x86.Feature{
-        .@"64bit",
-        .adx,
-        .aes,
-        .avx,
-        .avx2,
-        .bmi,
-        .bmi2,
-        .clflushopt,
-        .cmov,
-        .cx16,
-        .cx8,
-        .f16c,
-        .fma,
-        .fsgsbase,
-        .fxsr,
-        .idivq_to_divl,
-        .invpcid,
-        .lzcnt,
-        .macrofusion,
-        .mmx,
-        .movbe,
-        .nopl,
-        .pclmul,
-        .pku,
-        .popcnt,
-        .prfchw,
-        .rdrnd,
-        .rdseed,
-        .sahf,
-        .sgx,
-        .slow_3ops_lea,
-        .slow_incdec,
-        .sse,
-        .sse2,
-        .sse3,
-        .sse4_1,
-        .sse4_2,
-        .ssse3,
-        .vzeroupper,
-        .x87,
-        .xsave,
-        .xsavec,
-        .xsaveopt,
-        .xsaves,
-    }),
-};
-pub const os = std.Target.Os{
-    .tag = .linux,
-    .version_range = .{ .linux = .{
-        .range = .{
-            .min = .{
-                .major = 6,
-                .minor = 9,
-                .patch = 3,
-            },
-            .max = .{
-                .major = 6,
-                .minor = 9,
-                .patch = 3,
-            },
-        },
-        .glibc = .{
-            .major = 2,
-            .minor = 39,
-            .patch = 0,
-        },
-    }},
-};
-pub const target: std.Target = .{
-    .cpu = cpu,
-    .os = os,
-    .abi = abi,
-    .ofmt = object_format,
-    .dynamic_linker = 
std.Target.DynamicLinker.init("/lib64/ld-linux-x86-64.so.2"),
-};
-pub const object_format = std.Target.ObjectFormat.elf;
-pub const mode = std.builtin.OptimizeMode.Debug;
-pub const link_libc = true;
-pub const link_libcpp = false;
-pub const have_error_return_tracing = true;
-pub const valgrind_support = true;
-pub const sanitize_thread = false;
-pub const position_independent_code = true;
-pub const position_independent_executable = false;
-pub const strip_debug_info = false;
-pub const code_model = std.builtin.CodeModel.default;
-pub const omit_frame_pointer = false;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/h/2e953cd39f81feccea282a30c783a5be.txt 
new/vendor/h/2e953cd39f81feccea282a30c783a5be.txt
--- old/vendor/h/2e953cd39f81feccea282a30c783a5be.txt   2024-06-15 
14:19:04.200232390 +0200
+++ new/vendor/h/2e953cd39f81feccea282a30c783a5be.txt   1970-01-01 
01:00:00.000000000 +0100
@@ -1,12 +0,0 @@
-0
-18137 811882447 1718192735000000000 6a9cea20efc2d0799ffe6b75e740d10c 1 c.zig
-7616 119471923 1718192735000000000 a112ef71b351e8f79f6f43c583ede25c 1 
std/std.zig
-23040 119471921 1718192735000000000 da66963546b611ee7750a27396b7d1ea 1 
std/start.zig
-115223 119471893 1718192735000000000 864599658ca312005d8d3860dcc5d44e 1 
std/debug.zig
-2672 0 0 3d7ce1646169d5022922a5e22ff38e70 2 
b/3d7ce1646169d5022922a5e22ff38e70/builtin.zig
-33165 119471890 1718192735000000000 f94156764e93e22ac481419ae3dcd7e2 1 
std/builtin.zig
-87972 119471872 1718192735000000000 2058e9176f2f8c413153da85bdefea9a 1 
std/Target.zig
-129328 119471887 1718192735000000000 aa1c9ead6b093aa4fc744cbaf6cdb147 1 
std/Target/x86.zig
-73503 119471905 1718192735000000000 4f495cdd87469544c122e37211fe3d16 1 
std/math.zig
-41362 119471909 1718192735000000000 222d7cb14bd7ca087b75cbc16cba6dda 1 
std/meta.zig
-11091 34649019 1718192735000000000 3b4e837c9f6b3b4fbb5b3b95148e553c 1 
std/SemanticVersion.zig
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/h/7cc5b9253e4b01c350ce613636347833.txt 
new/vendor/h/7cc5b9253e4b01c350ce613636347833.txt
--- old/vendor/h/7cc5b9253e4b01c350ce613636347833.txt   1970-01-01 
01:00:00.000000000 +0100
+++ new/vendor/h/7cc5b9253e4b01c350ce613636347833.txt   1970-01-01 
01:00:00.000000000 +0100
@@ -0,0 +1,12 @@
+0
+18137 837846502 1717700911000000000 6a9cea20efc2d0799ffe6b75e740d10c 1 c.zig
+7616 633429421 1717700911000000000 a112ef71b351e8f79f6f43c583ede25c 1 
std/std.zig
+23040 633429399 1717700911000000000 da66963546b611ee7750a27396b7d1ea 1 
std/start.zig
+115223 625976747 1717700911000000000 864599658ca312005d8d3860dcc5d44e 1 
std/debug.zig
+2674 0 0 841eaa40d450fc25af8ff08adc38f478 2 
b/841eaa40d450fc25af8ff08adc38f478/builtin.zig
+33165 625485368 1717700911000000000 f94156764e93e22ac481419ae3dcd7e2 1 
std/builtin.zig
+87972 625484810 1717700911000000000 2058e9176f2f8c413153da85bdefea9a 1 
std/Target.zig
+129328 625485194 1717700911000000000 aa1c9ead6b093aa4fc744cbaf6cdb147 1 
std/Target/x86.zig
+73503 629087812 1717700911000000000 4f495cdd87469544c122e37211fe3d16 1 
std/math.zig
+41362 632147026 1717700911000000000 222d7cb14bd7ca087b75cbc16cba6dda 1 
std/meta.zig
+11091 624603014 1717700911000000000 3b4e837c9f6b3b4fbb5b3b95148e553c 1 
std/SemanticVersion.zig
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/h/89aacfe3d076230842b3c0b73dadc4ca.txt 
new/vendor/h/89aacfe3d076230842b3c0b73dadc4ca.txt
--- old/vendor/h/89aacfe3d076230842b3c0b73dadc4ca.txt   1970-01-01 
01:00:00.000000000 +0100
+++ new/vendor/h/89aacfe3d076230842b3c0b73dadc4ca.txt   1970-01-01 
01:00:00.000000000 +0100
@@ -0,0 +1,224 @@
+0
+9349 837870315 1717700911000000000 70342badd0cf1e60996578ca6be613c4 1 
compiler_rt.zig
+7616 633429421 1717700911000000000 a112ef71b351e8f79f6f43c583ede25c 1 
std/std.zig
+23040 633429399 1717700911000000000 da66963546b611ee7750a27396b7d1ea 1 
std/start.zig
+115223 625976747 1717700911000000000 864599658ca312005d8d3860dcc5d44e 1 
std/debug.zig
+2674 1080836557 1751261314119579170 841eaa40d450fc25af8ff08adc38f478 2 
b/841eaa40d450fc25af8ff08adc38f478/builtin.zig
+33165 625485368 1717700911000000000 f94156764e93e22ac481419ae3dcd7e2 1 
std/builtin.zig
+87972 625484810 1717700911000000000 2058e9176f2f8c413153da85bdefea9a 1 
std/Target.zig
+129328 625485194 1717700911000000000 aa1c9ead6b093aa4fc744cbaf6cdb147 1 
std/Target/x86.zig
+73503 629087812 1717700911000000000 4f495cdd87469544c122e37211fe3d16 1 
std/math.zig
+41362 632147026 1717700911000000000 222d7cb14bd7ca087b75cbc16cba6dda 1 
std/meta.zig
+7499 561211459 1717700911000000000 8efec5ae511ab5b1e2ac3e2199b29b39 1 
compiler_rt/count0bits.zig
+1382 562898490 1717700911000000000 9bf7f4e0b5be90636f2b988fb70fb0a0 1 
compiler_rt/parity.zig
+1909 562898495 1717700911000000000 006ba57488a8655f934222afbaedc151 1 
compiler_rt/popcount.zig
+3257 561008834 1717700911000000000 fd18998de40b4fde4b093a5985f0dc1e 1 
compiler_rt/bswap.zig
+1998 561008843 1717700911000000000 d0442dad208d243b195a31728b3bf71e 1 
compiler_rt/cmp.zig
+4788 563133283 1717700911000000000 fe26a3b0eae4ac913ee3bf6639a2b568 1 
compiler_rt/shift.zig
+1168 562516514 1717700911000000000 ec1eaa9a529d95afb23ee2ea56e73df8 1 
compiler_rt/negXi2.zig
+28957 562298911 1717700911000000000 97707d840564097f8667b26a2702f1f8 1 
compiler_rt/int.zig
+3044 562438369 1717700911000000000 48ff2542963e88bd35e16baf2f363b7b 1 
compiler_rt/mulXi3.zig
+1111 561503383 1717700911000000000 ee221ae2e0c466d904d9bc5a0925b544 1 
compiler_rt/divti3.zig
+768 563176206 1717700911000000000 44c972f0a14100fb0096fdfa0fd9883a 1 
compiler_rt/udivti3.zig
+1378 562438366 1717700911000000000 f7de85b188237ed647d8c892d03b7dcc 1 
compiler_rt/modti3.zig
+844 563176207 1717700911000000000 6442d4801a31750c72883b4b6444896a 1 
compiler_rt/umodti3.zig
+671 560895538 1717700911000000000 a6cfe83f9d8eb6e22dee6dc0ccee3367 1 
compiler_rt/absv.zig
+310 560901504 1717700911000000000 5782a879e21415ad7be733b6d11b3e3a 1 
compiler_rt/absvsi2.zig
+310 560895540 1717700911000000000 457fa9a35b2ee6e6b317ef7f8428b099 1 
compiler_rt/absvdi2.zig
+313 560901506 1717700911000000000 09d57c15f517793218bf453de2ac8820 1 
compiler_rt/absvti2.zig
+1300 562801083 1717700911000000000 654cc36a03b0ba19f6bb9c5a1fec448f 1 
compiler_rt/negv.zig
+1815 560923390 1717700911000000000 e7400d05600b45552ee79d8dc0d3b0f2 1 
compiler_rt/addo.zig
+1739 563160585 1717700911000000000 f326622af2527da919f09d09c32d9f52 1 
compiler_rt/subo.zig
+2640 562502218 1717700911000000000 e8594a271814179e865a9512c93a6dc1 1 
compiler_rt/mulo.zig
+6018 561827303 1717700911000000000 4d830ec9daeb023f210a86136bc54cb9 1 
compiler_rt/extendf.zig
+902 561828994 1717700911000000000 9f1b5e6d57e135eea21d93a36e29612c 1 
compiler_rt/extendhfsf2.zig
+372 561827313 1717700911000000000 8e17385da13869e0a789414aa96b0a43 1 
compiler_rt/extendhfdf2.zig
+375 561828995 1717700911000000000 bf98a04a5eb02fbeeb7450e8f444930c 1 
compiler_rt/extendhftf2.zig
+372 561828996 1717700911000000000 1c80ed5500dbcd2da8948104fe736813 1 
compiler_rt/extendhfxf2.zig
+627 561828997 1717700911000000000 25cc2bef6fcfab10286d55deae2e26f4 1 
compiler_rt/extendsfdf2.zig
+778 561829000 1717700911000000000 c92c5a434f8ae6422cf9ad43c8e495b8 1 
compiler_rt/extendsftf2.zig
+359 561829002 1717700911000000000 e8cb6e22d98a6d32517dfb53d8f53b05 1 
compiler_rt/extendsfxf2.zig
+778 561827301 1717700911000000000 c0968739393adbe8044461d0a9903a49 1 
compiler_rt/extenddftf2.zig
+363 561827302 1717700911000000000 5f76211ebbc2d70205da635cbb01ea8a 1 
compiler_rt/extenddfxf2.zig
+1985 561829006 1717700911000000000 dfcccfad6f92609dda17b1d961f27404 1 
compiler_rt/extendxftf2.zig
+8117 563171882 1717700911000000000 2a9f79bc0adb7f9aa31bc5d42ef68c78 1 
compiler_rt/truncf.zig
+863 563171885 1717700911000000000 4d74f324a3783bd300b4ec8ed51144f5 1 
compiler_rt/truncsfhf2.zig
+616 563160595 1717700911000000000 fc747eee8504402c7a2077217a38d879 1 
compiler_rt/truncdfhf2.zig
+583 563171880 1717700911000000000 652dca7a7287277f8b8b373e6d6700a6 1 
compiler_rt/truncdfsf2.zig
+355 563171895 1717700911000000000 ee7f11a0b8ef08c169c6beebb477ef2a 1 
compiler_rt/truncxfhf2.zig
+332 563171896 1717700911000000000 51c66c0454c616f2b95ad9bb8201da77 1 
compiler_rt/truncxfsf2.zig
+332 563171893 1717700911000000000 698fe03186b88ffc33ac8e6fb2e61f2a 1 
compiler_rt/truncxfdf2.zig
+358 563171887 1717700911000000000 c20a913b3d1ec7dee6451b2fa56c9ee6 1 
compiler_rt/trunctfhf2.zig
+728 563171888 1717700911000000000 eef87a7fc8faaccf84d569d7e0c3c356 1 
compiler_rt/trunctfsf2.zig
+728 563171886 1717700911000000000 6c4e540d3cec16ca0707e1c22016e1c4 1 
compiler_rt/trunctfdf2.zig
+2856 563171889 1717700911000000000 1688cc8a7180a486f767a90912a2d935 1 
compiler_rt/trunctfxf2.zig
+2050 562298912 1717700911000000000 125bdb55d7fc1557ca9e5607531f6018 1 
compiler_rt/int_from_float.zig
+340 561829024 1717700911000000000 be031a0de7229bedf13e9043bb2b4324 1 
compiler_rt/fixhfsi.zig
+340 561829023 1717700911000000000 400c72c648c530ec4e9225809fcc46fa 1 
compiler_rt/fixhfdi.zig
+711 561829025 1717700911000000000 1d4c47738ea6c05c46497261ec349a54 1 
compiler_rt/fixhfti.zig
+599 561829030 1717700911000000000 7d8b38c635f301bcc9d8330b1b941d99 1 
compiler_rt/fixsfsi.zig
+599 561829029 1717700911000000000 9d7e19833fa38d5525f57705c0a81753 1 
compiler_rt/fixsfdi.zig
+711 561829032 1717700911000000000 b8d99db143f96f59c679fc4562bada84 1 
compiler_rt/fixsfti.zig
+599 561829021 1717700911000000000 db29e6276fc63f8a92ede827687d45e8 1 
compiler_rt/fixdfsi.zig
+599 561829020 1717700911000000000 4f1a2eac73ba3be796e615e66fedc66a 1 
compiler_rt/fixdfdi.zig
+711 561829022 1717700911000000000 622028c7d02b0373f0d5640fe7bb33ff 1 
compiler_rt/fixdfti.zig
+733 561829036 1717700911000000000 30d45b11ae419cbabfd46d3708ce3e89 1 
compiler_rt/fixtfsi.zig
+733 561829035 1717700911000000000 43e249072072aecdb4953b9b10515d58 1 
compiler_rt/fixtfdi.zig
+864 561829038 1717700911000000000 134d5a1397d879f7059a2ec984394a69 1 
compiler_rt/fixtfti.zig
+340 561930413 1717700911000000000 2b9b472f4cd062984a5a1e42a705c890 1 
compiler_rt/fixxfsi.zig
+340 561930401 1717700911000000000 8f1da2fa15a67445da1d981372b3d948 1 
compiler_rt/fixxfdi.zig
+711 561930431 1717700911000000000 b6d0f7736cf540713c71252f396caae2 1 
compiler_rt/fixxfti.zig
+349 561829055 1717700911000000000 313221779d437ed9878efb3472bbaf1b 1 
compiler_rt/fixunshfsi.zig
+349 561829052 1717700911000000000 2dce9e5126f91ef00b27785b9abf6b56 1 
compiler_rt/fixunshfdi.zig
+729 561829506 1717700911000000000 cf0660591403acdc85b20ba2b48b5bd3 1 
compiler_rt/fixunshfti.zig
+611 561829513 1717700911000000000 702f9ddb35910a03013f6df4ad33a8e4 1 
compiler_rt/fixunssfsi.zig
+611 561829508 1717700911000000000 2f791e302ef0d76bd21810dce693a58c 1 
compiler_rt/fixunssfdi.zig
+729 561829515 1717700911000000000 2c6c11c8406de0a49a2a39906cf1d606 1 
compiler_rt/fixunssfti.zig
+611 561829044 1717700911000000000 3c1ebb8cb8dddaa23c75da6453296ef0 1 
compiler_rt/fixunsdfsi.zig
+611 561829039 1717700911000000000 18179d55ed90a2879a0baf04cef0212f 1 
compiler_rt/fixunsdfdi.zig
+729 561829051 1717700911000000000 d9659b4f55c0393cd9603a41d355f4f0 1 
compiler_rt/fixunsdfti.zig
+751 561829517 1717700911000000000 cf81f9217965ee1f7103a966c874b187 1 
compiler_rt/fixunstfsi.zig
+751 561829516 1717700911000000000 b7cc74e7ba3dd8c40b6fabe5c888d02a 1 
compiler_rt/fixunstfdi.zig
+888 561829518 1717700911000000000 40c6000ae59d9e915e474eb2cfee63b0 1 
compiler_rt/fixunstfti.zig
+349 561829520 1717700911000000000 6d86922bd6542770336af0f790580640 1 
compiler_rt/fixunsxfsi.zig
+349 561829519 1717700911000000000 73d266f4573322d23ec7f2417e428e78 1 
compiler_rt/fixunsxfdi.zig
+729 561829521 1717700911000000000 f64280ad32f89867914fc54da0f87ec1 1 
compiler_rt/fixunsxfti.zig
+2373 561937344 1717700911000000000 4946d3295450f3dd2c0dbcd09f173dc7 1 
compiler_rt/float_from_int.zig
+346 561937390 1717700911000000000 a4bdaed69b1d883ce7c7b4ceb3d24556 1 
compiler_rt/floatsihf.zig
+602 561937391 1717700911000000000 daa18d64d52ba08e78a579931963bdc0 1 
compiler_rt/floatsisf.zig
+602 561937353 1717700911000000000 e85d7c73469b14a8f8cd16d619e1c05e 1 
compiler_rt/floatsidf.zig
+745 561952732 1717700911000000000 a092e2e8e920981069df4aa8d8521096 1 
compiler_rt/floatsitf.zig
+346 562284930 1717700911000000000 63bb64aa7252dca678dcb4fbc20e0a4d 1 
compiler_rt/floatsixf.zig
+346 561937347 1717700911000000000 b858992a823c2e3ce037d496c7f6ba8e 1 
compiler_rt/floatdihf.zig
+602 561937348 1717700911000000000 3f01ac08de69e49e2140b24facd39355 1 
compiler_rt/floatdisf.zig
+602 561937346 1717700911000000000 8c66aefebe2a822efb7e39ea51495115 1 
compiler_rt/floatdidf.zig
+745 561937349 1717700911000000000 890c06f37bab76946df84fd449ddb483 1 
compiler_rt/floatditf.zig
+346 561937350 1717700911000000000 3432bfe720b173ba2901efc5032a161e 1 
compiler_rt/floatdixf.zig
+710 562298880 1717700911000000000 34f3a39ff8b13a81f23ffbb5f328e7c8 1 
compiler_rt/floattihf.zig
+710 562298881 1717700911000000000 bc0cb9962222449057f099ab1913a2f7 1 
compiler_rt/floattisf.zig
+710 562295328 1717700911000000000 9cb958cff98d203ca28fb00ef884a004 1 
compiler_rt/floattidf.zig
+869 562298882 1717700911000000000 9c931b6e9f396bee9488952906aac111 1 
compiler_rt/floattitf.zig
+710 562298883 1717700911000000000 97357f8c033741e0d200a12e44a49142 1 
compiler_rt/floattixf.zig
+352 562298885 1717700911000000000 407f16aeae87017017b264f5454702ba 1 
compiler_rt/floatundihf.zig
+611 562298886 1717700911000000000 c3aaa939e803ae6867478b9dcd8383c4 1 
compiler_rt/floatundisf.zig
+611 562298884 1717700911000000000 5503e8efbd49d82182f377da291dfe09 1 
compiler_rt/floatundidf.zig
+758 562298887 1717700911000000000 9ad16802e2cb23455b973261d7eb0ab8 1 
compiler_rt/floatunditf.zig
+352 562298888 1717700911000000000 dd957fe9f38b9196edd004b7ded0eb16 1 
compiler_rt/floatundixf.zig
+356 562298890 1717700911000000000 f887a3bb7351669adf6df773cf20310b 1 
compiler_rt/floatunsihf.zig
+611 562298891 1717700911000000000 c7cff1f5bd6f417d20e1f35030b89a13 1 
compiler_rt/floatunsisf.zig
+611 562298889 1717700911000000000 0e50a6363e983f32ef91f7afaf6c3aaa 1 
compiler_rt/floatunsidf.zig
+758 562298892 1717700911000000000 93d3696394b128af2c948318b7b9a897 1 
compiler_rt/floatunsitf.zig
+352 562298893 1717700911000000000 8ee27b3606e439fec00130642bab5885 1 
compiler_rt/floatunsixf.zig
+722 562298895 1717700911000000000 cc66554b07450dc9d36ea9024177ed72 1 
compiler_rt/floatuntihf.zig
+722 562298896 1717700911000000000 8daafbdcfd438ba91951e342ad45d1ab 1 
compiler_rt/floatuntisf.zig
+722 562298894 1717700911000000000 beaaddc45f37be50978f24cadb33c115 1 
compiler_rt/floatuntidf.zig
+885 562298897 1717700911000000000 52aa34b1a0adcaf4c7dc721dd6235571 1 
compiler_rt/floatuntitf.zig
+722 562298898 1717700911000000000 f9bc782bfca29fd0c20079764826b6ec 1 
compiler_rt/floatuntixf.zig
+4574 561211456 1717700911000000000 573caa4fded4689fe7ea1290187616ec 1 
compiler_rt/comparef.zig
+2262 561008846 1717700911000000000 725c3f19c2dede2026c5c04e10a6ae54 1 
compiler_rt/cmphf2.zig
+3108 561101664 1717700911000000000 65c7f66578fec5d84406504bd646427c 1 
compiler_rt/cmpsf2.zig
+3108 561008844 1717700911000000000 044cbe6c471b9807e4c1f9ad084f0443 1 
compiler_rt/cmpdf2.zig
+4723 561101666 1717700911000000000 a5902304448425f4f2ebed534cd5d565 1 
compiler_rt/cmptf2.zig
+2243 561101668 1717700911000000000 c39f88bb981e8d954e55617db6928265 1 
compiler_rt/cmpxf2.zig
+340 563176209 1717700911000000000 d8a9a1b163c10cc2986a32a27f153676 1 
compiler_rt/unordhf2.zig
+617 563176210 1717700911000000000 a0d893a29040c906eb80167163e90e96 1 
compiler_rt/unordsf2.zig
+617 563176208 1717700911000000000 e7b230b13f117d787bd80a053e51eaf4 1 
compiler_rt/unorddf2.zig
+340 563265536 1717700911000000000 96e721f6b7181c3b2415f9e820ff8092 1 
compiler_rt/unordxf2.zig
+654 563176211 1717700911000000000 c036ab83724626a7f09aa9a9baca297b 1 
compiler_rt/unordtf2.zig
+958 562298907 1717700911000000000 187e44bd9e5dee1e90c1c7433dc0324e 1 
compiler_rt/gehf2.zig
+1533 562298908 1717700911000000000 4cad1a60f4a98c396df03cc164d24389 1 
compiler_rt/gesf2.zig
+1533 562298906 1717700911000000000 22d952d805a53cbd2b6e024ae8aae8db 1 
compiler_rt/gedf2.zig
+529 562298910 1717700911000000000 73d2a8c54dbbed3c4b821c8e1d1a2961 1 
compiler_rt/gexf2.zig
+1371 562298909 1717700911000000000 f549641a2e6841a051351497c8724772 1 
compiler_rt/getf2.zig
+6348 560923374 1717700911000000000 e258417c96592f44e3504eb856662b20 1 
compiler_rt/addf3.zig
+318 560923389 1717700911000000000 a29829052a2bc214b4a0b9d6e6b35f1b 1 
compiler_rt/addhf3.zig
+577 560949326 1717700911000000000 e7d1cf0ad12b53cc523cd9fdea9f441b 1 
compiler_rt/addsf3.zig
+577 560923373 1717700911000000000 0c0a725570daf4128955753cbe2ff410 1 
compiler_rt/adddf3.zig
+722 560949329 1717700911000000000 b1699d4a2f6f90d92c75b81de5c02336 1 
compiler_rt/addtf3.zig
+322 560949330 1717700911000000000 a6e082cc633979b8e6ca8033e0c6e802 1 
compiler_rt/addxf3.zig
+405 563160584 1717700911000000000 f8da3a92a916a57c6adc3c63031d75a2 1 
compiler_rt/subhf3.zig
+718 563160589 1717700911000000000 d6efedee4d517ff12568448b3f355a7e 1 
compiler_rt/subsf3.zig
+718 563160583 1717700911000000000 bb35a6d4b12493ab3e23b99bf4ef3f53 1 
compiler_rt/subdf3.zig
+881 563160590 1717700911000000000 39039dc9ebd83f0b62f199aa5b690134 1 
compiler_rt/subtf3.zig
+403 563160591 1717700911000000000 7c9802891cfb7ebfa73dda1fd596609a 1 
compiler_rt/subxf3.zig
+8392 562502214 1717700911000000000 1608ce3999e8f847a5576c514ed7447c 1 
compiler_rt/mulf3.zig
+322 562502217 1717700911000000000 307c740c36bf0c917dfacb8e4eae0fd7 1 
compiler_rt/mulhf3.zig
+581 562502225 1717700911000000000 33c29836f363210a5d00d78246579ada 1 
compiler_rt/mulsf3.zig
+581 562502213 1717700911000000000 0757aa506754a6d1471fb627872435ce 1 
compiler_rt/muldf3.zig
+734 562502231 1717700911000000000 6fe35ee75aba8e80ff90828efbfa6dd9 1 
compiler_rt/multf3.zig
+322 562502252 1717700911000000000 a356677c220db8bbdc471757959326a7 1 
compiler_rt/mulxf3.zig
+343 561211506 1717700911000000000 60df618e5d5eb5d44d44e7ed46599978 1 
compiler_rt/divhf3.zig
+8557 561211508 1717700911000000000 fe19e0d005fac1e36dbeb7fce065b33c 1 
compiler_rt/divsf3.zig
+9382 561211466 1717700911000000000 9208d183ac5f3604170b1d77ac62dc6e 1 
compiler_rt/divdf3.zig
+8668 561827283 1717700911000000000 5f89f3c281fbc00081dd22319272ae9a 1 
compiler_rt/divxf3.zig
+9922 561458748 1717700911000000000 0f7a0c7a6607e46d29be80ff196a15a7 1 
compiler_rt/divtf3.zig
+264 562801057 1717700911000000000 22eda58d8bd7cfc0e8ac3604b8a2f37b 1 
compiler_rt/neghf2.zig
+513 562801058 1717700911000000000 2f9469eca214c41dd25a46b8060bc747 1 
compiler_rt/negsf2.zig
+513 562801054 1717700911000000000 b645aea6476adae66ecb27dc2288b731 1 
compiler_rt/negdf2.zig
+407 562801079 1717700911000000000 69434097b4be670586f09834a81a2bce 1 
compiler_rt/negtf2.zig
+264 562898487 1717700911000000000 0e10c4b97df3ef0c33b3c308a8634d3a 1 
compiler_rt/negxf2.zig
+2066 563105301 1717700911000000000 b08bbce34515e9b53db54f04b24659f5 1 
compiler_rt/powiXf2.zig
+2275 562502208 1717700911000000000 31c049fe940585ddd225b0c4f49de0ab 1 
compiler_rt/mulc3.zig
+424 562502216 1717700911000000000 66584767db8712e6951471183e505955 1 
compiler_rt/mulhc3.zig
+424 562502222 1717700911000000000 15543d7db4b436eb625991fe4cbca4d4 1 
compiler_rt/mulsc3.zig
+424 562502211 1717700911000000000 41c0018a4e87ba77ca4446fe06b7397a 1 
compiler_rt/muldc3.zig
+424 562502232 1717700911000000000 0878ce814f8b16d53e53767c3ef231eb 1 
compiler_rt/mulxc3.zig
+579 562502230 1717700911000000000 f75215ec1fd7b10c7fc63a218558fe91 1 
compiler_rt/multc3.zig
+2280 561211463 1717700911000000000 9e6aaeda713b6cd43eca1180606dc9f8 1 
compiler_rt/divc3.zig
+433 561211468 1717700911000000000 f66437ee31d698014826d35fdba32db5 1 
compiler_rt/divhc3.zig
+433 561211507 1717700911000000000 4d10c85a95c742a60ef5dddc3c68cb0f 1 
compiler_rt/divsc3.zig
+433 561211465 1717700911000000000 f84707a5db49bc436263f8a0d392ac9f 1 
compiler_rt/divdc3.zig
+433 561827282 1717700911000000000 d8280a0571d3a3606752ce0c57e9c537 1 
compiler_rt/divxc3.zig
+588 561458747 1717700911000000000 9d65e2244670e5d60321ab05b1b12a54 1 
compiler_rt/divtc3.zig
+4996 561008838 1717700911000000000 86aad4c0fb0ccb41c62203109ec00779 1 
compiler_rt/ceil.zig
+5616 561211458 1717700911000000000 8fd92fd4fbfaa6768b91244ee3a7705b 1 
compiler_rt/cos.zig
+6794 561827297 1717700911000000000 dfa617c7400fb67576c3362e4aa6393c 1 
compiler_rt/exp.zig
+17704 561827300 1717700911000000000 cac08730171b34fbcef65ca6b090d318 1 
compiler_rt/exp2.zig
+1906 561829009 1717700911000000000 1a0ac008b5a43a7006f5b157a6c59b2c 1 
compiler_rt/fabs.zig
+6079 562298899 1717700911000000000 5c621a960512baa17982b449f4a04aa8 1 
compiler_rt/floor.zig
+11568 562298900 1717700911000000000 dcf38c2f88b682595b68905f0c21e1a4 1 
compiler_rt/fma.zig
+2473 562298901 1717700911000000000 3ea7a92d17f0c8176c52bb6bc1567d7d 1 
compiler_rt/fmax.zig
+2473 562298902 1717700911000000000 7127c9760c0881dd5b255d2593a67d9e 1 
compiler_rt/fmin.zig
+12211 562298903 1717700911000000000 a7e534b56116b73ebd6fcb15fcc6c9a0 1 
compiler_rt/fmod.zig
+6441 562298914 1717700911000000000 a9e4318e36230a053e07a9df63331756 1 
compiler_rt/log.zig
+7437 562298915 1717700911000000000 3acc8afc0b134e8423b0349e26a39f3d 1 
compiler_rt/log10.zig
+6734 562298916 1717700911000000000 025cc51e4a46323d0f948737aab29cc3 1 
compiler_rt/log2.zig
+5198 563133280 1717700911000000000 ee95b20aee7a41535cf57e3b07b4c97f 1 
compiler_rt/round.zig
+6436 563133444 1717700911000000000 305ff4060037f1f8384936a92e1baedd 1 
compiler_rt/sin.zig
+8398 563133448 1717700911000000000 9d65c74a0d44effad2eee7b435bf5469 1 
compiler_rt/sincos.zig
+8197 563133499 1717700911000000000 e8a23eecf831c132498d27b4931f1a11 1 
compiler_rt/sqrt.zig
+5828 563160592 1717700911000000000 af6243809b71538076b971775431f065 1 
compiler_rt/tan.zig
+4400 563160594 1717700911000000000 1b8d03373606393e95f2171de33a5b2f 1 
compiler_rt/trunc.zig
+5093 563176196 1717700911000000000 1b9319fe34a7bf346d783130efe60b81 1 
compiler_rt/udivmodei4.zig
+884 563176204 1717700911000000000 d5e53d72da25abcfc5d9f447a3cd2496 1 
compiler_rt/udivmodti4.zig
+2995 562898488 1717700911000000000 ef25ce44fe553f7eb335989cc7d33543 1 
compiler_rt/os_version_check.zig
+12539 561827285 1717700911000000000 3df8e8cf95b66fe93aa1689286de5667 1 
compiler_rt/emutls.zig
+10269 560956953 1717700911000000000 dfa310795e80b41b24e8f7200f069856 1 
compiler_rt/arm.zig
+2506 560956955 1717700911000000000 e0ba44fe9d7b49d71e0c5390c8408115 1 
compiler_rt/aulldiv.zig
+2561 561008832 1717700911000000000 97ccf47a3098b63ad266303fb76b7c9f 1 
compiler_rt/aullrem.zig
+6520 561008839 1717700911000000000 1337397824c2f737ccb85d749172134b 1 
compiler_rt/clear_cache.zig
+26382 560956954 1717700911000000000 9f9af142d0e4f51c7631224153bc5b79 1 
compiler_rt/atomics.zig
+8864 563160582 1717700911000000000 70ff3a1f9e85bb7358a760436f1c5bfa 1 
compiler_rt/stack_probe.zig
+663 562438351 1717700911000000000 6152528ca6ed34be93821052a06f36c3 1 
compiler_rt/memcpy.zig
+874 562438365 1717700911000000000 d68037e80950188b94fb25a83963d8a9 1 
compiler_rt/memset.zig
+641 562438362 1717700911000000000 7cc34bc84bae831533239c1442399184 1 
compiler_rt/memmove.zig
+930 562438350 1717700911000000000 f40979da69ce036848514cd8a3356a9a 1 
compiler_rt/memcmp.zig
+873 561008833 1717700911000000000 5842a7cab226662fb923a2b24c4d8efb 1 
compiler_rt/bcmp.zig
+4514 563133577 1717700911000000000 4b14b12b23a363fd6a54ba3d3bfbab5d 1 
compiler_rt/ssp.zig
+10020 561101669 1717700911000000000 be2931b05cb4fe4b65d7adde233b984c 1 
compiler_rt/common.zig
+11091 624603014 1717700911000000000 3b4e837c9f6b3b4fbb5b3b95148e553c 1 
std/SemanticVersion.zig
+4262 563176192 1717700911000000000 b5aac82faa0f2cbd1cbc422f12f04db8 1 
compiler_rt/udivmod.zig
+7160 629683982 1717700911000000000 225a8c307f8f0832b31caae6a29cee36 1 
std/math/float.zig
+1435 629961263 1717700911000000000 48685c58555074b2d42fa7ed74dfba29 1 
std/math/isnan.zig
+1775 629961262 1717700911000000000 f3ba4db18fa456fb43b6bf6121ea0552 1 
std/math/isinf.zig
+1136 629664873 1717700911000000000 4a4733820846799d6b3e891e41c334ec 1 
std/math/copysign.zig
+5519 629961260 1717700911000000000 0facec314958f25e991dfdd64a09fc12 1 
std/math/ilogb.zig
+503 631720004 1717700911000000000 66d1263715127908b281862dba5dc24b 1 
std/math/scalbn.zig
+6839 630224736 1717700911000000000 a667fbc268d441df776f89454b524402 1 
std/math/ldexp.zig
+1083 629961261 1717700911000000000 366246fae7209b6f024bfb6827a7a361 1 
std/math/isfinite.zig
+176912 632138661 1717700911000000000 223e2fd0f89a74fd7d5132dbe48f1c2c 1 
std/mem.zig
+11744 563160593 1717700911000000000 ad2b34903e1ef28c1774d5d97303bd50 1 
compiler_rt/trig.zig
+2247 563133279 1717700911000000000 2337e183931c970621500018ffe636df 1 
compiler_rt/rem_pio2f.zig
+6045 563105338 1717700911000000000 18b634df64d66eb7c240db46b32eea60 1 
compiler_rt/rem_pio2.zig
+7877 629685186 1717700911000000000 99ff8c90d64e335b8787d201259a076c 1 
std/math/frexp.zig
+20535 563133249 1717700911000000000 b2a257008fb83056943e645889c5a503 1 
compiler_rt/rem_pio2_large.zig
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/h/d424680dfe8f7e356ccde092d6d1da89.txt 
new/vendor/h/d424680dfe8f7e356ccde092d6d1da89.txt
--- old/vendor/h/d424680dfe8f7e356ccde092d6d1da89.txt   2024-06-15 
14:19:17.030229740 +0200
+++ new/vendor/h/d424680dfe8f7e356ccde092d6d1da89.txt   1970-01-01 
01:00:00.000000000 +0100
@@ -1,224 +0,0 @@
-0
-9349 811882462 1718192735000000000 70342badd0cf1e60996578ca6be613c4 1 
compiler_rt.zig
-7616 119471923 1718192735000000000 a112ef71b351e8f79f6f43c583ede25c 1 
std/std.zig
-23040 119471921 1718192735000000000 da66963546b611ee7750a27396b7d1ea 1 
std/start.zig
-115223 119471893 1718192735000000000 864599658ca312005d8d3860dcc5d44e 1 
std/debug.zig
-2670 0 0 cacd014620ab483f379e2739ee75b8bc 2 
b/cacd014620ab483f379e2739ee75b8bc/builtin.zig
-33165 119471890 1718192735000000000 f94156764e93e22ac481419ae3dcd7e2 1 
std/builtin.zig
-87972 119471872 1718192735000000000 2058e9176f2f8c413153da85bdefea9a 1 
std/Target.zig
-129328 119471887 1718192735000000000 aa1c9ead6b093aa4fc744cbaf6cdb147 1 
std/Target/x86.zig
-73503 119471905 1718192735000000000 4f495cdd87469544c122e37211fe3d16 1 
std/math.zig
-41362 119471909 1718192735000000000 222d7cb14bd7ca087b75cbc16cba6dda 1 
std/meta.zig
-7499 537920242 1718192735000000000 8efec5ae511ab5b1e2ac3e2199b29b39 1 
compiler_rt/count0bits.zig
-1382 537790868 1718192735000000000 9bf7f4e0b5be90636f2b988fb70fb0a0 1 
compiler_rt/parity.zig
-1909 537790872 1718192735000000000 006ba57488a8655f934222afbaedc151 1 
compiler_rt/popcount.zig
-3257 537920219 1718192735000000000 fd18998de40b4fde4b093a5985f0dc1e 1 
compiler_rt/bswap.zig
-1998 537920228 1718192735000000000 d0442dad208d243b195a31728b3bf71e 1 
compiler_rt/cmp.zig
-4788 537790882 1718192735000000000 fe26a3b0eae4ac913ee3bf6639a2b568 1 
compiler_rt/shift.zig
-1168 537790854 1718192735000000000 ec1eaa9a529d95afb23ee2ea56e73df8 1 
compiler_rt/negXi2.zig
-28957 537849894 1718192735000000000 97707d840564097f8667b26a2702f1f8 1 
compiler_rt/int.zig
-3044 537849906 1718192735000000000 48ff2542963e88bd35e16baf2f363b7b 1 
compiler_rt/mulXi3.zig
-1111 537901827 1718192735000000000 ee221ae2e0c466d904d9bc5a0925b544 1 
compiler_rt/divti3.zig
-768 537788490 1718192735000000000 44c972f0a14100fb0096fdfa0fd9883a 1 
compiler_rt/udivti3.zig
-1378 537849904 1718192735000000000 f7de85b188237ed647d8c892d03b7dcc 1 
compiler_rt/modti3.zig
-844 537788491 1718192735000000000 6442d4801a31750c72883b4b6444896a 1 
compiler_rt/umodti3.zig
-671 537920196 1718192735000000000 a6cfe83f9d8eb6e22dee6dc0ccee3367 1 
compiler_rt/absv.zig
-310 537920199 1718192735000000000 5782a879e21415ad7be733b6d11b3e3a 1 
compiler_rt/absvsi2.zig
-310 537920197 1718192735000000000 457fa9a35b2ee6e6b317ef7f8428b099 1 
compiler_rt/absvdi2.zig
-313 537920201 1718192735000000000 09d57c15f517793218bf453de2ac8820 1 
compiler_rt/absvti2.zig
-1300 537790862 1718192735000000000 654cc36a03b0ba19f6bb9c5a1fec448f 1 
compiler_rt/negv.zig
-1815 537920207 1718192735000000000 e7400d05600b45552ee79d8dc0d3b0f2 1 
compiler_rt/addo.zig
-1739 537790891 1718192735000000000 f326622af2527da919f09d09c32d9f52 1 
compiler_rt/subo.zig
-2640 537849916 1718192735000000000 e8594a271814179e865a9512c93a6dc1 1 
compiler_rt/mulo.zig
-6018 537901837 1718192735000000000 4d830ec9daeb023f210a86136bc54cb9 1 
compiler_rt/extendf.zig
-902 537901840 1718192735000000000 9f1b5e6d57e135eea21d93a36e29612c 1 
compiler_rt/extendhfsf2.zig
-372 537901839 1718192735000000000 8e17385da13869e0a789414aa96b0a43 1 
compiler_rt/extendhfdf2.zig
-375 537901841 1718192735000000000 bf98a04a5eb02fbeeb7450e8f444930c 1 
compiler_rt/extendhftf2.zig
-372 537901842 1718192735000000000 1c80ed5500dbcd2da8948104fe736813 1 
compiler_rt/extendhfxf2.zig
-627 537901843 1718192735000000000 25cc2bef6fcfab10286d55deae2e26f4 1 
compiler_rt/extendsfdf2.zig
-778 537901844 1718192735000000000 c92c5a434f8ae6422cf9ad43c8e495b8 1 
compiler_rt/extendsftf2.zig
-359 537901845 1718192735000000000 e8cb6e22d98a6d32517dfb53d8f53b05 1 
compiler_rt/extendsfxf2.zig
-778 537901835 1718192735000000000 c0968739393adbe8044461d0a9903a49 1 
compiler_rt/extenddftf2.zig
-363 537901836 1718192735000000000 5f76211ebbc2d70205da635cbb01ea8a 1 
compiler_rt/extenddfxf2.zig
-1985 537901846 1718192735000000000 dfcccfad6f92609dda17b1d961f27404 1 
compiler_rt/extendxftf2.zig
-8117 537790903 1718192735000000000 2a9f79bc0adb7f9aa31bc5d42ef68c78 1 
compiler_rt/truncf.zig
-863 537790905 1718192735000000000 4d74f324a3783bd300b4ec8ed51144f5 1 
compiler_rt/truncsfhf2.zig
-616 537790901 1718192735000000000 fc747eee8504402c7a2077217a38d879 1 
compiler_rt/truncdfhf2.zig
-583 537790902 1718192735000000000 652dca7a7287277f8b8b373e6d6700a6 1 
compiler_rt/truncdfsf2.zig
-355 537790911 1718192735000000000 ee7f11a0b8ef08c169c6beebb477ef2a 1 
compiler_rt/truncxfhf2.zig
-332 537788480 1718192735000000000 51c66c0454c616f2b95ad9bb8201da77 1 
compiler_rt/truncxfsf2.zig
-332 537790910 1718192735000000000 698fe03186b88ffc33ac8e6fb2e61f2a 1 
compiler_rt/truncxfdf2.zig
-358 537790907 1718192735000000000 c20a913b3d1ec7dee6451b2fa56c9ee6 1 
compiler_rt/trunctfhf2.zig
-728 537790908 1718192735000000000 eef87a7fc8faaccf84d569d7e0c3c356 1 
compiler_rt/trunctfsf2.zig
-728 537790906 1718192735000000000 6c4e540d3cec16ca0707e1c22016e1c4 1 
compiler_rt/trunctfdf2.zig
-2856 537790909 1718192735000000000 1688cc8a7180a486f767a90912a2d935 1 
compiler_rt/trunctfxf2.zig
-2050 537849895 1718192735000000000 125bdb55d7fc1557ca9e5607531f6018 1 
compiler_rt/int_from_float.zig
-340 537901855 1718192735000000000 be031a0de7229bedf13e9043bb2b4324 1 
compiler_rt/fixhfsi.zig
-340 537901854 1718192735000000000 400c72c648c530ec4e9225809fcc46fa 1 
compiler_rt/fixhfdi.zig
-711 537901856 1718192735000000000 1d4c47738ea6c05c46497261ec349a54 1 
compiler_rt/fixhfti.zig
-599 537901859 1718192735000000000 7d8b38c635f301bcc9d8330b1b941d99 1 
compiler_rt/fixsfsi.zig
-599 537901858 1718192735000000000 9d7e19833fa38d5525f57705c0a81753 1 
compiler_rt/fixsfdi.zig
-711 537901860 1718192735000000000 b8d99db143f96f59c679fc4562bada84 1 
compiler_rt/fixsfti.zig
-599 537901852 1718192735000000000 db29e6276fc63f8a92ede827687d45e8 1 
compiler_rt/fixdfsi.zig
-599 537901851 1718192735000000000 4f1a2eac73ba3be796e615e66fedc66a 1 
compiler_rt/fixdfdi.zig
-711 537901853 1718192735000000000 622028c7d02b0373f0d5640fe7bb33ff 1 
compiler_rt/fixdfti.zig
-733 537901862 1718192735000000000 30d45b11ae419cbabfd46d3708ce3e89 1 
compiler_rt/fixtfsi.zig
-733 537901861 1718192735000000000 43e249072072aecdb4953b9b10515d58 1 
compiler_rt/fixtfdi.zig
-864 537901863 1718192735000000000 134d5a1397d879f7059a2ec984394a69 1 
compiler_rt/fixtfti.zig
-340 537901880 1718192735000000000 2b9b472f4cd062984a5a1e42a705c890 1 
compiler_rt/fixxfsi.zig
-340 537901879 1718192735000000000 8f1da2fa15a67445da1d981372b3d948 1 
compiler_rt/fixxfdi.zig
-711 537901881 1718192735000000000 b6d0f7736cf540713c71252f396caae2 1 
compiler_rt/fixxfti.zig
-349 537901868 1718192735000000000 313221779d437ed9878efb3472bbaf1b 1 
compiler_rt/fixunshfsi.zig
-349 537901867 1718192735000000000 2dce9e5126f91ef00b27785b9abf6b56 1 
compiler_rt/fixunshfdi.zig
-729 537901869 1718192735000000000 cf0660591403acdc85b20ba2b48b5bd3 1 
compiler_rt/fixunshfti.zig
-611 537901871 1718192735000000000 702f9ddb35910a03013f6df4ad33a8e4 1 
compiler_rt/fixunssfsi.zig
-611 537901870 1718192735000000000 2f791e302ef0d76bd21810dce693a58c 1 
compiler_rt/fixunssfdi.zig
-729 537901872 1718192735000000000 2c6c11c8406de0a49a2a39906cf1d606 1 
compiler_rt/fixunssfti.zig
-611 537901865 1718192735000000000 3c1ebb8cb8dddaa23c75da6453296ef0 1 
compiler_rt/fixunsdfsi.zig
-611 537901864 1718192735000000000 18179d55ed90a2879a0baf04cef0212f 1 
compiler_rt/fixunsdfdi.zig
-729 537901866 1718192735000000000 d9659b4f55c0393cd9603a41d355f4f0 1 
compiler_rt/fixunsdfti.zig
-751 537901874 1718192735000000000 cf81f9217965ee1f7103a966c874b187 1 
compiler_rt/fixunstfsi.zig
-751 537901873 1718192735000000000 b7cc74e7ba3dd8c40b6fabe5c888d02a 1 
compiler_rt/fixunstfdi.zig
-888 537901875 1718192735000000000 40c6000ae59d9e915e474eb2cfee63b0 1 
compiler_rt/fixunstfti.zig
-349 537901877 1718192735000000000 6d86922bd6542770336af0f790580640 1 
compiler_rt/fixunsxfsi.zig
-349 537901876 1718192735000000000 73d266f4573322d23ec7f2417e428e78 1 
compiler_rt/fixunsxfdi.zig
-729 537901878 1718192735000000000 f64280ad32f89867914fc54da0f87ec1 1 
compiler_rt/fixunsxfti.zig
-2373 537901882 1718192735000000000 4946d3295450f3dd2c0dbcd09f173dc7 1 
compiler_rt/float_from_int.zig
-346 537849858 1718192735000000000 a4bdaed69b1d883ce7c7b4ceb3d24556 1 
compiler_rt/floatsihf.zig
-602 537849859 1718192735000000000 daa18d64d52ba08e78a579931963bdc0 1 
compiler_rt/floatsisf.zig
-602 537849857 1718192735000000000 e85d7c73469b14a8f8cd16d619e1c05e 1 
compiler_rt/floatsidf.zig
-745 537849860 1718192735000000000 a092e2e8e920981069df4aa8d8521096 1 
compiler_rt/floatsitf.zig
-346 537849861 1718192735000000000 63bb64aa7252dca678dcb4fbc20e0a4d 1 
compiler_rt/floatsixf.zig
-346 537901885 1718192735000000000 b858992a823c2e3ce037d496c7f6ba8e 1 
compiler_rt/floatdihf.zig
-602 537901886 1718192735000000000 3f01ac08de69e49e2140b24facd39355 1 
compiler_rt/floatdisf.zig
-602 537901884 1718192735000000000 8c66aefebe2a822efb7e39ea51495115 1 
compiler_rt/floatdidf.zig
-745 537901887 1718192735000000000 890c06f37bab76946df84fd449ddb483 1 
compiler_rt/floatditf.zig
-346 537849856 1718192735000000000 3432bfe720b173ba2901efc5032a161e 1 
compiler_rt/floatdixf.zig
-710 537849863 1718192735000000000 34f3a39ff8b13a81f23ffbb5f328e7c8 1 
compiler_rt/floattihf.zig
-710 537849864 1718192735000000000 bc0cb9962222449057f099ab1913a2f7 1 
compiler_rt/floattisf.zig
-710 537849862 1718192735000000000 9cb958cff98d203ca28fb00ef884a004 1 
compiler_rt/floattidf.zig
-869 537849865 1718192735000000000 9c931b6e9f396bee9488952906aac111 1 
compiler_rt/floattitf.zig
-710 537849866 1718192735000000000 97357f8c033741e0d200a12e44a49142 1 
compiler_rt/floattixf.zig
-352 537849868 1718192735000000000 407f16aeae87017017b264f5454702ba 1 
compiler_rt/floatundihf.zig
-611 537849869 1718192735000000000 c3aaa939e803ae6867478b9dcd8383c4 1 
compiler_rt/floatundisf.zig
-611 537849867 1718192735000000000 5503e8efbd49d82182f377da291dfe09 1 
compiler_rt/floatundidf.zig
-758 537849870 1718192735000000000 9ad16802e2cb23455b973261d7eb0ab8 1 
compiler_rt/floatunditf.zig
-352 537849871 1718192735000000000 dd957fe9f38b9196edd004b7ded0eb16 1 
compiler_rt/floatundixf.zig
-356 537849873 1718192735000000000 f887a3bb7351669adf6df773cf20310b 1 
compiler_rt/floatunsihf.zig
-611 537849874 1718192735000000000 c7cff1f5bd6f417d20e1f35030b89a13 1 
compiler_rt/floatunsisf.zig
-611 537849872 1718192735000000000 0e50a6363e983f32ef91f7afaf6c3aaa 1 
compiler_rt/floatunsidf.zig
-758 537849875 1718192735000000000 93d3696394b128af2c948318b7b9a897 1 
compiler_rt/floatunsitf.zig
-352 537849876 1718192735000000000 8ee27b3606e439fec00130642bab5885 1 
compiler_rt/floatunsixf.zig
-722 537849878 1718192735000000000 cc66554b07450dc9d36ea9024177ed72 1 
compiler_rt/floatuntihf.zig
-722 537849879 1718192735000000000 8daafbdcfd438ba91951e342ad45d1ab 1 
compiler_rt/floatuntisf.zig
-722 537849877 1718192735000000000 beaaddc45f37be50978f24cadb33c115 1 
compiler_rt/floatuntidf.zig
-885 537849880 1718192735000000000 52aa34b1a0adcaf4c7dc721dd6235571 1 
compiler_rt/floatuntitf.zig
-722 537849881 1718192735000000000 f9bc782bfca29fd0c20079764826b6ec 1 
compiler_rt/floatuntixf.zig
-4574 537920239 1718192735000000000 573caa4fded4689fe7ea1290187616ec 1 
compiler_rt/comparef.zig
-2262 537920231 1718192735000000000 725c3f19c2dede2026c5c04e10a6ae54 1 
compiler_rt/cmphf2.zig
-3108 537920232 1718192735000000000 65c7f66578fec5d84406504bd646427c 1 
compiler_rt/cmpsf2.zig
-3108 537920229 1718192735000000000 044cbe6c471b9807e4c1f9ad084f0443 1 
compiler_rt/cmpdf2.zig
-4723 537920234 1718192735000000000 a5902304448425f4f2ebed534cd5d565 1 
compiler_rt/cmptf2.zig
-2243 537920236 1718192735000000000 c39f88bb981e8d954e55617db6928265 1 
compiler_rt/cmpxf2.zig
-340 537788493 1718192735000000000 d8a9a1b163c10cc2986a32a27f153676 1 
compiler_rt/unordhf2.zig
-617 537788494 1718192735000000000 a0d893a29040c906eb80167163e90e96 1 
compiler_rt/unordsf2.zig
-617 537788492 1718192735000000000 e7b230b13f117d787bd80a053e51eaf4 1 
compiler_rt/unorddf2.zig
-340 537788496 1718192735000000000 96e721f6b7181c3b2415f9e820ff8092 1 
compiler_rt/unordxf2.zig
-654 537788495 1718192735000000000 c036ab83724626a7f09aa9a9baca297b 1 
compiler_rt/unordtf2.zig
-958 537849890 1718192735000000000 187e44bd9e5dee1e90c1c7433dc0324e 1 
compiler_rt/gehf2.zig
-1533 537849891 1718192735000000000 4cad1a60f4a98c396df03cc164d24389 1 
compiler_rt/gesf2.zig
-1533 537849889 1718192735000000000 22d952d805a53cbd2b6e024ae8aae8db 1 
compiler_rt/gedf2.zig
-529 537849893 1718192735000000000 73d2a8c54dbbed3c4b821c8e1d1a2961 1 
compiler_rt/gexf2.zig
-1371 537849892 1718192735000000000 f549641a2e6841a051351497c8724772 1 
compiler_rt/getf2.zig
-6348 537920204 1718192735000000000 e258417c96592f44e3504eb856662b20 1 
compiler_rt/addf3.zig
-318 537920206 1718192735000000000 a29829052a2bc214b4a0b9d6e6b35f1b 1 
compiler_rt/addhf3.zig
-577 537920211 1718192735000000000 e7d1cf0ad12b53cc523cd9fdea9f441b 1 
compiler_rt/addsf3.zig
-577 537920203 1718192735000000000 0c0a725570daf4128955753cbe2ff410 1 
compiler_rt/adddf3.zig
-722 537920212 1718192735000000000 b1699d4a2f6f90d92c75b81de5c02336 1 
compiler_rt/addtf3.zig
-322 537920213 1718192735000000000 a6e082cc633979b8e6ca8033e0c6e802 1 
compiler_rt/addxf3.zig
-405 537790890 1718192735000000000 f8da3a92a916a57c6adc3c63031d75a2 1 
compiler_rt/subhf3.zig
-718 537790895 1718192735000000000 d6efedee4d517ff12568448b3f355a7e 1 
compiler_rt/subsf3.zig
-718 537790889 1718192735000000000 bb35a6d4b12493ab3e23b99bf4ef3f53 1 
compiler_rt/subdf3.zig
-881 537790896 1718192735000000000 39039dc9ebd83f0b62f199aa5b690134 1 
compiler_rt/subtf3.zig
-403 537790897 1718192735000000000 7c9802891cfb7ebfa73dda1fd596609a 1 
compiler_rt/subxf3.zig
-8392 537849912 1718192735000000000 1608ce3999e8f847a5576c514ed7447c 1 
compiler_rt/mulf3.zig
-322 537849915 1718192735000000000 307c740c36bf0c917dfacb8e4eae0fd7 1 
compiler_rt/mulhf3.zig
-581 537790849 1718192735000000000 33c29836f363210a5d00d78246579ada 1 
compiler_rt/mulsf3.zig
-581 537849911 1718192735000000000 0757aa506754a6d1471fb627872435ce 1 
compiler_rt/muldf3.zig
-734 537790851 1718192735000000000 6fe35ee75aba8e80ff90828efbfa6dd9 1 
compiler_rt/multf3.zig
-322 537790853 1718192735000000000 a356677c220db8bbdc471757959326a7 1 
compiler_rt/mulxf3.zig
-343 537920252 1718192735000000000 60df618e5d5eb5d44d44e7ed46599978 1 
compiler_rt/divhf3.zig
-8557 537920254 1718192735000000000 fe19e0d005fac1e36dbeb7fce065b33c 1 
compiler_rt/divsf3.zig
-9382 537920249 1718192735000000000 9208d183ac5f3604170b1d77ac62dc6e 1 
compiler_rt/divdf3.zig
-8668 537901830 1718192735000000000 5f89f3c281fbc00081dd22319272ae9a 1 
compiler_rt/divxf3.zig
-9922 537901825 1718192735000000000 0f7a0c7a6607e46d29be80ff196a15a7 1 
compiler_rt/divtf3.zig
-264 537790857 1718192735000000000 22eda58d8bd7cfc0e8ac3604b8a2f37b 1 
compiler_rt/neghf2.zig
-513 537790858 1718192735000000000 2f9469eca214c41dd25a46b8060bc747 1 
compiler_rt/negsf2.zig
-513 537790855 1718192735000000000 b645aea6476adae66ecb27dc2288b731 1 
compiler_rt/negdf2.zig
-407 537790860 1718192735000000000 69434097b4be670586f09834a81a2bce 1 
compiler_rt/negtf2.zig
-264 537790866 1718192735000000000 0e10c4b97df3ef0c33b3c308a8634d3a 1 
compiler_rt/negxf2.zig
-2066 537790876 1718192735000000000 b08bbce34515e9b53db54f04b24659f5 1 
compiler_rt/powiXf2.zig
-2275 537849908 1718192735000000000 31c049fe940585ddd225b0c4f49de0ab 1 
compiler_rt/mulc3.zig
-424 537849914 1718192735000000000 66584767db8712e6951471183e505955 1 
compiler_rt/mulhc3.zig
-424 537790848 1718192735000000000 15543d7db4b436eb625991fe4cbca4d4 1 
compiler_rt/mulsc3.zig
-424 537849910 1718192735000000000 41c0018a4e87ba77ca4446fe06b7397a 1 
compiler_rt/muldc3.zig
-424 537790852 1718192735000000000 0878ce814f8b16d53e53767c3ef231eb 1 
compiler_rt/mulxc3.zig
-579 537790850 1718192735000000000 f75215ec1fd7b10c7fc63a218558fe91 1 
compiler_rt/multc3.zig
-2280 537920246 1718192735000000000 9e6aaeda713b6cd43eca1180606dc9f8 1 
compiler_rt/divc3.zig
-433 537920251 1718192735000000000 f66437ee31d698014826d35fdba32db5 1 
compiler_rt/divhc3.zig
-433 537920253 1718192735000000000 4d10c85a95c742a60ef5dddc3c68cb0f 1 
compiler_rt/divsc3.zig
-433 537920248 1718192735000000000 f84707a5db49bc436263f8a0d392ac9f 1 
compiler_rt/divdc3.zig
-433 537901829 1718192735000000000 d8280a0571d3a3606752ce0c57e9c537 1 
compiler_rt/divxc3.zig
-588 537901824 1718192735000000000 9d65e2244670e5d60321ab05b1b12a54 1 
compiler_rt/divtc3.zig
-4996 537920223 1718192735000000000 86aad4c0fb0ccb41c62203109ec00779 1 
compiler_rt/ceil.zig
-5616 537920241 1718192735000000000 8fd92fd4fbfaa6768b91244ee3a7705b 1 
compiler_rt/cos.zig
-6794 537901833 1718192735000000000 dfa617c7400fb67576c3362e4aa6393c 1 
compiler_rt/exp.zig
-17704 537901834 1718192735000000000 cac08730171b34fbcef65ca6b090d318 1 
compiler_rt/exp2.zig
-1906 537901847 1718192735000000000 1a0ac008b5a43a7006f5b157a6c59b2c 1 
compiler_rt/fabs.zig
-6079 537849882 1718192735000000000 5c621a960512baa17982b449f4a04aa8 1 
compiler_rt/floor.zig
-11568 537849883 1718192735000000000 dcf38c2f88b682595b68905f0c21e1a4 1 
compiler_rt/fma.zig
-2473 537849884 1718192735000000000 3ea7a92d17f0c8176c52bb6bc1567d7d 1 
compiler_rt/fmax.zig
-2473 537849885 1718192735000000000 7127c9760c0881dd5b255d2593a67d9e 1 
compiler_rt/fmin.zig
-12211 537849886 1718192735000000000 a7e534b56116b73ebd6fcb15fcc6c9a0 1 
compiler_rt/fmod.zig
-6441 537849897 1718192735000000000 a9e4318e36230a053e07a9df63331756 1 
compiler_rt/log.zig
-7437 537849898 1718192735000000000 3acc8afc0b134e8423b0349e26a39f3d 1 
compiler_rt/log10.zig
-6734 537849899 1718192735000000000 025cc51e4a46323d0f948737aab29cc3 1 
compiler_rt/log2.zig
-5198 537790881 1718192735000000000 ee95b20aee7a41535cf57e3b07b4c97f 1 
compiler_rt/round.zig
-6436 537790884 1718192735000000000 305ff4060037f1f8384936a92e1baedd 1 
compiler_rt/sin.zig
-8398 537790885 1718192735000000000 9d65c74a0d44effad2eee7b435bf5469 1 
compiler_rt/sincos.zig
-8197 537790886 1718192735000000000 e8a23eecf831c132498d27b4931f1a11 1 
compiler_rt/sqrt.zig
-5828 537790898 1718192735000000000 af6243809b71538076b971775431f065 1 
compiler_rt/tan.zig
-4400 537790900 1718192735000000000 1b8d03373606393e95f2171de33a5b2f 1 
compiler_rt/trunc.zig
-5093 537788486 1718192735000000000 1b9319fe34a7bf346d783130efe60b81 1 
compiler_rt/udivmodei4.zig
-884 537788488 1718192735000000000 d5e53d72da25abcfc5d9f447a3cd2496 1 
compiler_rt/udivmodti4.zig
-2995 537790867 1718192735000000000 ef25ce44fe553f7eb335989cc7d33543 1 
compiler_rt/os_version_check.zig
-12539 537901832 1718192735000000000 3df8e8cf95b66fe93aa1689286de5667 1 
compiler_rt/emutls.zig
-10269 537920214 1718192735000000000 dfa310795e80b41b24e8f7200f069856 1 
compiler_rt/arm.zig
-2506 537920216 1718192735000000000 e0ba44fe9d7b49d71e0c5390c8408115 1 
compiler_rt/aulldiv.zig
-2561 537920217 1718192735000000000 97ccf47a3098b63ad266303fb76b7c9f 1 
compiler_rt/aullrem.zig
-6520 537925278 1718192735000000000 1337397824c2f737ccb85d749172134b 1 
compiler_rt/clear_cache.zig
-26382 537920215 1718192735000000000 9f9af142d0e4f51c7631224153bc5b79 1 
compiler_rt/atomics.zig
-8864 537790888 1718192735000000000 70ff3a1f9e85bb7358a760436f1c5bfa 1 
compiler_rt/stack_probe.zig
-663 537849901 1718192735000000000 6152528ca6ed34be93821052a06f36c3 1 
compiler_rt/memcpy.zig
-874 537849903 1718192735000000000 d68037e80950188b94fb25a83963d8a9 1 
compiler_rt/memset.zig
-641 537849902 1718192735000000000 7cc34bc84bae831533239c1442399184 1 
compiler_rt/memmove.zig
-930 537849900 1718192735000000000 f40979da69ce036848514cd8a3356a9a 1 
compiler_rt/memcmp.zig
-873 537920218 1718192735000000000 5842a7cab226662fb923a2b24c4d8efb 1 
compiler_rt/bcmp.zig
-4514 537790887 1718192735000000000 4b14b12b23a363fd6a54ba3d3bfbab5d 1 
compiler_rt/ssp.zig
-10020 537920237 1718192735000000000 be2931b05cb4fe4b65d7adde233b984c 1 
compiler_rt/common.zig
-11091 34649019 1718192735000000000 3b4e837c9f6b3b4fbb5b3b95148e553c 1 
std/SemanticVersion.zig
-4262 537788484 1718192735000000000 b5aac82faa0f2cbd1cbc422f12f04db8 1 
compiler_rt/udivmod.zig
-7160 119471906 1718192735000000000 225a8c307f8f0832b31caae6a29cee36 1 
std/math/float.zig
-1435 34789777 1718192735000000000 48685c58555074b2d42fa7ed74dfba29 1 
std/math/isnan.zig
-1775 34789776 1718192735000000000 f3ba4db18fa456fb43b6bf6121ea0552 1 
std/math/isinf.zig
-1136 34788220 1718192735000000000 4a4733820846799d6b3e891e41c334ec 1 
std/math/copysign.zig
-5519 34789774 1718192735000000000 0facec314958f25e991dfdd64a09fc12 1 
std/math/ilogb.zig
-503 34877945 1718192735000000000 66d1263715127908b281862dba5dc24b 1 
std/math/scalbn.zig
-6839 34789782 1718192735000000000 a667fbc268d441df776f89454b524402 1 
std/math/ldexp.zig
-1083 34789775 1718192735000000000 366246fae7209b6f024bfb6827a7a361 1 
std/math/isfinite.zig
-176912 119471908 1718192735000000000 223e2fd0f89a74fd7d5132dbe48f1c2c 1 
std/mem.zig
-11744 537790899 1718192735000000000 ad2b34903e1ef28c1774d5d97303bd50 1 
compiler_rt/trig.zig
-2247 537790880 1718192735000000000 2337e183931c970621500018ffe636df 1 
compiler_rt/rem_pio2f.zig
-6045 537790878 1718192735000000000 18b634df64d66eb7c240db46b32eea60 1 
compiler_rt/rem_pio2.zig
-7877 34789770 1718192735000000000 99ff8c90d64e335b8787d201259a076c 1 
std/math/frexp.zig
-20535 537790879 1718192735000000000 b2a257008fb83056943e645889c5a503 1 
compiler_rt/rem_pio2_large.zig
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vendor/h/e0161c78d4325f8c3827a76003546f0a.txt 
new/vendor/h/e0161c78d4325f8c3827a76003546f0a.txt
--- old/vendor/h/e0161c78d4325f8c3827a76003546f0a.txt   2024-06-15 
14:19:07.883564963 +0200
+++ new/vendor/h/e0161c78d4325f8c3827a76003546f0a.txt   1970-01-01 
01:00:00.000000000 +0100
@@ -1,224 +0,0 @@
-0
-9349 811882462 1718192735000000000 70342badd0cf1e60996578ca6be613c4 1 
compiler_rt.zig
-7616 119471923 1718192735000000000 a112ef71b351e8f79f6f43c583ede25c 1 
std/std.zig
-23040 119471921 1718192735000000000 da66963546b611ee7750a27396b7d1ea 1 
std/start.zig
-115223 119471893 1718192735000000000 864599658ca312005d8d3860dcc5d44e 1 
std/debug.zig
-2672 830953260 1718453944180232394 3d7ce1646169d5022922a5e22ff38e70 2 
b/3d7ce1646169d5022922a5e22ff38e70/builtin.zig
-33165 119471890 1718192735000000000 f94156764e93e22ac481419ae3dcd7e2 1 
std/builtin.zig
-87972 119471872 1718192735000000000 2058e9176f2f8c413153da85bdefea9a 1 
std/Target.zig
-129328 119471887 1718192735000000000 aa1c9ead6b093aa4fc744cbaf6cdb147 1 
std/Target/x86.zig
-73503 119471905 1718192735000000000 4f495cdd87469544c122e37211fe3d16 1 
std/math.zig
-41362 119471909 1718192735000000000 222d7cb14bd7ca087b75cbc16cba6dda 1 
std/meta.zig
-7499 537920242 1718192735000000000 8efec5ae511ab5b1e2ac3e2199b29b39 1 
compiler_rt/count0bits.zig
-1382 537790868 1718192735000000000 9bf7f4e0b5be90636f2b988fb70fb0a0 1 
compiler_rt/parity.zig
-1909 537790872 1718192735000000000 006ba57488a8655f934222afbaedc151 1 
compiler_rt/popcount.zig
-3257 537920219 1718192735000000000 fd18998de40b4fde4b093a5985f0dc1e 1 
compiler_rt/bswap.zig
-1998 537920228 1718192735000000000 d0442dad208d243b195a31728b3bf71e 1 
compiler_rt/cmp.zig
-4788 537790882 1718192735000000000 fe26a3b0eae4ac913ee3bf6639a2b568 1 
compiler_rt/shift.zig
-1168 537790854 1718192735000000000 ec1eaa9a529d95afb23ee2ea56e73df8 1 
compiler_rt/negXi2.zig
-28957 537849894 1718192735000000000 97707d840564097f8667b26a2702f1f8 1 
compiler_rt/int.zig
-3044 537849906 1718192735000000000 48ff2542963e88bd35e16baf2f363b7b 1 
compiler_rt/mulXi3.zig
-1111 537901827 1718192735000000000 ee221ae2e0c466d904d9bc5a0925b544 1 
compiler_rt/divti3.zig
-768 537788490 1718192735000000000 44c972f0a14100fb0096fdfa0fd9883a 1 
compiler_rt/udivti3.zig
-1378 537849904 1718192735000000000 f7de85b188237ed647d8c892d03b7dcc 1 
compiler_rt/modti3.zig
-844 537788491 1718192735000000000 6442d4801a31750c72883b4b6444896a 1 
compiler_rt/umodti3.zig
-671 537920196 1718192735000000000 a6cfe83f9d8eb6e22dee6dc0ccee3367 1 
compiler_rt/absv.zig
-310 537920199 1718192735000000000 5782a879e21415ad7be733b6d11b3e3a 1 
compiler_rt/absvsi2.zig
-310 537920197 1718192735000000000 457fa9a35b2ee6e6b317ef7f8428b099 1 
compiler_rt/absvdi2.zig
-313 537920201 1718192735000000000 09d57c15f517793218bf453de2ac8820 1 
compiler_rt/absvti2.zig
-1300 537790862 1718192735000000000 654cc36a03b0ba19f6bb9c5a1fec448f 1 
compiler_rt/negv.zig
-1815 537920207 1718192735000000000 e7400d05600b45552ee79d8dc0d3b0f2 1 
compiler_rt/addo.zig
-1739 537790891 1718192735000000000 f326622af2527da919f09d09c32d9f52 1 
compiler_rt/subo.zig
-2640 537849916 1718192735000000000 e8594a271814179e865a9512c93a6dc1 1 
compiler_rt/mulo.zig
-6018 537901837 1718192735000000000 4d830ec9daeb023f210a86136bc54cb9 1 
compiler_rt/extendf.zig
-902 537901840 1718192735000000000 9f1b5e6d57e135eea21d93a36e29612c 1 
compiler_rt/extendhfsf2.zig
-372 537901839 1718192735000000000 8e17385da13869e0a789414aa96b0a43 1 
compiler_rt/extendhfdf2.zig
-375 537901841 1718192735000000000 bf98a04a5eb02fbeeb7450e8f444930c 1 
compiler_rt/extendhftf2.zig
-372 537901842 1718192735000000000 1c80ed5500dbcd2da8948104fe736813 1 
compiler_rt/extendhfxf2.zig
-627 537901843 1718192735000000000 25cc2bef6fcfab10286d55deae2e26f4 1 
compiler_rt/extendsfdf2.zig
-778 537901844 1718192735000000000 c92c5a434f8ae6422cf9ad43c8e495b8 1 
compiler_rt/extendsftf2.zig
-359 537901845 1718192735000000000 e8cb6e22d98a6d32517dfb53d8f53b05 1 
compiler_rt/extendsfxf2.zig
-778 537901835 1718192735000000000 c0968739393adbe8044461d0a9903a49 1 
compiler_rt/extenddftf2.zig
-363 537901836 1718192735000000000 5f76211ebbc2d70205da635cbb01ea8a 1 
compiler_rt/extenddfxf2.zig
-1985 537901846 1718192735000000000 dfcccfad6f92609dda17b1d961f27404 1 
compiler_rt/extendxftf2.zig
-8117 537790903 1718192735000000000 2a9f79bc0adb7f9aa31bc5d42ef68c78 1 
compiler_rt/truncf.zig
-863 537790905 1718192735000000000 4d74f324a3783bd300b4ec8ed51144f5 1 
compiler_rt/truncsfhf2.zig
-616 537790901 1718192735000000000 fc747eee8504402c7a2077217a38d879 1 
compiler_rt/truncdfhf2.zig
-583 537790902 1718192735000000000 652dca7a7287277f8b8b373e6d6700a6 1 
compiler_rt/truncdfsf2.zig
-355 537790911 1718192735000000000 ee7f11a0b8ef08c169c6beebb477ef2a 1 
compiler_rt/truncxfhf2.zig
-332 537788480 1718192735000000000 51c66c0454c616f2b95ad9bb8201da77 1 
compiler_rt/truncxfsf2.zig
-332 537790910 1718192735000000000 698fe03186b88ffc33ac8e6fb2e61f2a 1 
compiler_rt/truncxfdf2.zig
-358 537790907 1718192735000000000 c20a913b3d1ec7dee6451b2fa56c9ee6 1 
compiler_rt/trunctfhf2.zig
-728 537790908 1718192735000000000 eef87a7fc8faaccf84d569d7e0c3c356 1 
compiler_rt/trunctfsf2.zig
-728 537790906 1718192735000000000 6c4e540d3cec16ca0707e1c22016e1c4 1 
compiler_rt/trunctfdf2.zig
-2856 537790909 1718192735000000000 1688cc8a7180a486f767a90912a2d935 1 
compiler_rt/trunctfxf2.zig
-2050 537849895 1718192735000000000 125bdb55d7fc1557ca9e5607531f6018 1 
compiler_rt/int_from_float.zig
-340 537901855 1718192735000000000 be031a0de7229bedf13e9043bb2b4324 1 
compiler_rt/fixhfsi.zig
-340 537901854 1718192735000000000 400c72c648c530ec4e9225809fcc46fa 1 
compiler_rt/fixhfdi.zig
-711 537901856 1718192735000000000 1d4c47738ea6c05c46497261ec349a54 1 
compiler_rt/fixhfti.zig
-599 537901859 1718192735000000000 7d8b38c635f301bcc9d8330b1b941d99 1 
compiler_rt/fixsfsi.zig
-599 537901858 1718192735000000000 9d7e19833fa38d5525f57705c0a81753 1 
compiler_rt/fixsfdi.zig
-711 537901860 1718192735000000000 b8d99db143f96f59c679fc4562bada84 1 
compiler_rt/fixsfti.zig
-599 537901852 1718192735000000000 db29e6276fc63f8a92ede827687d45e8 1 
compiler_rt/fixdfsi.zig
-599 537901851 1718192735000000000 4f1a2eac73ba3be796e615e66fedc66a 1 
compiler_rt/fixdfdi.zig
-711 537901853 1718192735000000000 622028c7d02b0373f0d5640fe7bb33ff 1 
compiler_rt/fixdfti.zig
-733 537901862 1718192735000000000 30d45b11ae419cbabfd46d3708ce3e89 1 
compiler_rt/fixtfsi.zig
-733 537901861 1718192735000000000 43e249072072aecdb4953b9b10515d58 1 
compiler_rt/fixtfdi.zig
-864 537901863 1718192735000000000 134d5a1397d879f7059a2ec984394a69 1 
compiler_rt/fixtfti.zig
-340 537901880 1718192735000000000 2b9b472f4cd062984a5a1e42a705c890 1 
compiler_rt/fixxfsi.zig
-340 537901879 1718192735000000000 8f1da2fa15a67445da1d981372b3d948 1 
compiler_rt/fixxfdi.zig
-711 537901881 1718192735000000000 b6d0f7736cf540713c71252f396caae2 1 
compiler_rt/fixxfti.zig
-349 537901868 1718192735000000000 313221779d437ed9878efb3472bbaf1b 1 
compiler_rt/fixunshfsi.zig
-349 537901867 1718192735000000000 2dce9e5126f91ef00b27785b9abf6b56 1 
compiler_rt/fixunshfdi.zig
-729 537901869 1718192735000000000 cf0660591403acdc85b20ba2b48b5bd3 1 
compiler_rt/fixunshfti.zig
-611 537901871 1718192735000000000 702f9ddb35910a03013f6df4ad33a8e4 1 
compiler_rt/fixunssfsi.zig
-611 537901870 1718192735000000000 2f791e302ef0d76bd21810dce693a58c 1 
compiler_rt/fixunssfdi.zig
-729 537901872 1718192735000000000 2c6c11c8406de0a49a2a39906cf1d606 1 
compiler_rt/fixunssfti.zig
-611 537901865 1718192735000000000 3c1ebb8cb8dddaa23c75da6453296ef0 1 
compiler_rt/fixunsdfsi.zig
-611 537901864 1718192735000000000 18179d55ed90a2879a0baf04cef0212f 1 
compiler_rt/fixunsdfdi.zig
-729 537901866 1718192735000000000 d9659b4f55c0393cd9603a41d355f4f0 1 
compiler_rt/fixunsdfti.zig
-751 537901874 1718192735000000000 cf81f9217965ee1f7103a966c874b187 1 
compiler_rt/fixunstfsi.zig
-751 537901873 1718192735000000000 b7cc74e7ba3dd8c40b6fabe5c888d02a 1 
compiler_rt/fixunstfdi.zig
-888 537901875 1718192735000000000 40c6000ae59d9e915e474eb2cfee63b0 1 
compiler_rt/fixunstfti.zig
-349 537901877 1718192735000000000 6d86922bd6542770336af0f790580640 1 
compiler_rt/fixunsxfsi.zig
-349 537901876 1718192735000000000 73d266f4573322d23ec7f2417e428e78 1 
compiler_rt/fixunsxfdi.zig
-729 537901878 1718192735000000000 f64280ad32f89867914fc54da0f87ec1 1 
compiler_rt/fixunsxfti.zig
-2373 537901882 1718192735000000000 4946d3295450f3dd2c0dbcd09f173dc7 1 
compiler_rt/float_from_int.zig
-346 537849858 1718192735000000000 a4bdaed69b1d883ce7c7b4ceb3d24556 1 
compiler_rt/floatsihf.zig
-602 537849859 1718192735000000000 daa18d64d52ba08e78a579931963bdc0 1 
compiler_rt/floatsisf.zig
-602 537849857 1718192735000000000 e85d7c73469b14a8f8cd16d619e1c05e 1 
compiler_rt/floatsidf.zig
-745 537849860 1718192735000000000 a092e2e8e920981069df4aa8d8521096 1 
compiler_rt/floatsitf.zig
-346 537849861 1718192735000000000 63bb64aa7252dca678dcb4fbc20e0a4d 1 
compiler_rt/floatsixf.zig
-346 537901885 1718192735000000000 b858992a823c2e3ce037d496c7f6ba8e 1 
compiler_rt/floatdihf.zig
-602 537901886 1718192735000000000 3f01ac08de69e49e2140b24facd39355 1 
compiler_rt/floatdisf.zig
-602 537901884 1718192735000000000 8c66aefebe2a822efb7e39ea51495115 1 
compiler_rt/floatdidf.zig
-745 537901887 1718192735000000000 890c06f37bab76946df84fd449ddb483 1 
compiler_rt/floatditf.zig
-346 537849856 1718192735000000000 3432bfe720b173ba2901efc5032a161e 1 
compiler_rt/floatdixf.zig
-710 537849863 1718192735000000000 34f3a39ff8b13a81f23ffbb5f328e7c8 1 
compiler_rt/floattihf.zig
-710 537849864 1718192735000000000 bc0cb9962222449057f099ab1913a2f7 1 
compiler_rt/floattisf.zig
-710 537849862 1718192735000000000 9cb958cff98d203ca28fb00ef884a004 1 
compiler_rt/floattidf.zig
-869 537849865 1718192735000000000 9c931b6e9f396bee9488952906aac111 1 
compiler_rt/floattitf.zig
-710 537849866 1718192735000000000 97357f8c033741e0d200a12e44a49142 1 
compiler_rt/floattixf.zig
-352 537849868 1718192735000000000 407f16aeae87017017b264f5454702ba 1 
compiler_rt/floatundihf.zig
-611 537849869 1718192735000000000 c3aaa939e803ae6867478b9dcd8383c4 1 
compiler_rt/floatundisf.zig
-611 537849867 1718192735000000000 5503e8efbd49d82182f377da291dfe09 1 
compiler_rt/floatundidf.zig
-758 537849870 1718192735000000000 9ad16802e2cb23455b973261d7eb0ab8 1 
compiler_rt/floatunditf.zig
-352 537849871 1718192735000000000 dd957fe9f38b9196edd004b7ded0eb16 1 
compiler_rt/floatundixf.zig
-356 537849873 1718192735000000000 f887a3bb7351669adf6df773cf20310b 1 
compiler_rt/floatunsihf.zig
-611 537849874 1718192735000000000 c7cff1f5bd6f417d20e1f35030b89a13 1 
compiler_rt/floatunsisf.zig
-611 537849872 1718192735000000000 0e50a6363e983f32ef91f7afaf6c3aaa 1 
compiler_rt/floatunsidf.zig
-758 537849875 1718192735000000000 93d3696394b128af2c948318b7b9a897 1 
compiler_rt/floatunsitf.zig
-352 537849876 1718192735000000000 8ee27b3606e439fec00130642bab5885 1 
compiler_rt/floatunsixf.zig
-722 537849878 1718192735000000000 cc66554b07450dc9d36ea9024177ed72 1 
compiler_rt/floatuntihf.zig
-722 537849879 1718192735000000000 8daafbdcfd438ba91951e342ad45d1ab 1 
compiler_rt/floatuntisf.zig
-722 537849877 1718192735000000000 beaaddc45f37be50978f24cadb33c115 1 
compiler_rt/floatuntidf.zig
-885 537849880 1718192735000000000 52aa34b1a0adcaf4c7dc721dd6235571 1 
compiler_rt/floatuntitf.zig
-722 537849881 1718192735000000000 f9bc782bfca29fd0c20079764826b6ec 1 
compiler_rt/floatuntixf.zig
-4574 537920239 1718192735000000000 573caa4fded4689fe7ea1290187616ec 1 
compiler_rt/comparef.zig
-2262 537920231 1718192735000000000 725c3f19c2dede2026c5c04e10a6ae54 1 
compiler_rt/cmphf2.zig
-3108 537920232 1718192735000000000 65c7f66578fec5d84406504bd646427c 1 
compiler_rt/cmpsf2.zig
-3108 537920229 1718192735000000000 044cbe6c471b9807e4c1f9ad084f0443 1 
compiler_rt/cmpdf2.zig
-4723 537920234 1718192735000000000 a5902304448425f4f2ebed534cd5d565 1 
compiler_rt/cmptf2.zig
-2243 537920236 1718192735000000000 c39f88bb981e8d954e55617db6928265 1 
compiler_rt/cmpxf2.zig
-340 537788493 1718192735000000000 d8a9a1b163c10cc2986a32a27f153676 1 
compiler_rt/unordhf2.zig
-617 537788494 1718192735000000000 a0d893a29040c906eb80167163e90e96 1 
compiler_rt/unordsf2.zig
-617 537788492 1718192735000000000 e7b230b13f117d787bd80a053e51eaf4 1 
compiler_rt/unorddf2.zig
-340 537788496 1718192735000000000 96e721f6b7181c3b2415f9e820ff8092 1 
compiler_rt/unordxf2.zig
-654 537788495 1718192735000000000 c036ab83724626a7f09aa9a9baca297b 1 
compiler_rt/unordtf2.zig
-958 537849890 1718192735000000000 187e44bd9e5dee1e90c1c7433dc0324e 1 
compiler_rt/gehf2.zig
-1533 537849891 1718192735000000000 4cad1a60f4a98c396df03cc164d24389 1 
compiler_rt/gesf2.zig
-1533 537849889 1718192735000000000 22d952d805a53cbd2b6e024ae8aae8db 1 
compiler_rt/gedf2.zig
-529 537849893 1718192735000000000 73d2a8c54dbbed3c4b821c8e1d1a2961 1 
compiler_rt/gexf2.zig
-1371 537849892 1718192735000000000 f549641a2e6841a051351497c8724772 1 
compiler_rt/getf2.zig
-6348 537920204 1718192735000000000 e258417c96592f44e3504eb856662b20 1 
compiler_rt/addf3.zig
-318 537920206 1718192735000000000 a29829052a2bc214b4a0b9d6e6b35f1b 1 
compiler_rt/addhf3.zig
-577 537920211 1718192735000000000 e7d1cf0ad12b53cc523cd9fdea9f441b 1 
compiler_rt/addsf3.zig
-577 537920203 1718192735000000000 0c0a725570daf4128955753cbe2ff410 1 
compiler_rt/adddf3.zig
-722 537920212 1718192735000000000 b1699d4a2f6f90d92c75b81de5c02336 1 
compiler_rt/addtf3.zig
-322 537920213 1718192735000000000 a6e082cc633979b8e6ca8033e0c6e802 1 
compiler_rt/addxf3.zig
-405 537790890 1718192735000000000 f8da3a92a916a57c6adc3c63031d75a2 1 
compiler_rt/subhf3.zig
-718 537790895 1718192735000000000 d6efedee4d517ff12568448b3f355a7e 1 
compiler_rt/subsf3.zig
-718 537790889 1718192735000000000 bb35a6d4b12493ab3e23b99bf4ef3f53 1 
compiler_rt/subdf3.zig
-881 537790896 1718192735000000000 39039dc9ebd83f0b62f199aa5b690134 1 
compiler_rt/subtf3.zig
-403 537790897 1718192735000000000 7c9802891cfb7ebfa73dda1fd596609a 1 
compiler_rt/subxf3.zig
-8392 537849912 1718192735000000000 1608ce3999e8f847a5576c514ed7447c 1 
compiler_rt/mulf3.zig
-322 537849915 1718192735000000000 307c740c36bf0c917dfacb8e4eae0fd7 1 
compiler_rt/mulhf3.zig
-581 537790849 1718192735000000000 33c29836f363210a5d00d78246579ada 1 
compiler_rt/mulsf3.zig
-581 537849911 1718192735000000000 0757aa506754a6d1471fb627872435ce 1 
compiler_rt/muldf3.zig
-734 537790851 1718192735000000000 6fe35ee75aba8e80ff90828efbfa6dd9 1 
compiler_rt/multf3.zig
-322 537790853 1718192735000000000 a356677c220db8bbdc471757959326a7 1 
compiler_rt/mulxf3.zig
-343 537920252 1718192735000000000 60df618e5d5eb5d44d44e7ed46599978 1 
compiler_rt/divhf3.zig
-8557 537920254 1718192735000000000 fe19e0d005fac1e36dbeb7fce065b33c 1 
compiler_rt/divsf3.zig
-9382 537920249 1718192735000000000 9208d183ac5f3604170b1d77ac62dc6e 1 
compiler_rt/divdf3.zig
-8668 537901830 1718192735000000000 5f89f3c281fbc00081dd22319272ae9a 1 
compiler_rt/divxf3.zig
-9922 537901825 1718192735000000000 0f7a0c7a6607e46d29be80ff196a15a7 1 
compiler_rt/divtf3.zig
-264 537790857 1718192735000000000 22eda58d8bd7cfc0e8ac3604b8a2f37b 1 
compiler_rt/neghf2.zig
-513 537790858 1718192735000000000 2f9469eca214c41dd25a46b8060bc747 1 
compiler_rt/negsf2.zig
-513 537790855 1718192735000000000 b645aea6476adae66ecb27dc2288b731 1 
compiler_rt/negdf2.zig
-407 537790860 1718192735000000000 69434097b4be670586f09834a81a2bce 1 
compiler_rt/negtf2.zig
-264 537790866 1718192735000000000 0e10c4b97df3ef0c33b3c308a8634d3a 1 
compiler_rt/negxf2.zig
-2066 537790876 1718192735000000000 b08bbce34515e9b53db54f04b24659f5 1 
compiler_rt/powiXf2.zig
-2275 537849908 1718192735000000000 31c049fe940585ddd225b0c4f49de0ab 1 
compiler_rt/mulc3.zig
-424 537849914 1718192735000000000 66584767db8712e6951471183e505955 1 
compiler_rt/mulhc3.zig
-424 537790848 1718192735000000000 15543d7db4b436eb625991fe4cbca4d4 1 
compiler_rt/mulsc3.zig
-424 537849910 1718192735000000000 41c0018a4e87ba77ca4446fe06b7397a 1 
compiler_rt/muldc3.zig
-424 537790852 1718192735000000000 0878ce814f8b16d53e53767c3ef231eb 1 
compiler_rt/mulxc3.zig
-579 537790850 1718192735000000000 f75215ec1fd7b10c7fc63a218558fe91 1 
compiler_rt/multc3.zig
-2280 537920246 1718192735000000000 9e6aaeda713b6cd43eca1180606dc9f8 1 
compiler_rt/divc3.zig
-433 537920251 1718192735000000000 f66437ee31d698014826d35fdba32db5 1 
compiler_rt/divhc3.zig
-433 537920253 1718192735000000000 4d10c85a95c742a60ef5dddc3c68cb0f 1 
compiler_rt/divsc3.zig
-433 537920248 1718192735000000000 f84707a5db49bc436263f8a0d392ac9f 1 
compiler_rt/divdc3.zig
-433 537901829 1718192735000000000 d8280a0571d3a3606752ce0c57e9c537 1 
compiler_rt/divxc3.zig
-588 537901824 1718192735000000000 9d65e2244670e5d60321ab05b1b12a54 1 
compiler_rt/divtc3.zig
-4996 537920223 1718192735000000000 86aad4c0fb0ccb41c62203109ec00779 1 
compiler_rt/ceil.zig
-5616 537920241 1718192735000000000 8fd92fd4fbfaa6768b91244ee3a7705b 1 
compiler_rt/cos.zig
-6794 537901833 1718192735000000000 dfa617c7400fb67576c3362e4aa6393c 1 
compiler_rt/exp.zig
-17704 537901834 1718192735000000000 cac08730171b34fbcef65ca6b090d318 1 
compiler_rt/exp2.zig
-1906 537901847 1718192735000000000 1a0ac008b5a43a7006f5b157a6c59b2c 1 
compiler_rt/fabs.zig
-6079 537849882 1718192735000000000 5c621a960512baa17982b449f4a04aa8 1 
compiler_rt/floor.zig
-11568 537849883 1718192735000000000 dcf38c2f88b682595b68905f0c21e1a4 1 
compiler_rt/fma.zig
-2473 537849884 1718192735000000000 3ea7a92d17f0c8176c52bb6bc1567d7d 1 
compiler_rt/fmax.zig
-2473 537849885 1718192735000000000 7127c9760c0881dd5b255d2593a67d9e 1 
compiler_rt/fmin.zig
-12211 537849886 1718192735000000000 a7e534b56116b73ebd6fcb15fcc6c9a0 1 
compiler_rt/fmod.zig
-6441 537849897 1718192735000000000 a9e4318e36230a053e07a9df63331756 1 
compiler_rt/log.zig
-7437 537849898 1718192735000000000 3acc8afc0b134e8423b0349e26a39f3d 1 
compiler_rt/log10.zig
-6734 537849899 1718192735000000000 025cc51e4a46323d0f948737aab29cc3 1 
compiler_rt/log2.zig
-5198 537790881 1718192735000000000 ee95b20aee7a41535cf57e3b07b4c97f 1 
compiler_rt/round.zig
-6436 537790884 1718192735000000000 305ff4060037f1f8384936a92e1baedd 1 
compiler_rt/sin.zig
-8398 537790885 1718192735000000000 9d65c74a0d44effad2eee7b435bf5469 1 
compiler_rt/sincos.zig
-8197 537790886 1718192735000000000 e8a23eecf831c132498d27b4931f1a11 1 
compiler_rt/sqrt.zig
-5828 537790898 1718192735000000000 af6243809b71538076b971775431f065 1 
compiler_rt/tan.zig
-4400 537790900 1718192735000000000 1b8d03373606393e95f2171de33a5b2f 1 
compiler_rt/trunc.zig
-5093 537788486 1718192735000000000 1b9319fe34a7bf346d783130efe60b81 1 
compiler_rt/udivmodei4.zig
-884 537788488 1718192735000000000 d5e53d72da25abcfc5d9f447a3cd2496 1 
compiler_rt/udivmodti4.zig
-2995 537790867 1718192735000000000 ef25ce44fe553f7eb335989cc7d33543 1 
compiler_rt/os_version_check.zig
-12539 537901832 1718192735000000000 3df8e8cf95b66fe93aa1689286de5667 1 
compiler_rt/emutls.zig
-10269 537920214 1718192735000000000 dfa310795e80b41b24e8f7200f069856 1 
compiler_rt/arm.zig
-2506 537920216 1718192735000000000 e0ba44fe9d7b49d71e0c5390c8408115 1 
compiler_rt/aulldiv.zig
-2561 537920217 1718192735000000000 97ccf47a3098b63ad266303fb76b7c9f 1 
compiler_rt/aullrem.zig
-6520 537925278 1718192735000000000 1337397824c2f737ccb85d749172134b 1 
compiler_rt/clear_cache.zig
-26382 537920215 1718192735000000000 9f9af142d0e4f51c7631224153bc5b79 1 
compiler_rt/atomics.zig
-8864 537790888 1718192735000000000 70ff3a1f9e85bb7358a760436f1c5bfa 1 
compiler_rt/stack_probe.zig
-663 537849901 1718192735000000000 6152528ca6ed34be93821052a06f36c3 1 
compiler_rt/memcpy.zig
-874 537849903 1718192735000000000 d68037e80950188b94fb25a83963d8a9 1 
compiler_rt/memset.zig
-641 537849902 1718192735000000000 7cc34bc84bae831533239c1442399184 1 
compiler_rt/memmove.zig
-930 537849900 1718192735000000000 f40979da69ce036848514cd8a3356a9a 1 
compiler_rt/memcmp.zig
-873 537920218 1718192735000000000 5842a7cab226662fb923a2b24c4d8efb 1 
compiler_rt/bcmp.zig
-4514 537790887 1718192735000000000 4b14b12b23a363fd6a54ba3d3bfbab5d 1 
compiler_rt/ssp.zig
-10020 537920237 1718192735000000000 be2931b05cb4fe4b65d7adde233b984c 1 
compiler_rt/common.zig
-11091 34649019 1718192735000000000 3b4e837c9f6b3b4fbb5b3b95148e553c 1 
std/SemanticVersion.zig
-4262 537788484 1718192735000000000 b5aac82faa0f2cbd1cbc422f12f04db8 1 
compiler_rt/udivmod.zig
-7160 119471906 1718192735000000000 225a8c307f8f0832b31caae6a29cee36 1 
std/math/float.zig
-1435 34789777 1718192735000000000 48685c58555074b2d42fa7ed74dfba29 1 
std/math/isnan.zig
-1775 34789776 1718192735000000000 f3ba4db18fa456fb43b6bf6121ea0552 1 
std/math/isinf.zig
-1136 34788220 1718192735000000000 4a4733820846799d6b3e891e41c334ec 1 
std/math/copysign.zig
-5519 34789774 1718192735000000000 0facec314958f25e991dfdd64a09fc12 1 
std/math/ilogb.zig
-503 34877945 1718192735000000000 66d1263715127908b281862dba5dc24b 1 
std/math/scalbn.zig
-6839 34789782 1718192735000000000 a667fbc268d441df776f89454b524402 1 
std/math/ldexp.zig
-1083 34789775 1718192735000000000 366246fae7209b6f024bfb6827a7a361 1 
std/math/isfinite.zig
-176912 119471908 1718192735000000000 223e2fd0f89a74fd7d5132dbe48f1c2c 1 
std/mem.zig
-11744 537790899 1718192735000000000 ad2b34903e1ef28c1774d5d97303bd50 1 
compiler_rt/trig.zig
-2247 537790880 1718192735000000000 2337e183931c970621500018ffe636df 1 
compiler_rt/rem_pio2f.zig
-6045 537790878 1718192735000000000 18b634df64d66eb7c240db46b32eea60 1 
compiler_rt/rem_pio2.zig
-7877 34789770 1718192735000000000 99ff8c90d64e335b8787d201259a076c 1 
std/math/frexp.zig
-20535 537790879 1718192735000000000 b2a257008fb83056943e645889c5a503 1 
compiler_rt/rem_pio2_large.zig
Binary files old/vendor/o/338d5a991698b8a38948ba833147533e/libc.a and 
new/vendor/o/338d5a991698b8a38948ba833147533e/libc.a differ
Binary files old/vendor/o/338d5a991698b8a38948ba833147533e/libc.a.o and 
new/vendor/o/338d5a991698b8a38948ba833147533e/libc.a.o differ
Binary files old/vendor/o/9d2dcbe16ce3f2b20790b750c6332496/libcompiler_rt.a and 
new/vendor/o/9d2dcbe16ce3f2b20790b750c6332496/libcompiler_rt.a differ
Binary files old/vendor/o/9d2dcbe16ce3f2b20790b750c6332496/libcompiler_rt.a.o 
and new/vendor/o/9d2dcbe16ce3f2b20790b750c6332496/libcompiler_rt.a.o differ
Binary files old/vendor/o/a0461b1237f9b4ca0bd9a053402c805d/libcompiler_rt.a and 
new/vendor/o/a0461b1237f9b4ca0bd9a053402c805d/libcompiler_rt.a differ
Binary files old/vendor/o/a0461b1237f9b4ca0bd9a053402c805d/libcompiler_rt.a.o 
and new/vendor/o/a0461b1237f9b4ca0bd9a053402c805d/libcompiler_rt.a.o differ
Binary files old/vendor/o/a73f8ec78a7fff34ea01bfd792fa8169/libcompiler_rt.a and 
new/vendor/o/a73f8ec78a7fff34ea01bfd792fa8169/libcompiler_rt.a differ
Binary files old/vendor/o/a73f8ec78a7fff34ea01bfd792fa8169/libcompiler_rt.a.o 
and new/vendor/o/a73f8ec78a7fff34ea01bfd792fa8169/libcompiler_rt.a.o differ
Binary files old/vendor/o/d37a0aeb104b6339a649bd0d6e500573/libc.a and 
new/vendor/o/d37a0aeb104b6339a649bd0d6e500573/libc.a differ
Binary files old/vendor/o/d37a0aeb104b6339a649bd0d6e500573/libc.a.o and 
new/vendor/o/d37a0aeb104b6339a649bd0d6e500573/libc.a.o differ

++++++ waylock-1.2.0.tar.gz -> waylock-1.3.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/waylock-1.2.0/.builds/alpine.yml 
new/waylock-1.3.0/.builds/alpine.yml
--- old/waylock-1.2.0/.builds/alpine.yml        2024-06-07 13:42:17.000000000 
+0200
+++ new/waylock-1.3.0/.builds/alpine.yml        2024-10-22 18:24:50.000000000 
+0200
@@ -13,8 +13,9 @@
   - https://codeberg.org/ifreund/waylock
 tasks:
   - install_deps: |
-      wget -nv 
https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz
-      tar -xvf zig-linux-x86_64-0.13.0.tar.xz 1>/dev/null
+      # Eat Github's resources rather than the Zig Software Foundation's 
resources!
+      wget -nv 
https://github.com/ifreund/zig-tarball-mirror/releases/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz
+      tar xf zig-linux-x86_64-0.13.0.tar.xz
       sudo mv zig-linux-x86_64-0.13.0/zig /usr/bin/
       sudo mv zig-linux-x86_64-0.13.0/lib /usr/lib/zig
   - build: |
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/waylock-1.2.0/.builds/archlinux.yml 
new/waylock-1.3.0/.builds/archlinux.yml
--- old/waylock-1.2.0/.builds/archlinux.yml     2024-06-07 13:42:17.000000000 
+0200
+++ new/waylock-1.3.0/.builds/archlinux.yml     2024-10-22 18:24:50.000000000 
+0200
@@ -13,8 +13,9 @@
   - https://codeberg.org/ifreund/waylock
 tasks:
   - install_deps: |
-      wget -nv 
https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz
-      tar -xvf zig-linux-x86_64-0.13.0.tar.xz 1>/dev/null
+      # Eat Github's resources rather than the Zig Software Foundation's 
resources!
+      wget -nv 
https://github.com/ifreund/zig-tarball-mirror/releases/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz
+      tar xf zig-linux-x86_64-0.13.0.tar.xz
       sudo mv zig-linux-x86_64-0.13.0/zig /usr/bin/
       sudo mv zig-linux-x86_64-0.13.0/lib /usr/lib/zig
   - build: |
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/waylock-1.2.0/.builds/freebsd.yml 
new/waylock-1.3.0/.builds/freebsd.yml
--- old/waylock-1.2.0/.builds/freebsd.yml       1970-01-01 01:00:00.000000000 
+0100
+++ new/waylock-1.3.0/.builds/freebsd.yml       2024-10-22 18:24:50.000000000 
+0200
@@ -0,0 +1,25 @@
+image: freebsd/latest
+packages:
+  - devel/pkgconf
+  - graphics/wayland
+  - graphics/wayland-protocols
+  - scdoc
+  - security/ca_root_nss
+  - wget
+  - x11/libxkbcommon
+sources:
+  - https://codeberg.org/ifreund/waylock
+tasks:
+  - install_deps: |
+      # Eat Github's resources rather than the Zig Software Foundation's 
resources!
+      wget -nv 
https://github.com/ifreund/zig-tarball-mirror/releases/download/0.13.0/zig-freebsd-x86_64-0.13.0.tar.xz
+      tar xf zig-freebsd-x86_64-0.13.0.tar.xz
+      sudo mv zig-freebsd-x86_64-0.13.0/zig /usr/bin/
+      sudo mv zig-freebsd-x86_64-0.13.0/lib /usr/lib/zig
+  - build: |
+      cd waylock
+      zig build -Dman-pages
+  - fmt: |
+      cd waylock
+      zig fmt --check build.zig
+      zig fmt --check src/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/waylock-1.2.0/build.zig new/waylock-1.3.0/build.zig
--- old/waylock-1.2.0/build.zig 2024-06-07 13:42:17.000000000 +0200
+++ new/waylock-1.3.0/build.zig 2024-10-22 18:24:50.000000000 +0200
@@ -10,7 +10,7 @@
 /// development with the "-dev" suffix.
 /// When a release is tagged, the "-dev" suffix should be removed for the 
commit that gets tagged.
 /// Directly after the tagged commit, the version should be bumped and the 
"-dev" suffix added.
-const version = "1.2.0";
+const version = "1.3.0";
 
 pub fn build(b: *Build) !void {
     const target = b.standardTargetOptions(.{});
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/waylock-1.2.0/build.zig.zon 
new/waylock-1.3.0/build.zig.zon
--- old/waylock-1.2.0/build.zig.zon     2024-06-07 13:42:17.000000000 +0200
+++ new/waylock-1.3.0/build.zig.zon     2024-10-22 18:24:50.000000000 +0200
@@ -1,6 +1,6 @@
 .{
     .name = "waylock",
-    .version = "1.2.0",
+    .version = "1.3.0",
     .paths = .{""},
     .dependencies = .{
         .@"zig-wayland" = .{
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/waylock-1.2.0/doc/waylock.1.scd 
new/waylock-1.3.0/doc/waylock.1.scd
--- old/waylock-1.2.0/doc/waylock.1.scd 2024-06-07 13:42:17.000000000 +0200
+++ new/waylock-1.3.0/doc/waylock.1.scd 2024-10-22 18:24:50.000000000 +0200
@@ -51,6 +51,10 @@
 *-input-color* _0xRRGGBB_
        Set the color used after input. (default: 0x6c71c4)
 
+*-input-alt-color* _0xRRGGBB_
+       Set the alternate color used after input. (default is what
+       *-input-color* is set to)
+
 *-fail-color* _0xRRGGBB_
        Set the color used on authentication failure. (default: 0xdc322f)
 
@@ -58,8 +62,9 @@
 
 Run the waylock executable to lock the session. All monitors will be blanked
 with the *-init-color*. Typing causes the color to change to the
-*-input-color*. Esc or Ctrl-U clears all current input, while backspace
-deletes the last UTF-8 codepoint.
+*-input-color*. If *-input-alt-color* is set, the typing color will alternate
+between this and the former. Esc or Ctrl-U clears all current input, while
+backspace deletes the last UTF-8 codepoint.
 
 To unlock the session, type your password and press Enter. If the password
 is correct, waylock will unlock the session and exit. Otherwise, the color
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/waylock-1.2.0/src/Lock.zig 
new/waylock-1.3.0/src/Lock.zig
--- old/waylock-1.2.0/src/Lock.zig      2024-06-07 13:42:17.000000000 +0200
+++ new/waylock-1.3.0/src/Lock.zig      2024-10-22 18:24:50.000000000 +0200
@@ -25,6 +25,7 @@
 pub const Color = enum {
     init,
     input,
+    input_alt,
     fail,
 };
 
@@ -34,12 +35,14 @@
     ignore_empty_password: bool,
     init_color: u24 = 0x002b36,
     input_color: u24 = 0x6c71c4,
+    input_alt_color: u24 = 0x6c71c4,
     fail_color: u24 = 0xdc322f,
 
     fn rgb(options: Options, color: Color) u24 {
         return switch (color) {
             .init => options.init_color,
             .input => options.input_color,
+            .input_alt => options.input_alt_color,
             .fail => options.fail_color,
         };
     }
@@ -72,7 +75,7 @@
 session_lock: ?*ext.SessionLockV1 = null,
 viewporter: ?*wp.Viewporter = null,
 buffer_manager: ?*wp.SinglePixelBufferManagerV1 = null,
-buffers: [3]*wl.Buffer,
+buffers: [4]*wl.Buffer,
 
 seats: std.SinglyLinkedList(Seat) = .{},
 outputs: std.SinglyLinkedList(Output) = .{},
@@ -440,9 +443,9 @@
 fn create_buffers(
     buffer_manager: *wp.SinglePixelBufferManagerV1,
     options: Options,
-) error{OutOfMemory}![3]*wl.Buffer {
-    var buffers: [3]*wl.Buffer = undefined;
-    for ([_]Color{ .init, .input, .fail }) |color| {
+) error{OutOfMemory}![4]*wl.Buffer {
+    var buffers: [4]*wl.Buffer = undefined;
+    for ([_]Color{ .init, .input, .input_alt, .fail }) |color| {
         const rgb = options.rgb(color);
         buffers[@intFromEnum(color)] = try buffer_manager.createU32RgbaBuffer(
             @as(u32, (rgb >> 16) & 0xff) * (0xffff_ffff / 0xff),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/waylock-1.2.0/src/Output.zig 
new/waylock-1.3.0/src/Output.zig
--- old/waylock-1.2.0/src/Output.zig    2024-06-07 13:42:17.000000000 +0200
+++ new/waylock-1.3.0/src/Output.zig    2024-10-22 18:24:50.000000000 +0200
@@ -22,6 +22,7 @@
 viewport: ?*wp.Viewport = null,
 lock_surface: ?*ext.SessionLockSurfaceV1 = null,
 
+configured: bool = false,
 // These fields are not used before the first configure is received.
 width: u31 = undefined,
 height: u31 = undefined,
@@ -56,6 +57,7 @@
     const lock = output.lock;
     switch (event) {
         .configure => |ev| {
+            output.configured = true;
             output.width = @min(std.math.maxInt(u31), ev.width);
             output.height = @min(std.math.maxInt(u31), ev.height);
             output.lock_surface.?.ackConfigure(ev.serial);
@@ -65,6 +67,7 @@
 }
 
 pub fn attach_buffer(output: *Output, buffer: *wl.Buffer) void {
+    if (!output.configured) return;
     output.surface.?.attach(buffer, 0, 0);
     output.surface.?.damageBuffer(0, 0, math.maxInt(i32), math.maxInt(i32));
     output.viewport.?.setDestination(output.width, output.height);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/waylock-1.2.0/src/Seat.zig 
new/waylock-1.3.0/src/Seat.zig
--- old/waylock-1.2.0/src/Seat.zig      2024-06-07 13:42:17.000000000 +0200
+++ new/waylock-1.3.0/src/Seat.zig      2024-10-22 18:24:50.000000000 +0200
@@ -198,7 +198,10 @@
             // If key was not handled, write to password buffer
             const delta = xkb_state.keyGetUtf8(keycode, 
lock.password.unused_slice());
             if (delta > 0) {
-                lock.set_color(.input);
+                switch (lock.color) {
+                    .init, .input_alt, .fail => lock.set_color(.input),
+                    .input => lock.set_color(.input_alt),
+                }
             }
             lock.password.grow(delta) catch log.err("password exceeds 1024 
byte limit", .{});
         },
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/waylock-1.2.0/src/main.zig 
new/waylock-1.3.0/src/main.zig
--- old/waylock-1.2.0/src/main.zig      2024-06-07 13:42:17.000000000 +0200
+++ new/waylock-1.3.0/src/main.zig      2024-10-22 18:24:50.000000000 +0200
@@ -14,17 +14,18 @@
 const usage =
     \\usage: waylock [options]
     \\
-    \\  -h                      Print this help message and exit.
-    \\  -version                Print the version number and exit.
-    \\  -log-level <level>      Set the log level to error, warning, info, or 
debug.
+    \\  -h                         Print this help message and exit.
+    \\  -version                   Print the version number and exit.
+    \\  -log-level <level>         Set the log level to error, warning, info, 
or debug.
     \\
-    \\  -fork-on-lock           Fork to the background after locking.
-    \\  -ready-fd <fd>          Write a newline to fd after locking.
-    \\  -ignore-empty-password  Do not validate an empty password.
+    \\  -fork-on-lock              Fork to the background after locking.
+    \\  -ready-fd <fd>             Write a newline to fd after locking.
+    \\  -ignore-empty-password     Do not validate an empty password.
     \\
-    \\  -init-color 0xRRGGBB    Set the initial color.
-    \\  -input-color 0xRRGGBB   Set the color used after input.
-    \\  -fail-color 0xRRGGBB    Set the color used on authentication failure.
+    \\  -init-color 0xRRGGBB       Set the initial color.
+    \\  -input-color 0xRRGGBB      Set the color used after input.
+    \\  -input-alt-color 0xRRGGBB  Set the alternate color used after input.
+    \\  -fail-color 0xRRGGBB       Set the color used on authentication 
failure.
     \\
 ;
 
@@ -38,6 +39,7 @@
         .{ .name = "ignore-empty-password", .kind = .boolean },
         .{ .name = "init-color", .kind = .arg },
         .{ .name = "input-color", .kind = .arg },
+        .{ .name = "input-alt-color", .kind = .arg },
         .{ .name = "fail-color", .kind = .arg },
     }).parse(std.os.argv[1..]) catch {
         io.getStdErr().writeAll(usage) catch {};
@@ -83,7 +85,11 @@
         };
     }
     if (result.flags.@"init-color") |raw| options.init_color = 
parse_color(raw);
-    if (result.flags.@"input-color") |raw| options.input_color = 
parse_color(raw);
+    if (result.flags.@"input-color") |raw| {
+        options.input_color = parse_color(raw);
+        options.input_alt_color = parse_color(raw);
+    }
+    if (result.flags.@"input-alt-color") |raw| options.input_alt_color = 
parse_color(raw);
     if (result.flags.@"fail-color") |raw| options.fail_color = 
parse_color(raw);
 
     Lock.run(options);

Reply via email to