pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/editors/reovim
Module Name: pkgsrc
Committed By: pin
Date: Fri Apr 10 18:29:41 UTC 2026
Modified Files:
pkgsrc/editors/reovim: distinfo
pkgsrc/editors/reovim/patches:
patch-server_lib_drivers_module-loader_src_discovery.rs
Log Message:
editors/reovim: fix patchsum
While here, allow building on SmartOS.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/editors/reovim/distinfo
cvs rdiff -u -r1.1 -r1.2 \
pkgsrc/editors/reovim/patches/patch-server_lib_drivers_module-loader_src_discovery.rs
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/editors/reovim/distinfo
diff -u pkgsrc/editors/reovim/distinfo:1.4 pkgsrc/editors/reovim/distinfo:1.5
--- pkgsrc/editors/reovim/distinfo:1.4 Thu Apr 9 17:16:54 2026
+++ pkgsrc/editors/reovim/distinfo Fri Apr 10 18:29:41 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.4 2026/04/09 17:16:54 pin Exp $
+$NetBSD: distinfo,v 1.5 2026/04/10 18:29:41 pin Exp $
BLAKE2s (adler2-2.0.1.crate) = 4d391e0fcde91c7435ee9a5503fee4a5346f549f1b45e482ce3e1e151d90f8f5
SHA512 (adler2-2.0.1.crate) = 555b2b7ba6f8116acccd0bcd16ed34cc78162c81023cff31a8566ffcd456c03832089fca2d5b668ceaac4fe8f922d31aa9c487f226a36cace294ff4a219bd91d
@@ -1191,4 +1191,4 @@ Size (zune-core-0.5.1.crate) = 27883 byt
BLAKE2s (zune-jpeg-0.5.13.crate) = 941f5f553a2b01c2ce691b147b4ffbc57e2a66d2643842444c3b4d6df62ff2f3
SHA512 (zune-jpeg-0.5.13.crate) = e5d4ba1657ee5bfca5a7b3625c55d9e8b59b0f4c56b9dcfb483f83bf89e6a5537c9927c1b1e7f8308524fa2ad8b528642ea978418155b4ab9d6de3d19e7aab0d
Size (zune-jpeg-0.5.13.crate) = 88872 bytes
-SHA1 (patch-server_lib_drivers_module-loader_src_discovery.rs) = c297e103aa05d53ba33d8d0a0d9bbbed594fa1a4
+SHA1 (patch-server_lib_drivers_module-loader_src_discovery.rs) = 6865f45a41a68b0d9a8b52e7ed48a051c9879ef4
Index: pkgsrc/editors/reovim/patches/patch-server_lib_drivers_module-loader_src_discovery.rs
diff -u pkgsrc/editors/reovim/patches/patch-server_lib_drivers_module-loader_src_discovery.rs:1.1 pkgsrc/editors/reovim/patches/patch-server_lib_drivers_module-loader_src_discovery.rs:1.2
--- pkgsrc/editors/reovim/patches/patch-server_lib_drivers_module-loader_src_discovery.rs:1.1 Thu Apr 9 17:16:54 2026
+++ pkgsrc/editors/reovim/patches/patch-server_lib_drivers_module-loader_src_discovery.rs Fri Apr 10 18:29:41 2026
@@ -1,34 +1,22 @@
-$NetBSD: patch-server_lib_drivers_module-loader_src_discovery.rs,v 1.1 2026/04/09 17:16:54 pin Exp $
+$NetBSD: patch-server_lib_drivers_module-loader_src_discovery.rs,v 1.2 2026/04/10 18:29:41 pin Exp $
-Allow compilation on *BSD.
+Allow building on other *nix.
---- server/lib/drivers/module-loader/src/discovery.rs.orig 2026-04-09 12:34:36.950570004 +0000
-+++ server/lib/drivers/module-loader/src/discovery.rs
-@@ -65,17 +65,18 @@ pub const fn library_extension() -> &'static str {
+--- ../reovim-0.14.4/server/lib/drivers/module-loader/src/discovery.rs.orig 2026-04-10 18:15:39.711016518 +0000
++++ ../reovim-0.14.4/server/lib/drivers/module-loader/src/discovery.rs
+@@ -64,7 +64,14 @@ pub const fn library_extension() -> &'static str {
+ /// Get shared library extension for the current platform.
#[must_use]
pub const fn library_extension() -> &'static str {
- #[cfg(target_os = "linux")]
-- {
-- "so"
-- }
-+ { "so" }
- #[cfg(target_os = "macos")]
-- {
-- "dylib"
-- }
-+ { "dylib" }
- #[cfg(target_os = "windows")]
-- {
-- "dll"
-- }
-+ { "dll" }
+- #[cfg(target_os = "linux")]
+ #[cfg(any(
++ target_os = "linux",
+ target_os = "netbsd",
+ target_os = "freebsd",
+ target_os = "openbsd",
+ target_os = "dragonfly",
++ target_os = "solaris",
+ ))]
-+ { "so" }
- }
-
- /// Get library filename for a module name.
+ {
+ "so"
+ }
Home |
Main Index |
Thread Index |
Old Index