pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/fonts/gerb



Module Name:    pkgsrc
Committed By:   he
Date:           Thu May  2 11:25:38 UTC 2024

Modified Files:
        pkgsrc/fonts/gerb: Makefile distinfo
Added Files:
        pkgsrc/fonts/gerb/patches: patch-src_main.rs

Log Message:
fonts/gerb: fix non-portable assumption about c_char signedness.

Might be unsigned, as on powerpc.
Submitted upstream ref. https://github.com/epilys/gerb/pull/45
Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/fonts/gerb/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/fonts/gerb/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/fonts/gerb/patches/patch-src_main.rs

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/fonts/gerb/Makefile
diff -u pkgsrc/fonts/gerb/Makefile:1.12 pkgsrc/fonts/gerb/Makefile:1.13
--- pkgsrc/fonts/gerb/Makefile:1.12     Sun Apr  7 07:33:59 2024
+++ pkgsrc/fonts/gerb/Makefile  Thu May  2 11:25:38 2024
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.12 2024/04/07 07:33:59 wiz Exp $
+# $NetBSD: Makefile,v 1.13 2024/05/02 11:25:38 he Exp $
 
 DISTNAME=      gerb-0.0.1alpha20230427
-PKGREVISION=   7
+PKGREVISION=   8
 CATEGORIES=    fonts
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=epilys/}
 GITHUB_PROJECT=        gerb

Index: pkgsrc/fonts/gerb/distinfo
diff -u pkgsrc/fonts/gerb/distinfo:1.3 pkgsrc/fonts/gerb/distinfo:1.4
--- pkgsrc/fonts/gerb/distinfo:1.3      Thu Apr 27 21:01:58 2023
+++ pkgsrc/fonts/gerb/distinfo  Thu May  2 11:25:38 2024
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.3 2023/04/27 21:01:58 pin Exp $
+$NetBSD: distinfo,v 1.4 2024/05/02 11:25:38 he Exp $
 
 BLAKE2s (aho-corasick-0.7.20.crate) = e435fcd774a78d21bafe7b56bad76b8595dcd87a850c6ef2a41206c7ec6439c5
 SHA512 (aho-corasick-0.7.20.crate) = ad31f3d1b3fe41e593d4ca7e721bbad62936f2e6a17fd1e0997353edb6fc906d1bef2b79f0ac7c7676abe637bbabb23ff22059947be379a2441011f8178983c5
@@ -408,3 +408,4 @@ Size (winnow-0.3.6.crate) = 176641 bytes
 BLAKE2s (xdg-2.4.1.crate) = 87f0640f8e192dba12b223ff31293a3c5b29f9d83eff8cee3ff8d78eff1aab50
 SHA512 (xdg-2.4.1.crate) = 23e69abbe79a0977900af37feb9f367a82d0ba4e69fc9421e356a5957920e316379355b1c6eeda1235feb3d028f738c41f520d28665f919e775b20240219e07e
 Size (xdg-2.4.1.crate) = 14034 bytes
+SHA1 (patch-src_main.rs) = 43140a8c633f776d8fd4d7c41e2ae7fdca1511d7

Added files:

Index: pkgsrc/fonts/gerb/patches/patch-src_main.rs
diff -u /dev/null pkgsrc/fonts/gerb/patches/patch-src_main.rs:1.1
--- /dev/null   Thu May  2 11:25:39 2024
+++ pkgsrc/fonts/gerb/patches/patch-src_main.rs Thu May  2 11:25:38 2024
@@ -0,0 +1,30 @@
+$NetBSD: patch-src_main.rs,v 1.1 2024/05/02 11:25:38 he Exp $
+
+--- src/main.rs.orig   2023-04-27 19:58:25.000000000 +0000
++++ src/main.rs
+@@ -22,6 +22,7 @@
+ #![deny(clippy::dbg_macro)]
+ 
+ use gerb::prelude::*;
++use std::ffi::c_char;
+ use gtk::glib::{OptionArg, OptionFlags};
+ 
+ fn main() {
+@@ -30,7 +31,7 @@ fn main() {
+     let app = Application::new();
+     app.add_main_option(
+         "ufo",
+-        glib::Char('u' as i8),
++        glib::Char('u' as c_char),
+         OptionFlags::IN_MAIN,
+         OptionArg::Filename,
+         "UFO project path to load on launch",
+@@ -38,7 +39,7 @@ fn main() {
+     );
+     app.add_main_option(
+         "version",
+-        glib::Char('v' as i8),
++        glib::Char('v' as c_char),
+         OptionFlags::IN_MAIN,
+         OptionArg::None,
+         "show version",



Home | Main Index | Thread Index | Old Index