new package: distant

This commit is contained in:
Tee KOBAYASHI 2023-03-12 09:50:04 +09:00 committed by xtkoba
parent 1aadf4e05c
commit a00038dd39
4 changed files with 295 additions and 0 deletions

66
packages/distant/build.sh Normal file
View File

@ -0,0 +1,66 @@
TERMUX_PKG_HOMEPAGE=https://github.com/chipsenkbeil/distant
TERMUX_PKG_DESCRIPTION="Library and tooling that supports remote filesystem and process"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.20.0-alpha.3
TERMUX_PKG_SRCURL=https://github.com/chipsenkbeil/distant/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=c6c43b7eb868dec5743cbd1c48dfec106cf57129ceef9370f412273f4c7f8975
TERMUX_PKG_DEPENDS="libssh2, openssl, zlib"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
export OPENSSL_NO_VENDOR=1
export OPENSSL_INCLUDE_DIR=$TERMUX_PREFIX/include/openssl
export OPENSSL_LIB_DIR=$TERMUX_PREFIX/lib
export LIBSSH2_SYS_USE_PKG_CONFIG=1
export PKG_CONFIG_ALLOW_CROSS=1
termux_setup_rust
: "${CARGO_HOME:=$HOME/.cargo}"
export CARGO_HOME
cargo fetch --target $CARGO_TARGET_NAME
local d
local p=termios-0.2.2.diff
for d in $CARGO_HOME/registry/src/github.com-*/termios-0.2.2; do
patch --silent -p1 -d ${d} \
< "$TERMUX_PKG_BUILDER_DIR/${p}" || :
done
p=service-manager-0.2.0.diff
for d in $CARGO_HOME/registry/src/github.com-*/service-manager-*; do
patch --silent -p1 -d ${d} \
< "$TERMUX_PKG_BUILDER_DIR/${p}" || :
done
}
termux_step_make() {
cargo build --jobs $TERMUX_MAKE_PROCESSES --target $CARGO_TARGET_NAME --release
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin target/${CARGO_TARGET_NAME}/release/distant
}
termux_step_post_massage() {
mkdir -p ./share/bash-completion/completions
mkdir -p ./share/zsh/site-functions
mkdir -p ./share/fish/vendor_completions.d
}
termux_step_create_debscripts() {
cat <<-EOF > ./postinst
#!${TERMUX_PREFIX}/bin/sh
${TERMUX_PREFIX}/bin/distant generate completion bash > ${TERMUX_PREFIX}/share/bash-completion/completions/distant
${TERMUX_PREFIX}/bin/distant generate completion zsh > ${TERMUX_PREFIX}/share/zsh/site-functions/_distant
${TERMUX_PREFIX}/bin/distant generate completion fish > ${TERMUX_PREFIX}/share/fish/vendor_completions.d/distant.fish
exit 0
EOF
cat <<-EOF > ./prerm
#!${TERMUX_PREFIX}/bin/sh
rm -f ${TERMUX_PREFIX}/share/bash-completion/completions/distant
rm -f ${TERMUX_PREFIX}/share/zsh/site-functions/_distant
rm -f ${TERMUX_PREFIX}/share/fish/vendor_completions.d/distant.fish
exit 0
EOF
}

View File

@ -0,0 +1,12 @@
This is bogus.
--- a/src/kind.rs
+++ b/src/kind.rs
@@ -38,6 +38,7 @@
/// Looks up the kind of service management platform native to the operating system
#[cfg(any(
+ target_os = "android",
target_os = "freebsd",
target_os = "dragonfly",
target_os = "openbsd",

View File

@ -0,0 +1,17 @@
--- a/src/paths.rs
+++ b/src/paths.rs
@@ -91,12 +91,13 @@
if cfg!(target_os = "macos") {
std::env::temp_dir().join(SOCKET_FILE_STR)
} else if cfg!(any(
+ target_os = "android",
target_os = "freebsd",
target_os = "dragonfly",
target_os = "openbsd",
target_os = "netbsd"
)) {
- PathBuf::from("/var").join("run").join(SOCKET_FILE_STR)
+ PathBuf::from("@TERMUX_PREFIX@/var").join("run").join(SOCKET_FILE_STR)
} else {
PathBuf::from("/run").join(SOCKET_FILE_STR)
}

View File

