* [PR PATCH] New package: mepo-1.2.1.
@ 2024-07-28 22:14 jason1987d
2024-07-28 22:19 ` [PR REVIEW] " classabbyamp
` (17 more replies)
0 siblings, 18 replies; 19+ messages in thread
From: jason1987d @ 2024-07-28 22:14 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 651 bytes --]
There is a new pull request by jason1987d against master on the void-packages repository
https://github.com/jason1987d/void-packages mepo
https://github.com/void-linux/void-packages/pull/51521
New package: mepo-1.2.1.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-libc
A patch file from https://github.com/void-linux/void-packages/pull/51521.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mepo-51521.patch --]
[-- Type: text/x-diff, Size: 7914 bytes --]
From 7fb5baf1821e853a18cd6d4bda38fd02fa03bc6b Mon Sep 17 00:00:00 2001
From: Jason Elswick <jason@jasondavid.us>
Date: Sun, 28 Jul 2024 13:41:04 -0500
Subject: [PATCH] New package: mepo-1.2.1.
---
.../0001-zig-0.13-use-std.Build.path.patch | 40 +++++++++++++++++++
.../0002-zig-0.13-require-zig-0.13-now.patch | 24 +++++++++++
...3-std.ChildProcess-std.process.Child.patch | 36 +++++++++++++++++
...o-new-Dir.writeFile-API-aka-Dir.writ.patch | 22 ++++++++++
srcpkgs/mepo/template | 15 +++++++
5 files changed, 137 insertions(+)
create mode 100644 srcpkgs/mepo/patches/0001-zig-0.13-use-std.Build.path.patch
create mode 100644 srcpkgs/mepo/patches/0002-zig-0.13-require-zig-0.13-now.patch
create mode 100644 srcpkgs/mepo/patches/0003-zig-0.13-std.ChildProcess-std.process.Child.patch
create mode 100644 srcpkgs/mepo/patches/0004-zig-0.13-adapt-to-new-Dir.writeFile-API-aka-Dir.writ.patch
create mode 100644 srcpkgs/mepo/template
diff --git a/srcpkgs/mepo/patches/0001-zig-0.13-use-std.Build.path.patch b/srcpkgs/mepo/patches/0001-zig-0.13-use-std.Build.path.patch
new file mode 100644
index 00000000000000..f5581ab62793d4
--- /dev/null
+++ b/srcpkgs/mepo/patches/0001-zig-0.13-use-std.Build.path.patch
@@ -0,0 +1,40 @@
+From a5fb84751db02c4f913199fd28bce3751a9bc485 Mon Sep 17 00:00:00 2001
+From: "lauren n. liberda" <lauren@selfisekai.rocks>
+Date: Sat, 8 Jun 2024 02:38:48 +0200
+Subject: [PATCH] zig 0.13: use std.Build.path
+
+---
+ build.zig | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/build.zig b/build.zig
+index a61082e..923eca5 100644
+--- a/build.zig
++++ b/build.zig
+@@ -11,7 +11,7 @@ fn setDependencies(step: *std.Build.Step.Compile) void {
+
+ pub fn build(b: *std.Build) void {
+ b.installDirectory(.{
+- .source_dir = .{ .path = "scripts" },
++ .source_dir = b.path("scripts"),
+ .install_dir = .{ .bin = {} },
+ .install_subdir = "",
+ });
+@@ -24,7 +24,7 @@ pub fn build(b: *std.Build) void {
+ const optimize = b.standardOptimizeOption(.{});
+ const exe = b.addExecutable(.{
+ .name = "mepo",
+- .root_source_file = .{ .path = "src/main.zig" },
++ .root_source_file = b.path("src/main.zig"),
+ .target = target,
+ .optimize = optimize,
+ });
+@@ -42,7 +42,7 @@ pub fn build(b: *std.Build) void {
+
+ // Setup test
+ const tests = b.addTest(.{
+- .root_source_file = .{ .path = "./src/test.zig" },
++ .root_source_file = b.path("./src/test.zig"),
+ .target = target,
+ .optimize = optimize,
+ });
diff --git a/srcpkgs/mepo/patches/0002-zig-0.13-require-zig-0.13-now.patch b/srcpkgs/mepo/patches/0002-zig-0.13-require-zig-0.13-now.patch
new file mode 100644
index 00000000000000..2ec9198a25a20f
--- /dev/null
+++ b/srcpkgs/mepo/patches/0002-zig-0.13-require-zig-0.13-now.patch
@@ -0,0 +1,24 @@
+From aa43f762540d25acbdfbd218e5efde4c20851ce1 Mon Sep 17 00:00:00 2001
+From: "lauren n. liberda" <lauren@selfisekai.rocks>
+Date: Sat, 8 Jun 2024 02:39:04 +0200
+Subject: [PATCH] zig 0.13: require zig 0.13 now
+
+---
+ src/main.zig | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/main.zig b/src/main.zig
+index b477ad7..6ba77e2 100644
+--- a/src/main.zig
++++ b/src/main.zig
+@@ -12,8 +12,8 @@ const utildbg = @import("./util/utildbg.zig");
+ pub fn main() !void {
+ comptime {
+ const v = builtin.zig_version;
+- if (v.major != 0 or v.minor != 12)
+- @panic("Must be built against Zig 0.12.x");
++ if (v.major != 0 or v.minor != 13)
++ @panic("Must be built against Zig 0.13.x");
+ }
+
+ const allocator = std.heap.c_allocator;
diff --git a/srcpkgs/mepo/patches/0003-zig-0.13-std.ChildProcess-std.process.Child.patch b/srcpkgs/mepo/patches/0003-zig-0.13-std.ChildProcess-std.process.Child.patch
new file mode 100644
index 00000000000000..cf83435622a3b6
--- /dev/null
+++ b/srcpkgs/mepo/patches/0003-zig-0.13-std.ChildProcess-std.process.Child.patch
@@ -0,0 +1,36 @@
+From 65113031c6b0ce63e46f8fba43df268a32a1bb65 Mon Sep 17 00:00:00 2001
+From: "lauren n. liberda" <lauren@selfisekai.rocks>
+Date: Sat, 8 Jun 2024 02:40:54 +0200
+Subject: [PATCH] zig 0.13: std.ChildProcess -> std.process.Child
+
+---
+ src/api/shellpipe_async.zig | 2 +-
+ src/api/shellpipe_sync.zig | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/api/shellpipe_async.zig b/src/api/shellpipe_async.zig
+index 9ebcfbf..e0f722e 100644
+--- a/src/api/shellpipe_async.zig
++++ b/src/api/shellpipe_async.zig
+@@ -60,7 +60,7 @@ fn async_shellpipe_run_catch_errors(mepo: *Mepo, unique_handle_id: i8, cmd: []co
+ const max_output_bytes: usize = 50 * 1024;
+ var arena = std.heap.ArenaAllocator.init(mepo.allocator);
+ defer arena.deinit();
+- var child = std.ChildProcess.init(argv[0..], arena.allocator());
++ var child = std.process.Child.init(argv[0..], arena.allocator());
+ child.stdin_behavior = .Ignore;
+ child.stdout_behavior = .Pipe;
+ const env = try get_env_vars(mepo, mepo.allocator);
+diff --git a/src/api/shellpipe_sync.zig b/src/api/shellpipe_sync.zig
+index 133b8c7..d0f6186 100644
+--- a/src/api/shellpipe_sync.zig
++++ b/src/api/shellpipe_sync.zig
+@@ -32,7 +32,7 @@ fn shellpipe_sync(mepo: *Mepo, cmd: []const u8) !void {
+ try mepo.blit();
+ const env_vars = try get_env_vars(mepo, arena.allocator());
+ const args = [_][]const u8{ "sh", "-c", cmd };
+- const process_result = try std.ChildProcess.run(.{
++ const process_result = try std.process.Child.run(.{
+ .allocator = arena.allocator(),
+ .argv = args[0..],
+ .env_map = &env_vars,
diff --git a/srcpkgs/mepo/patches/0004-zig-0.13-adapt-to-new-Dir.writeFile-API-aka-Dir.writ.patch b/srcpkgs/mepo/patches/0004-zig-0.13-adapt-to-new-Dir.writeFile-API-aka-Dir.writ.patch
new file mode 100644
index 00000000000000..8cec65a94330c9
--- /dev/null
+++ b/srcpkgs/mepo/patches/0004-zig-0.13-adapt-to-new-Dir.writeFile-API-aka-Dir.writ.patch
@@ -0,0 +1,22 @@
+From e370ef83141ac5caa41b65c665e86233020ff125 Mon Sep 17 00:00:00 2001
+From: "lauren n. liberda" <lauren@selfisekai.rocks>
+Date: Sat, 8 Jun 2024 02:51:12 +0200
+Subject: [PATCH] zig 0.13: adapt to new Dir.writeFile API (aka Dir.writeFile2)
+
+---
+ src/TileCache.zig | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/TileCache.zig b/src/TileCache.zig
+index 0b1fa63..17e662c 100644
+--- a/src/TileCache.zig
++++ b/src/TileCache.zig
+@@ -425,7 +425,7 @@ fn download_loop_transfer_complete(tile_cache: *@This(), msg: *curl.CURLMsg) !vo
+ // Save to FS
+ if (is_valid_png_data) {
+ const path = try png_path(tile_cache.allocator, p.get(p.pref.tile_cache_url).t.?, coords);
+- try cache_dir.writeFile(path, datum_array);
++ try cache_dir.writeFile(.{ .sub_path = path, .data = datum_array });
+ }
+ }
+ if (tile_cache.transfer_map.get(coords).?.load_to_texture) {
diff --git a/srcpkgs/mepo/template b/srcpkgs/mepo/template
new file mode 100644
index 00000000000000..8a27440f4b4d09
--- /dev/null
+++ b/srcpkgs/mepo/template
@@ -0,0 +1,15 @@
+# Template file for 'mepo'
+pkgname=mepo
+version=1.2.1
+revision=1
+build_style=zig-build
+hostmakedepends="SDL2_image-devel SDL2_gfx-devel SDL2_ttf-devel SDL2-devel libcurl-devel glibc-devel"
+#depends="${hostmakedepends} zig"
+depends="zig"
+short_desc="OSM map viewer for Linux - designed with mobile linux in mind"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="GPL-3.0-or-later"
+homepage="https://git.sr.ht/~mil/mepo"
+distfiles="https://git.sr.ht/~mil/mepo/archive/${version}.tar.gz"
+checksum=5032afa245398c90bbd608bea377814c5b6176741af05c880b31dc8908aebcbf
+nopie=yes
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR REVIEW] New package: mepo-1.2.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
2024-07-28 22:19 ` [PR REVIEW] " classabbyamp
@ 2024-07-28 22:19 ` classabbyamp
2024-07-28 22:19 ` classabbyamp
` (15 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: classabbyamp @ 2024-07-28 22:19 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 174 bytes --]
New review comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/51521#discussion_r1694347307
Comment:
should be makedepends
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR REVIEW] New package: mepo-1.2.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
@ 2024-07-28 22:19 ` classabbyamp
2024-07-28 22:19 ` classabbyamp
` (16 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: classabbyamp @ 2024-07-28 22:19 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 242 bytes --]
New review comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/51521#discussion_r1694347128
Comment:
```suggestion
short_desc="Fast, simple, and hackable OSM map viewer"
```
from upstream
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR REVIEW] New package: mepo-1.2.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
2024-07-28 22:19 ` [PR REVIEW] " classabbyamp
2024-07-28 22:19 ` classabbyamp
@ 2024-07-28 22:19 ` classabbyamp
2024-07-28 23:00 ` [PR PATCH] [Updated] " jason1987d
` (14 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: classabbyamp @ 2024-07-28 22:19 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 163 bytes --]
New review comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/51521#discussion_r1694347314
Comment:
rm comment
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR PATCH] [Updated] New package: mepo-1.2.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (2 preceding siblings ...)
2024-07-28 22:19 ` classabbyamp
@ 2024-07-28 23:00 ` jason1987d
2024-08-11 16:20 ` jason1987d
` (13 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: jason1987d @ 2024-07-28 23:00 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 656 bytes --]
There is an updated pull request by jason1987d against master on the void-packages repository
https://github.com/jason1987d/void-packages mepo
https://github.com/void-linux/void-packages/pull/51521
New package: mepo-1.2.1.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-libc
A patch file from https://github.com/void-linux/void-packages/pull/51521.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mepo-51521.patch --]
[-- Type: text/x-diff, Size: 7859 bytes --]
From f1f4be55992c426265d1414b93d9b0cb9a9eba5b Mon Sep 17 00:00:00 2001
From: Jason Elswick <jason@jasondavid.us>
Date: Sun, 28 Jul 2024 13:41:04 -0500
Subject: [PATCH] New package: mepo-1.2.1.
---
.../0001-zig-0.13-use-std.Build.path.patch | 40 +++++++++++++++++++
.../0002-zig-0.13-require-zig-0.13-now.patch | 24 +++++++++++
...3-std.ChildProcess-std.process.Child.patch | 36 +++++++++++++++++
...o-new-Dir.writeFile-API-aka-Dir.writ.patch | 22 ++++++++++
srcpkgs/mepo/template | 14 +++++++
5 files changed, 136 insertions(+)
create mode 100644 srcpkgs/mepo/patches/0001-zig-0.13-use-std.Build.path.patch
create mode 100644 srcpkgs/mepo/patches/0002-zig-0.13-require-zig-0.13-now.patch
create mode 100644 srcpkgs/mepo/patches/0003-zig-0.13-std.ChildProcess-std.process.Child.patch
create mode 100644 srcpkgs/mepo/patches/0004-zig-0.13-adapt-to-new-Dir.writeFile-API-aka-Dir.writ.patch
create mode 100644 srcpkgs/mepo/template
diff --git a/srcpkgs/mepo/patches/0001-zig-0.13-use-std.Build.path.patch b/srcpkgs/mepo/patches/0001-zig-0.13-use-std.Build.path.patch
new file mode 100644
index 00000000000000..f5581ab62793d4
--- /dev/null
+++ b/srcpkgs/mepo/patches/0001-zig-0.13-use-std.Build.path.patch
@@ -0,0 +1,40 @@
+From a5fb84751db02c4f913199fd28bce3751a9bc485 Mon Sep 17 00:00:00 2001
+From: "lauren n. liberda" <lauren@selfisekai.rocks>
+Date: Sat, 8 Jun 2024 02:38:48 +0200
+Subject: [PATCH] zig 0.13: use std.Build.path
+
+---
+ build.zig | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/build.zig b/build.zig
+index a61082e..923eca5 100644
+--- a/build.zig
++++ b/build.zig
+@@ -11,7 +11,7 @@ fn setDependencies(step: *std.Build.Step.Compile) void {
+
+ pub fn build(b: *std.Build) void {
+ b.installDirectory(.{
+- .source_dir = .{ .path = "scripts" },
++ .source_dir = b.path("scripts"),
+ .install_dir = .{ .bin = {} },
+ .install_subdir = "",
+ });
+@@ -24,7 +24,7 @@ pub fn build(b: *std.Build) void {
+ const optimize = b.standardOptimizeOption(.{});
+ const exe = b.addExecutable(.{
+ .name = "mepo",
+- .root_source_file = .{ .path = "src/main.zig" },
++ .root_source_file = b.path("src/main.zig"),
+ .target = target,
+ .optimize = optimize,
+ });
+@@ -42,7 +42,7 @@ pub fn build(b: *std.Build) void {
+
+ // Setup test
+ const tests = b.addTest(.{
+- .root_source_file = .{ .path = "./src/test.zig" },
++ .root_source_file = b.path("./src/test.zig"),
+ .target = target,
+ .optimize = optimize,
+ });
diff --git a/srcpkgs/mepo/patches/0002-zig-0.13-require-zig-0.13-now.patch b/srcpkgs/mepo/patches/0002-zig-0.13-require-zig-0.13-now.patch
new file mode 100644
index 00000000000000..2ec9198a25a20f
--- /dev/null
+++ b/srcpkgs/mepo/patches/0002-zig-0.13-require-zig-0.13-now.patch
@@ -0,0 +1,24 @@
+From aa43f762540d25acbdfbd218e5efde4c20851ce1 Mon Sep 17 00:00:00 2001
+From: "lauren n. liberda" <lauren@selfisekai.rocks>
+Date: Sat, 8 Jun 2024 02:39:04 +0200
+Subject: [PATCH] zig 0.13: require zig 0.13 now
+
+---
+ src/main.zig | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/main.zig b/src/main.zig
+index b477ad7..6ba77e2 100644
+--- a/src/main.zig
++++ b/src/main.zig
+@@ -12,8 +12,8 @@ const utildbg = @import("./util/utildbg.zig");
+ pub fn main() !void {
+ comptime {
+ const v = builtin.zig_version;
+- if (v.major != 0 or v.minor != 12)
+- @panic("Must be built against Zig 0.12.x");
++ if (v.major != 0 or v.minor != 13)
++ @panic("Must be built against Zig 0.13.x");
+ }
+
+ const allocator = std.heap.c_allocator;
diff --git a/srcpkgs/mepo/patches/0003-zig-0.13-std.ChildProcess-std.process.Child.patch b/srcpkgs/mepo/patches/0003-zig-0.13-std.ChildProcess-std.process.Child.patch
new file mode 100644
index 00000000000000..cf83435622a3b6
--- /dev/null
+++ b/srcpkgs/mepo/patches/0003-zig-0.13-std.ChildProcess-std.process.Child.patch
@@ -0,0 +1,36 @@
+From 65113031c6b0ce63e46f8fba43df268a32a1bb65 Mon Sep 17 00:00:00 2001
+From: "lauren n. liberda" <lauren@selfisekai.rocks>
+Date: Sat, 8 Jun 2024 02:40:54 +0200
+Subject: [PATCH] zig 0.13: std.ChildProcess -> std.process.Child
+
+---
+ src/api/shellpipe_async.zig | 2 +-
+ src/api/shellpipe_sync.zig | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/api/shellpipe_async.zig b/src/api/shellpipe_async.zig
+index 9ebcfbf..e0f722e 100644
+--- a/src/api/shellpipe_async.zig
++++ b/src/api/shellpipe_async.zig
+@@ -60,7 +60,7 @@ fn async_shellpipe_run_catch_errors(mepo: *Mepo, unique_handle_id: i8, cmd: []co
+ const max_output_bytes: usize = 50 * 1024;
+ var arena = std.heap.ArenaAllocator.init(mepo.allocator);
+ defer arena.deinit();
+- var child = std.ChildProcess.init(argv[0..], arena.allocator());
++ var child = std.process.Child.init(argv[0..], arena.allocator());
+ child.stdin_behavior = .Ignore;
+ child.stdout_behavior = .Pipe;
+ const env = try get_env_vars(mepo, mepo.allocator);
+diff --git a/src/api/shellpipe_sync.zig b/src/api/shellpipe_sync.zig
+index 133b8c7..d0f6186 100644
+--- a/src/api/shellpipe_sync.zig
++++ b/src/api/shellpipe_sync.zig
+@@ -32,7 +32,7 @@ fn shellpipe_sync(mepo: *Mepo, cmd: []const u8) !void {
+ try mepo.blit();
+ const env_vars = try get_env_vars(mepo, arena.allocator());
+ const args = [_][]const u8{ "sh", "-c", cmd };
+- const process_result = try std.ChildProcess.run(.{
++ const process_result = try std.process.Child.run(.{
+ .allocator = arena.allocator(),
+ .argv = args[0..],
+ .env_map = &env_vars,
diff --git a/srcpkgs/mepo/patches/0004-zig-0.13-adapt-to-new-Dir.writeFile-API-aka-Dir.writ.patch b/srcpkgs/mepo/patches/0004-zig-0.13-adapt-to-new-Dir.writeFile-API-aka-Dir.writ.patch
new file mode 100644
index 00000000000000..8cec65a94330c9
--- /dev/null
+++ b/srcpkgs/mepo/patches/0004-zig-0.13-adapt-to-new-Dir.writeFile-API-aka-Dir.writ.patch
@@ -0,0 +1,22 @@
+From e370ef83141ac5caa41b65c665e86233020ff125 Mon Sep 17 00:00:00 2001
+From: "lauren n. liberda" <lauren@selfisekai.rocks>
+Date: Sat, 8 Jun 2024 02:51:12 +0200
+Subject: [PATCH] zig 0.13: adapt to new Dir.writeFile API (aka Dir.writeFile2)
+
+---
+ src/TileCache.zig | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/TileCache.zig b/src/TileCache.zig
+index 0b1fa63..17e662c 100644
+--- a/src/TileCache.zig
++++ b/src/TileCache.zig
+@@ -425,7 +425,7 @@ fn download_loop_transfer_complete(tile_cache: *@This(), msg: *curl.CURLMsg) !vo
+ // Save to FS
+ if (is_valid_png_data) {
+ const path = try png_path(tile_cache.allocator, p.get(p.pref.tile_cache_url).t.?, coords);
+- try cache_dir.writeFile(path, datum_array);
++ try cache_dir.writeFile(.{ .sub_path = path, .data = datum_array });
+ }
+ }
+ if (tile_cache.transfer_map.get(coords).?.load_to_texture) {
diff --git a/srcpkgs/mepo/template b/srcpkgs/mepo/template
new file mode 100644
index 00000000000000..16bf09b1cedc81
--- /dev/null
+++ b/srcpkgs/mepo/template
@@ -0,0 +1,14 @@
+# Template file for 'mepo'
+pkgname=mepo
+version=1.2.1
+revision=1
+build_style=zig-build
+hostmakedepends="SDL2_image-devel SDL2_gfx-devel SDL2_ttf-devel SDL2-devel libcurl-devel glibc-devel"
+depends="zig"
+short_desc="Fast, simple, and hackable OSM map viewer"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="GPL-3.0-or-later"
+homepage="https://git.sr.ht/~mil/mepo"
+distfiles="https://git.sr.ht/~mil/mepo/archive/${version}.tar.gz"
+checksum=5032afa245398c90bbd608bea377814c5b6176741af05c880b31dc8908aebcbf
+nopie=yes
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR PATCH] [Updated] New package: mepo-1.2.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (3 preceding siblings ...)
2024-07-28 23:00 ` [PR PATCH] [Updated] " jason1987d
@ 2024-08-11 16:20 ` jason1987d
2024-08-11 16:22 ` jason1987d
` (12 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: jason1987d @ 2024-08-11 16:20 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 656 bytes --]
There is an updated pull request by jason1987d against master on the void-packages repository
https://github.com/jason1987d/void-packages mepo
https://github.com/void-linux/void-packages/pull/51521
New package: mepo-1.2.1.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-libc
A patch file from https://github.com/void-linux/void-packages/pull/51521.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mepo-51521.patch --]
[-- Type: text/x-diff, Size: 1031 bytes --]
From 70d2d306421fdf255ba8b3075b649985665a34f9 Mon Sep 17 00:00:00 2001
From: Jason Elswick <jason@jasondavid.us>
Date: Sun, 28 Jul 2024 13:41:04 -0500
Subject: [PATCH] New package: mepo-1.3.1.
---
srcpkgs/mepo/template | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 srcpkgs/mepo/template
diff --git a/srcpkgs/mepo/template b/srcpkgs/mepo/template
new file mode 100644
index 00000000000000..e034f22aaa321b
--- /dev/null
+++ b/srcpkgs/mepo/template
@@ -0,0 +1,14 @@
+# Template file for 'mepo'
+pkgname=mepo
+version=1.3.1
+revision=1
+build_style=zig-build
+hostmakedepends="SDL2_image-devel SDL2_gfx-devel SDL2_ttf-devel SDL2-devel libcurl-devel glibc-devel"
+depends="zig"
+short_desc="Fast, simple, and hackable OSM map viewer"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="GPL-3.0-or-later"
+homepage="https://git.sr.ht/~mil/mepo"
+distfiles="https://git.sr.ht/~mil/mepo/archive/${version}.tar.gz"
+checksum=e20c51f27fd6025f1050c4587e7dcbdbf15d5ff2655b6ded9697891771813b40
+nopie=yes
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR PATCH] [Updated] New package: mepo-1.2.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (4 preceding siblings ...)
2024-08-11 16:20 ` jason1987d
@ 2024-08-11 16:22 ` jason1987d
2024-08-11 21:44 ` [PR REVIEW] New package: mepo-1.3.1 classabbyamp
` (11 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: jason1987d @ 2024-08-11 16:22 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 656 bytes --]
There is an updated pull request by jason1987d against master on the void-packages repository
https://github.com/jason1987d/void-packages mepo
https://github.com/void-linux/void-packages/pull/51521
New package: mepo-1.2.1.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-libc
A patch file from https://github.com/void-linux/void-packages/pull/51521.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mepo-51521.patch --]
[-- Type: text/x-diff, Size: 1027 bytes --]
From d359ce241166d22fb16f4f6f79c193b93018c752 Mon Sep 17 00:00:00 2001
From: Jason Elswick <jason@jasondavid.us>
Date: Sun, 28 Jul 2024 13:41:04 -0500
Subject: [PATCH] New package: mepo-1.3.1.
---
srcpkgs/mepo/template | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 srcpkgs/mepo/template
diff --git a/srcpkgs/mepo/template b/srcpkgs/mepo/template
new file mode 100644
index 00000000000000..51bc4941996d94
--- /dev/null
+++ b/srcpkgs/mepo/template
@@ -0,0 +1,14 @@
+# Template file for 'mepo'
+pkgname=mepo
+version=1.3.1
+revision=1
+build_style=zig-build
+makedepends="SDL2_image-devel SDL2_gfx-devel SDL2_ttf-devel SDL2-devel libcurl-devel glibc-devel"
+depends="zig"
+short_desc="Fast, simple, and hackable OSM map viewer"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="GPL-3.0-or-later"
+homepage="https://git.sr.ht/~mil/mepo"
+distfiles="https://git.sr.ht/~mil/mepo/archive/${version}.tar.gz"
+checksum=e20c51f27fd6025f1050c4587e7dcbdbf15d5ff2655b6ded9697891771813b40
+nopie=yes
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR REVIEW] New package: mepo-1.3.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (6 preceding siblings ...)
2024-08-11 21:44 ` [PR REVIEW] New package: mepo-1.3.1 classabbyamp
@ 2024-08-11 21:44 ` classabbyamp
2024-08-12 14:31 ` [PR PATCH] [Updated] " jason1987d
` (9 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: classabbyamp @ 2024-08-11 21:44 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 180 bytes --]
New review comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/51521#discussion_r1713063807
Comment:
why is glibc-devel needed?
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR REVIEW] New package: mepo-1.3.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (5 preceding siblings ...)
2024-08-11 16:22 ` jason1987d
@ 2024-08-11 21:44 ` classabbyamp
2024-08-11 21:44 ` classabbyamp
` (10 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: classabbyamp @ 2024-08-11 21:44 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 173 bytes --]
New review comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/51521#discussion_r1713063831
Comment:
why is this needed?
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR PATCH] [Updated] New package: mepo-1.3.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (7 preceding siblings ...)
2024-08-11 21:44 ` classabbyamp
@ 2024-08-12 14:31 ` jason1987d
2024-08-13 16:31 ` jason1987d
` (8 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: jason1987d @ 2024-08-12 14:31 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 656 bytes --]
There is an updated pull request by jason1987d against master on the void-packages repository
https://github.com/jason1987d/void-packages mepo
https://github.com/void-linux/void-packages/pull/51521
New package: mepo-1.3.1.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-libc
A patch file from https://github.com/void-linux/void-packages/pull/51521.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mepo-51521.patch --]
[-- Type: text/x-diff, Size: 999 bytes --]
From 7db0cab1a7488759cc2abc32d6b64e391e12baeb Mon Sep 17 00:00:00 2001
From: Jason Elswick <jason@jasondavid.us>
Date: Sun, 28 Jul 2024 13:41:04 -0500
Subject: [PATCH] New package: mepo-1.3.1.
---
srcpkgs/mepo/template | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 srcpkgs/mepo/template
diff --git a/srcpkgs/mepo/template b/srcpkgs/mepo/template
new file mode 100644
index 00000000000000..84d52abe68374d
--- /dev/null
+++ b/srcpkgs/mepo/template
@@ -0,0 +1,13 @@
+# Template file for 'mepo'
+pkgname=mepo
+version=1.3.1
+revision=1
+build_style=zig-build
+makedepends="SDL2_image-devel SDL2_gfx-devel SDL2_ttf-devel SDL2-devel libcurl-devel"
+short_desc="Fast, simple, and hackable OSM map viewer"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="GPL-3.0-or-later"
+homepage="https://git.sr.ht/~mil/mepo"
+distfiles="https://git.sr.ht/~mil/mepo/archive/${version}.tar.gz"
+checksum=e20c51f27fd6025f1050c4587e7dcbdbf15d5ff2655b6ded9697891771813b40
+nopie=yes
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: New package: mepo-1.3.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (8 preceding siblings ...)
2024-08-12 14:31 ` [PR PATCH] [Updated] " jason1987d
@ 2024-08-13 16:31 ` jason1987d
2024-08-13 19:09 ` tranzystorekk
` (7 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: jason1987d @ 2024-08-13 16:31 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 314 bytes --]
New comment by jason1987d on void-packages repository
https://github.com/void-linux/void-packages/pull/51521#issuecomment-2286660021
Comment:
I removed the glibc-devel dependency, and now the two archs failed. They failed to build on my local box as well for these archs. Has this error been encountered before?
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: New package: mepo-1.3.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (9 preceding siblings ...)
2024-08-13 16:31 ` jason1987d
@ 2024-08-13 19:09 ` tranzystorekk
2024-09-02 16:18 ` jason1987d
` (6 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: tranzystorekk @ 2024-08-13 19:09 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 224 bytes --]
New comment by tranzystorekk on void-packages repository
https://github.com/void-linux/void-packages/pull/51521#issuecomment-2286950612
Comment:
Probably worth reporting upstream, as they aren't testing on these platforms
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: New package: mepo-1.3.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (10 preceding siblings ...)
2024-08-13 19:09 ` tranzystorekk
@ 2024-09-02 16:18 ` jason1987d
2024-09-03 0:05 ` classabbyamp
` (5 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: jason1987d @ 2024-09-02 16:18 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 364 bytes --]
New comment by jason1987d on void-packages repository
https://github.com/void-linux/void-packages/pull/51521#issuecomment-2325056263
Comment:
> Probably worth reporting upstream, as they aren't testing on these platforms
This issue created: https://todo.sr.ht/~mil/mepo-tickets/80
In the meantime, would you recommend excluding those archs with archs= line?
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: New package: mepo-1.3.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (11 preceding siblings ...)
2024-09-02 16:18 ` jason1987d
@ 2024-09-03 0:05 ` classabbyamp
2024-09-08 21:49 ` [PR PATCH] [Updated] " jason1987d
` (4 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: classabbyamp @ 2024-09-03 0:05 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 177 bytes --]
New comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/51521#issuecomment-2325398138
Comment:
no, use a conditional `broken`
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR PATCH] [Updated] New package: mepo-1.3.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (12 preceding siblings ...)
2024-09-03 0:05 ` classabbyamp
@ 2024-09-08 21:49 ` jason1987d
2024-09-08 21:50 ` jason1987d
` (3 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: jason1987d @ 2024-09-08 21:49 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 656 bytes --]
There is an updated pull request by jason1987d against master on the void-packages repository
https://github.com/jason1987d/void-packages mepo
https://github.com/void-linux/void-packages/pull/51521
New package: mepo-1.3.1.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-libc
A patch file from https://github.com/void-linux/void-packages/pull/51521.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mepo-51521.patch --]
[-- Type: text/x-diff, Size: 1124 bytes --]
From 25e387bca1eb623c1199bbae98dae27a8abe172b Mon Sep 17 00:00:00 2001
From: Jason Elswick <jason@jasondavid.us>
Date: Sun, 28 Jul 2024 13:41:04 -0500
Subject: [PATCH] New package: mepo-1.3.1.
---
srcpkgs/mepo/template | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
create mode 100644 srcpkgs/mepo/template
diff --git a/srcpkgs/mepo/template b/srcpkgs/mepo/template
new file mode 100644
index 00000000000000..d6b7d7ee6101b8
--- /dev/null
+++ b/srcpkgs/mepo/template
@@ -0,0 +1,17 @@
+# Template file for 'mepo'
+pkgname=mepo
+version=1.3.1
+revision=1
+build_style=zig-build
+makedepends="SDL2_image-devel SDL2_gfx-devel SDL2_ttf-devel SDL2-devel libcurl-devel"
+short_desc="Fast, simple, and hackable OSM map viewer"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="GPL-3.0-or-later"
+homepage="https://git.sr.ht/~mil/mepo"
+distfiles="https://git.sr.ht/~mil/mepo/archive/${version}.tar.gz"
+checksum=e20c51f27fd6025f1050c4587e7dcbdbf15d5ff2655b6ded9697891771813b40
+nopie=yes
+
+case "$XBPS_TARGET_MACHINE" in
+ armv7l|armv6l-musl) broken="https://todo.sr.ht/~mil/mepo-tickets/80" ;;
+esac
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR PATCH] [Updated] New package: mepo-1.3.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (13 preceding siblings ...)
2024-09-08 21:49 ` [PR PATCH] [Updated] " jason1987d
@ 2024-09-08 21:50 ` jason1987d
2024-09-17 18:57 ` jason1987d
` (2 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: jason1987d @ 2024-09-08 21:50 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 656 bytes --]
There is an updated pull request by jason1987d against master on the void-packages repository
https://github.com/jason1987d/void-packages mepo
https://github.com/void-linux/void-packages/pull/51521
New package: mepo-1.3.1.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-libc
A patch file from https://github.com/void-linux/void-packages/pull/51521.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mepo-51521.patch --]
[-- Type: text/x-diff, Size: 1117 bytes --]
From 41a41224ec6b21d53d6c9ca1aee87577844829a4 Mon Sep 17 00:00:00 2001
From: Jason Elswick <jason@jasondavid.us>
Date: Sun, 28 Jul 2024 13:41:04 -0500
Subject: [PATCH] New package: mepo-1.3.1.
---
srcpkgs/mepo/template | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
create mode 100644 srcpkgs/mepo/template
diff --git a/srcpkgs/mepo/template b/srcpkgs/mepo/template
new file mode 100644
index 00000000000000..75687166582170
--- /dev/null
+++ b/srcpkgs/mepo/template
@@ -0,0 +1,17 @@
+# Template file for 'mepo'
+pkgname=mepo
+version=1.3.1
+revision=1
+build_style=zig-build
+makedepends="SDL2_image-devel SDL2_gfx-devel SDL2_ttf-devel SDL2-devel libcurl-devel"
+short_desc="Fast, simple, and hackable OSM map viewer"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="GPL-3.0-or-later"
+homepage="https://git.sr.ht/~mil/mepo"
+distfiles="https://git.sr.ht/~mil/mepo/archive/${version}.tar.gz"
+checksum=e20c51f27fd6025f1050c4587e7dcbdbf15d5ff2655b6ded9697891771813b40
+nopie=yes
+
+case "$XBPS_TARGET_MACHINE" in
+ armv7l|armv6l-musl) broken="https://todo.sr.ht/~mil/mepo-tickets/80" ;;
+esac
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR PATCH] [Updated] New package: mepo-1.3.1.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (14 preceding siblings ...)
2024-09-08 21:50 ` jason1987d
@ 2024-09-17 18:57 ` jason1987d
2024-09-17 19:35 ` [PR PATCH] [Updated] New package: mepo-1.3.3 jason1987d
2024-09-21 22:26 ` [PR PATCH] [Merged]: " classabbyamp
17 siblings, 0 replies; 19+ messages in thread
From: jason1987d @ 2024-09-17 18:57 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 656 bytes --]
There is an updated pull request by jason1987d against master on the void-packages repository
https://github.com/jason1987d/void-packages mepo
https://github.com/void-linux/void-packages/pull/51521
New package: mepo-1.3.1.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-libc
A patch file from https://github.com/void-linux/void-packages/pull/51521.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mepo-51521.patch --]
[-- Type: text/x-diff, Size: 999 bytes --]
From 3ad67ae4ef13c10cec68fbdad15073b4f4aed8eb Mon Sep 17 00:00:00 2001
From: Jason Elswick <jason@jasondavid.us>
Date: Sun, 28 Jul 2024 13:41:04 -0500
Subject: [PATCH] New package: mepo-1.3.1.
---
srcpkgs/mepo/template | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 srcpkgs/mepo/template
diff --git a/srcpkgs/mepo/template b/srcpkgs/mepo/template
new file mode 100644
index 00000000000000..f2ae4636ebc5a0
--- /dev/null
+++ b/srcpkgs/mepo/template
@@ -0,0 +1,13 @@
+# Template file for 'mepo'
+pkgname=mepo
+version=1.3.3
+revision=1
+build_style=zig-build
+makedepends="SDL2_image-devel SDL2_gfx-devel SDL2_ttf-devel SDL2-devel libcurl-devel"
+short_desc="Fast, simple, and hackable OSM map viewer"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="GPL-3.0-or-later"
+homepage="https://git.sr.ht/~mil/mepo"
+distfiles="https://git.sr.ht/~mil/mepo/archive/${version}.tar.gz"
+checksum=83dcd04dc38230e4b0beebb1f8ea72100adc551dac5b451b8f185b71f04fab68
+nopie=yes
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR PATCH] [Updated] New package: mepo-1.3.3.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (15 preceding siblings ...)
2024-09-17 18:57 ` jason1987d
@ 2024-09-17 19:35 ` jason1987d
2024-09-21 22:26 ` [PR PATCH] [Merged]: " classabbyamp
17 siblings, 0 replies; 19+ messages in thread
From: jason1987d @ 2024-09-17 19:35 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 751 bytes --]
There is an updated pull request by jason1987d against master on the void-packages repository
https://github.com/jason1987d/void-packages mepo
https://github.com/void-linux/void-packages/pull/51521
New package: mepo-1.3.3.
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-libc
- I built this PR locally for the following non-native architectures: armv7l-libc, armv6l-musl
A patch file from https://github.com/void-linux/void-packages/pull/51521.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mepo-51521.patch --]
[-- Type: text/x-diff, Size: 999 bytes --]
From bdca01c102e8eb9dc91ccc6d6ee92ae2996ce30b Mon Sep 17 00:00:00 2001
From: Jason Elswick <jason@jasondavid.us>
Date: Sun, 28 Jul 2024 13:41:04 -0500
Subject: [PATCH] New package: mepo-1.3.3.
---
srcpkgs/mepo/template | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 srcpkgs/mepo/template
diff --git a/srcpkgs/mepo/template b/srcpkgs/mepo/template
new file mode 100644
index 00000000000000..f2ae4636ebc5a0
--- /dev/null
+++ b/srcpkgs/mepo/template
@@ -0,0 +1,13 @@
+# Template file for 'mepo'
+pkgname=mepo
+version=1.3.3
+revision=1
+build_style=zig-build
+makedepends="SDL2_image-devel SDL2_gfx-devel SDL2_ttf-devel SDL2-devel libcurl-devel"
+short_desc="Fast, simple, and hackable OSM map viewer"
+maintainer="Jason Elswick <jason@jasondavid.tv>"
+license="GPL-3.0-or-later"
+homepage="https://git.sr.ht/~mil/mepo"
+distfiles="https://git.sr.ht/~mil/mepo/archive/${version}.tar.gz"
+checksum=83dcd04dc38230e4b0beebb1f8ea72100adc551dac5b451b8f185b71f04fab68
+nopie=yes
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PR PATCH] [Merged]: New package: mepo-1.3.3.
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
` (16 preceding siblings ...)
2024-09-17 19:35 ` [PR PATCH] [Updated] New package: mepo-1.3.3 jason1987d
@ 2024-09-21 22:26 ` classabbyamp
17 siblings, 0 replies; 19+ messages in thread
From: classabbyamp @ 2024-09-21 22:26 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 592 bytes --]
There's a merged pull request on the void-packages repository
New package: mepo-1.3.3.
https://github.com/void-linux/void-packages/pull/51521
Description:
#### Testing the changes
- I tested the changes in this PR: **YES**
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
#### Local build testing
- I built this PR locally for my native architecture, x86_64-libc
- I built this PR locally for the following non-native architectures: armv7l-libc, armv6l-musl
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2024-09-21 22:26 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-28 22:14 [PR PATCH] New package: mepo-1.2.1 jason1987d
2024-07-28 22:19 ` [PR REVIEW] " classabbyamp
2024-07-28 22:19 ` classabbyamp
2024-07-28 22:19 ` classabbyamp
2024-07-28 23:00 ` [PR PATCH] [Updated] " jason1987d
2024-08-11 16:20 ` jason1987d
2024-08-11 16:22 ` jason1987d
2024-08-11 21:44 ` [PR REVIEW] New package: mepo-1.3.1 classabbyamp
2024-08-11 21:44 ` classabbyamp
2024-08-12 14:31 ` [PR PATCH] [Updated] " jason1987d
2024-08-13 16:31 ` jason1987d
2024-08-13 19:09 ` tranzystorekk
2024-09-02 16:18 ` jason1987d
2024-09-03 0:05 ` classabbyamp
2024-09-08 21:49 ` [PR PATCH] [Updated] " jason1987d
2024-09-08 21:50 ` jason1987d
2024-09-17 18:57 ` jason1987d
2024-09-17 19:35 ` [PR PATCH] [Updated] New package: mepo-1.3.3 jason1987d
2024-09-21 22:26 ` [PR PATCH] [Merged]: " classabbyamp
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).