0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-08-11 07:33:03 +00:00
Files
termux-packages/packages/pueue/patches.patch
Aditya Alok 96b2cabed8 bump(main/pueue): 4.0.0-rc.1
Signed-off-by: Aditya Alok <alok@termux.dev>
2025-01-08 16:16:33 +05:30

21 lines
980 B
Diff

--- pueue-4.0.0-rc.1/pueue_lib/Cargo.toml 2024-12-01 22:55:03.000000000 +0530
+++ pueue-4.0.0-rc.1.mod/pueue_lib/Cargo.toml 2025-01-08 15:28:47.151932396 +0530
@@ -71,5 +71,5 @@
libproc = "0.14.6"
# Linux only
-[target.'cfg(target_os = "linux")'.dependencies]
+[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
procfs = { version = "0.17", default-features = false }
--- pueue-4.0.0-rc.1/pueue_lib/src/process_helper/mod.rs 2024-12-01 22:55:03.000000000 +0530
+++ pueue-4.0.0-rc.1.mod/pueue_lib/src/process_helper/mod.rs 2025-01-08 15:25:25.329165013 +0530
@@ -18,7 +18,7 @@
use command_group::Signal;
// Platform specific process support
-#[cfg_attr(target_os = "linux", path = "linux.rs")]
+#[cfg_attr(any(target_os = "linux", target_os = "android"), path = "linux.rs")]
#[cfg_attr(target_vendor = "apple", path = "apple.rs")]
#[cfg_attr(target_os = "windows", path = "windows.rs")]
#[cfg_attr(target_os = "freebsd", path = "freebsd.rs")]