pkgsrc-WIP-changes archive

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

bottom: fix the conditional check netbsd.



Module Name:	pkgsrc-wip
Committed By:	Santhosh Raju <fox%NetBSD.org@localhost>
Pushed By:	fox
Date:		Wed Jun 24 14:23:13 2026 +0200
Changeset:	bb63e24b71eedf491111c55cd5ace7d31a6df272

Modified Files:
	bottom/distinfo
	bottom/patches/patch-src_collection_disks.rs

Log Message:
bottom: fix the conditional check netbsd.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=bb63e24b71eedf491111c55cd5ace7d31a6df272

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

diffstat:
 bottom/distinfo                              | 2 +-
 bottom/patches/patch-src_collection_disks.rs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diffs:
diff --git a/bottom/distinfo b/bottom/distinfo
index d5728dbdd1..0688ed79ad 100644
--- a/bottom/distinfo
+++ b/bottom/distinfo
@@ -690,6 +690,6 @@ Size (wrapcenum-derive-0.4.1.crate) = 7400 bytes
 BLAKE2s (zmij-1.0.19.crate) = e6857f8f672ab60cba6575bda0b64bfd4898ee7c34cb1f799842885965039969
 SHA512 (zmij-1.0.19.crate) = aa191ba286f10d59727981e68f7fb0214d53b02d6c28951e6f16670433cd79abc4615384b3b1e1f74adc81a3f51c15d906fda0340b03938984693332feeac2cc
 Size (zmij-1.0.19.crate) = 23948 bytes
-SHA1 (patch-src_collection_disks.rs) = 9eba2cdde2fe9537bf0bf8829205e4f777e506ea
+SHA1 (patch-src_collection_disks.rs) = 6ddb2276a665ef419268e94719a75eefff5e39f5
 SHA1 (patch-src_collection_disks_netbsd.rs) = 07bf336ec347df5eb8a344c11c10041cac674f70
 SHA1 (patch-src_collection_processes.rs) = 9c6ac1c1402526252ec3559fa64015ed8ee6d8fd
diff --git a/bottom/patches/patch-src_collection_disks.rs b/bottom/patches/patch-src_collection_disks.rs
index 16ef908738..735e69176b 100644
--- a/bottom/patches/patch-src_collection_disks.rs
+++ b/bottom/patches/patch-src_collection_disks.rs
@@ -20,7 +20,7 @@ Disable catch-all for disks in NetBSD.
          }
      }
 -    not(target_os = "freebsd") => {
-+    not(all(target_os = "freebsd", target_os = "netbsd")) => {
++    not(any(target_os = "freebsd", target_os = "netbsd")) => {
          use crate::collection::DataCollector;
          pub fn get_io_usage(_collector: &DataCollector) -> anyhow::Result<IoHarvest> {
              anyhow::bail!("Unsupported OS");


Home | Main Index | Thread Index | Old Index