git: 6c9e57ebd6cc - main - astro/mepo: update to 1.1.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 02 Feb 2023 07:51:56 UTC
The branch main has been updated by jbeich:
URL: https://cgit.FreeBSD.org/ports/commit/?id=6c9e57ebd6cc6606ae5c5c2204b59560968ba380
commit 6c9e57ebd6cc6606ae5c5c2204b59560968ba380
Author: Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2023-02-01 03:43:08 +0000
Commit: Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2023-02-02 07:51:53 +0000
astro/mepo: update to 1.1.2
Changes: https://git.sr.ht/~mil/mepo/refs/1.1.2
Reported by: Repology
---
astro/mepo/Makefile | 3 +--
astro/mepo/distinfo | 6 +++---
astro/mepo/files/patch-zig-0.10.1 | 15 ---------------
3 files changed, 4 insertions(+), 20 deletions(-)
diff --git a/astro/mepo/Makefile b/astro/mepo/Makefile
index e273a2e96d36..20c36e8a0501 100644
--- a/astro/mepo/Makefile
+++ b/astro/mepo/Makefile
@@ -1,6 +1,5 @@
PORTNAME= mepo
-DISTVERSION= 1.1.1
-PORTREVISION= 2
+DISTVERSION= 1.1.2
CATEGORIES= astro geography wayland
MASTER_SITES= https://git.sr.ht/~mil/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/
diff --git a/astro/mepo/distinfo b/astro/mepo/distinfo
index 2d1b7022a0ab..7ddbdd7214d6 100644
--- a/astro/mepo/distinfo
+++ b/astro/mepo/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1668703139
-SHA256 (mepo-1.1.1.tar.gz) = 9a678af575c5231da15f26ebb6ba72a3ccde729128cc3783389d1a5260d8d914
-SIZE (mepo-1.1.1.tar.gz) = 590345
+TIMESTAMP = 1675222988
+SHA256 (mepo-1.1.2.tar.gz) = d2dd93988fc75964715051720cbc30b6c2b8646812b508fa4e25495fbe33b284
+SIZE (mepo-1.1.2.tar.gz) = 590350
diff --git a/astro/mepo/files/patch-zig-0.10.1 b/astro/mepo/files/patch-zig-0.10.1
deleted file mode 100644
index 9aaa10bd3cf1..000000000000
--- a/astro/mepo/files/patch-zig-0.10.1
+++ /dev/null
@@ -1,15 +0,0 @@
-Allow newer often compatible Zig patch-level updates
-
---- src/main.zig.orig 2022-11-17 16:38:59 UTC
-+++ src/main.zig
-@@ -11,8 +11,8 @@ pub fn main() !void {
- pub fn main() !void {
- comptime {
- const v = builtin.zig_version;
-- if (v.major != 0 or v.minor != 10 or v.patch != 0)
-- @panic("Must be built against Zig 0.10.0");
-+ if (v.major != 0 or v.minor != 10)
-+ @panic("Must be built against Zig 0.10");
- }
-
- const allocator = std.heap.c_allocator;