X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/9c0b9e8910c8e267dede0f031f407cccd341a0dc..13b56fedb6fe542bdd7e113d7887c6e2f6f2b271:/packages/openssh/build.sh diff --git a/packages/openssh/build.sh b/packages/openssh/build.sh index 6677720e..515ec96f 100755 --- a/packages/openssh/build.sh +++ b/packages/openssh/build.sh @@ -1,9 +1,8 @@ TERMUX_PKG_HOMEPAGE=https://www.openssh.com/ TERMUX_PKG_DESCRIPTION="Secure shell for logging into a remote machine" -TERMUX_PKG_VERSION=7.5p1 -TERMUX_PKG_REVISION=6 -TERMUX_PKG_SRCURL=http://mirrors.evowise.com/pub/OpenBSD/OpenSSH/portable/openssh-${TERMUX_PKG_VERSION}.tar.gz -TERMUX_PKG_SHA256=9846e3c5fab9f0547400b4d2c017992f914222b3fd1f8eee6c7dc6bc5e59f9f0 +TERMUX_PKG_VERSION=7.6p1 +TERMUX_PKG_SRCURL=https://fastly.cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-${TERMUX_PKG_VERSION}.tar.gz +TERMUX_PKG_SHA256=a323caeeddfe145baaa0db16e98d784b1fbc7dd436a6bf1f479dfd5cd1d21723 TERMUX_PKG_DEPENDS="libandroid-support, ldns, openssl, libedit, libutil" # --disable-strip to prevent host "install" command to use "-s", which won't work for target binaries: TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" @@ -21,6 +20,7 @@ TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" --with-cflags=-Dfd_mask=int --with-ldns --with-libedit +--with-mantype=man --without-ssh1 --without-stackprotect --with-pid-dir=$TERMUX_PREFIX/var/run @@ -56,9 +56,10 @@ termux_step_post_configure() { } termux_step_post_make_install () { + # "PrintMotd no" is due to our login program already showing it. # OpenSSH 7.0 disabled ssh-dss by default, keep it for a while in Termux: - echo -e "PasswordAuthentication no\nPubkeyAcceptedKeyTypes +ssh-dss\nSubsystem sftp $TERMUX_PREFIX/libexec/sftp-server" > $TERMUX_PREFIX/etc/ssh/sshd_config - echo "PubkeyAcceptedKeyTypes +ssh-dss" > $TERMUX_PREFIX/etc/ssh/ssh_config + echo -e "PrintMotd no\nPasswordAuthentication no\nPubkeyAcceptedKeyTypes +ssh-dss\nSubsystem sftp $TERMUX_PREFIX/libexec/sftp-server" > $TERMUX_PREFIX/etc/ssh/sshd_config + echo "PubkeyAcceptedKeyTypes +ssh-dss" > $TERMUX_PREFIX/etc/ssh/ssh_config cp $TERMUX_PKG_BUILDER_DIR/source-ssh-agent.sh $TERMUX_PREFIX/bin/source-ssh-agent cp $TERMUX_PKG_BUILDER_DIR/ssh-with-agent.sh $TERMUX_PREFIX/bin/ssha @@ -74,6 +75,16 @@ termux_step_post_make_install () { cp $TERMUX_PKG_SRCDIR/moduli $TERMUX_PREFIX/etc/ssh/moduli } +termux_step_post_massage () { + # Verify that we have man pages packaged (#1538). + local manpage + for manpage in ssh-keyscan.1 ssh-add.1 scp.1 ssh-agent.1 ssh.1; do + if [ ! -f share/man/man1/$manpage ]; then + termux_error_exit "Missing man page $manpage" + fi + done +} + termux_step_create_debscripts () { echo "#!$TERMUX_PREFIX/bin/sh" > postinst echo "mkdir -p \$HOME/.ssh" >> postinst