@ -0,0 +1,200 @@
Backport of
https://github.com/dcuddeback/termios-rs/commit/61c593466192272edfb841e50f8a7f9c655a6cf6
https://github.com/dcuddeback/termios-rs/pull/19
--- a/src/os/android.rs
+++ b/src/os/android.rs
@@ -0,0 +1,176 @@
+#![allow(non_camel_case_types)]
+
+use libc::{c_int,c_uint,c_uchar};
+
+pub type cc_t = c_uchar;
+pub type speed_t = c_uint;
+pub type tcflag_t = c_uint;
+
+#[derive(Debug,Copy,Clone,Eq,PartialEq)]
+#[repr(C)]
+pub struct termios {
+ pub c_iflag: tcflag_t,
+ pub c_oflag: tcflag_t,
+ pub c_cflag: tcflag_t,
+ pub c_lflag: tcflag_t,
+ c_line: cc_t,
+ pub c_cc: [cc_t; NCCS]
+}
+
+pub const NCCS: usize = 19;
+
+// c_cc characters
+pub const VINTR: usize = 0;
+pub const VQUIT: usize = 1;
+pub const VERASE: usize = 2;
+pub const VKILL: usize = 3;
+pub const VEOF: usize = 4;
+pub const VTIME: usize = 5;
+pub const VMIN: usize = 6;
+pub const VSWTC: usize = 7;
+pub const VSTART: usize = 8;
+pub const VSTOP: usize = 9;
+pub const VSUSP: usize = 10;
+pub const VEOL: usize = 11;
+pub const VREPRINT: usize = 12;
+pub const VDISCARD: usize = 13;
+pub const VWERASE: usize = 14;
+pub const VLNEXT: usize = 15;
+pub const VEOL2: usize = 16;
+
+// c_iflag bits
+pub const IGNBRK: tcflag_t = 0o000001;
+pub const BRKINT: tcflag_t = 0o000002;
+pub const IGNPAR: tcflag_t = 0o000004;
+pub const PARMRK: tcflag_t = 0o000010;
+pub const INPCK: tcflag_t = 0o000020;
+pub const ISTRIP: tcflag_t = 0o000040;
+pub const INLCR: tcflag_t = 0o000100;
+pub const IGNCR: tcflag_t = 0o000200;
+pub const ICRNL: tcflag_t = 0o000400;
+pub const IUCLC: tcflag_t = 0o001000;
+pub const IXON: tcflag_t = 0o002000;
+pub const IXANY: tcflag_t = 0o004000;
+pub const IXOFF: tcflag_t = 0o010000;
+pub const IMAXBEL: tcflag_t = 0o020000;
+pub const IUTF8: tcflag_t = 0o040000;
+
+// c_oflag bits
+pub const OPOST: tcflag_t = 0o000001;
+pub const OLCUC: tcflag_t = 0o000002;
+pub const ONLCR: tcflag_t = 0o000004;
+pub const OCRNL: tcflag_t = 0o000010;
+pub const ONOCR: tcflag_t = 0o000020;
+pub const ONLRET: tcflag_t = 0o000040;
+pub const OFILL: tcflag_t = 0o000100;
+pub const OFDEL: tcflag_t = 0o000200;
+pub const NLDLY: tcflag_t = 0o000400;
+pub const NL0: tcflag_t = 0o000000;
+pub const NL1: tcflag_t = 0o000400;
+pub const CRDLY: tcflag_t = 0o003000;
+pub const CR0: tcflag_t = 0o000000;
+pub const CR1: tcflag_t = 0o001000;
+pub const CR2: tcflag_t = 0o002000;
+pub const CR3: tcflag_t = 0o003000;
+pub const TABDLY: tcflag_t = 0o014000;
+pub const TAB0: tcflag_t = 0o000000;
+pub const TAB1: tcflag_t = 0o004000;
+pub const TAB2: tcflag_t = 0o010000;
+pub const TAB3: tcflag_t = 0o014000;
+pub const BSDLY: tcflag_t = 0o020000;
+pub const BS0: tcflag_t = 0o000000;
+pub const BS1: tcflag_t = 0o020000;
+pub const FFDLY: tcflag_t = 0o100000;
+pub const FF0: tcflag_t = 0o000000;
+pub const FF1: tcflag_t = 0o100000;
+pub const VTDLY: tcflag_t = 0o040000;
+pub const VT0: tcflag_t = 0o000000;
+pub const VT1: tcflag_t = 0o040000;
+pub const XTABS: tcflag_t = 0o014000;
+
+// c_cflag bits
+pub const CBAUD: tcflag_t = 0o010017;
+pub const CSIZE: tcflag_t = 0o000060;
+pub const CS5: tcflag_t = 0o000000;
+pub const CS6: tcflag_t = 0o000020;
+pub const CS7: tcflag_t = 0o000040;
+pub const CS8: tcflag_t = 0o000060;
+pub const CSTOPB: tcflag_t = 0o000100;
+pub const CREAD: tcflag_t = 0o000200;
+pub const PARENB: tcflag_t = 0o000400;
+pub const PARODD: tcflag_t = 0o001000;
+pub const HUPCL: tcflag_t = 0o002000;
+pub const CLOCAL: tcflag_t = 0o004000;
+pub const CBAUDEX: tcflag_t = 0o010000;
+pub const CIBAUD: tcflag_t = 0o02003600000;
+pub const CMSPAR: tcflag_t = 0o10000000000;
+pub const CRTSCTS: tcflag_t = 0o20000000000;
+
+// c_lflag bits
+pub const ISIG: tcflag_t = 0o000001;
+pub const ICANON: tcflag_t = 0o000002;
+pub const XCASE: tcflag_t = 0o000004;
+pub const ECHO: tcflag_t = 0o000010;
+pub const ECHOE: tcflag_t = 0o000020;
+pub const ECHOK: tcflag_t = 0o000040;
+pub const ECHONL: tcflag_t = 0o000100;
+pub const NOFLSH: tcflag_t = 0o000200;
+pub const TOSTOP: tcflag_t = 0o000400;
+pub const ECHOCTL: tcflag_t = 0o001000;
+pub const ECHOPRT: tcflag_t = 0o002000;
+pub const ECHOKE: tcflag_t = 0o004000;
+pub const FLUSHO: tcflag_t = 0o010000;
+pub const PENDIN: tcflag_t = 0o040000;
+pub const IEXTEN: tcflag_t = 0o100000;
+pub const EXTPROC: tcflag_t = 0o200000;
+
+// baud rates
+pub const B0: speed_t = 0o000000;
+pub const B50: speed_t = 0o000001;
+pub const B75: speed_t = 0o000002;
+pub const B110: speed_t = 0o000003;
+pub const B134: speed_t = 0o000004;
+pub const B150: speed_t = 0o000005;
+pub const B200: speed_t = 0o000006;
+pub const B300: speed_t = 0o000007;
+pub const B600: speed_t = 0o000010;
+pub const B1200: speed_t = 0o000011;
+pub const B1800: speed_t = 0o000012;
+pub const B2400: speed_t = 0o000013;
+pub const B4800: speed_t = 0o000014;
+pub const B9600: speed_t = 0o000015;
+pub const B19200: speed_t = 0o000016;
+pub const B38400: speed_t = 0o000017;
+pub const EXTA: speed_t = B19200;
+pub const EXTB: speed_t = B38400;
+pub const B57600: speed_t = 0o010001;
+pub const B115200: speed_t = 0o010002;
+pub const B230400: speed_t = 0o010003;
+pub const B460800: speed_t = 0o010004;
+pub const B500000: speed_t = 0o010005;
+pub const B576000: speed_t = 0o010006;
+pub const B921600: speed_t = 0o010007;
+pub const B1000000: speed_t = 0o010010;
+pub const B1152000: speed_t = 0o010011;
+pub const B1500000: speed_t = 0o010012;
+pub const B2000000: speed_t = 0o010013;
+pub const B2500000: speed_t = 0o010014;
+pub const B3000000: speed_t = 0o010015;
+pub const B3500000: speed_t = 0o010016;
+pub const B4000000: speed_t = 0o010017;
+
+// tcflow()
+pub const TCOOFF: c_int = 0;
+pub const TCOON: c_int = 1;
+pub const TCIOFF: c_int = 2;
+pub const TCION: c_int = 3;
+
+// tcflush()
+pub const TCIFLUSH: c_int = 0;
+pub const TCOFLUSH: c_int = 1;
+pub const TCIOFLUSH: c_int = 2;
+
+// tcsetattr()
+pub const TCSANOW: c_int = 0;
+pub const TCSADRAIN: c_int = 1;
+pub const TCSAFLUSH: c_int = 2;
--- a/src/os/mod.rs
+++ b/src/os/mod.rs
@@ -1,11 +1,13 @@
//! OS-specific definitions.
#[cfg(target_os = "linux")] pub use self::linux as target;
+#[cfg(target_os = "android")] pub use self::android as target;
#[cfg(target_os = "macos")] pub use self::macos as target;
#[cfg(target_os = "freebsd")] pub use self::freebsd as target;
#[cfg(target_os = "openbsd")] pub use self::openbsd as target;
#[cfg(target_os = "linux")] pub mod linux;
+#[cfg(target_os = "android")] pub mod android;
#[cfg(target_os = "macos")] pub mod macos;
#[cfg(target_os = "freebsd")] pub mod freebsd;
#[cfg(target_os = "openbsd")] pub mod openbsd;