mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
net-misc/tinyssh: treeclean (moved to ::gentoo)
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
parent
e91e36941f
commit
20a2fab0dc
@ -1,2 +0,0 @@
|
||||
DIST tinyssh-20220801.tar.gz 249071 BLAKE2B 77509d2e2c7f84d675bb1f64df6ee7925e5c1f3f1be998b8438fa6e63954fca5dcbc724eb9993f22267f23e840e5f66077d48dfaba0f8d3c0b4b51d5098b457f SHA512 fe9f45f7a06c7c30d56a2ce32e656b1d3a8d12ccdb99dfd4087a145fdf4c5b54a1f1739f5a83dc8158f1164f36c89c6e349b370e1946ca0cfc81d27cae143135
|
||||
DIST tinyssh-20230101.tar.gz 249091 BLAKE2B 5efb6eab07c136763ab27588661618763d2ca174dce4b0f4b5fd5dcca56044f8361342de780931070cff8efe43f6efa68eaf912e9ae38febfcff733f79e23018 SHA512 6beaf266058a89a78c710abd1a02feff0641a93d0d92aa07a1ad1ba3f6b3344bc312bb5a4cd5c06c6dcc83d25e48a801f9cfcfbb3de0f73904f36d32d4430482
|
@ -1,8 +0,0 @@
|
||||
[Unit]
|
||||
Description=TinySSH Key Generation
|
||||
ConditionPathIsDirectory=!/etc/tinyssh/keys
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/tinysshd-makekey /etc/tinyssh/keys
|
||||
Type=oneshot
|
||||
RemainAfterExit=true
|
@ -1,7 +0,0 @@
|
||||
# TinySSH config file for /etc/init.d/tinyssh
|
||||
|
||||
#TINYSSH_PORT="22"
|
||||
#TINYSSH_IP="0.0.0.0"
|
||||
#TINYSSH_CONFDIR="/etc/tinyssh"
|
||||
#TINYSSH_KEYDIR="${TINYSSH_CONFDIR}/keys"
|
||||
#TINYSSH_OPTS="-l -v"
|
@ -1,30 +0,0 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
TINYSSH_CONFDIR="${TINYSSH_CONFDIR:-/etc/tinyssh}"
|
||||
TINYSSH_KEYDIR="${TINYSSH_KEYDIR:-${TINYSSH_CONFDIR}/keys}"
|
||||
|
||||
TINYSSHD="/usr/sbin/tinysshd"
|
||||
MAKEKEY="${TINYSSHD}-makekey"
|
||||
PRINTKEY="/usr/bin/tinysshd-printkey"
|
||||
|
||||
command="/usr/bin/tcpserver"
|
||||
command_args="-HRDl0 ${TINYSSH_IP:-0.0.0.0} ${TINYSSH_PORT:-22}
|
||||
${TINYSSHD} ${TINYSSH_OPTS:--l -v} ${TINYSSH_KEYDIR}"
|
||||
command_background=yes
|
||||
pidfile="/run/${RC_SVCNAME}.pid"
|
||||
start_stop_daemon_args="${SSD_OPTS}"
|
||||
|
||||
depend() {
|
||||
use net
|
||||
}
|
||||
|
||||
start_pre() {
|
||||
if [ "${RC_CMD}" != "restart" ]; then
|
||||
checkpath -d "${TINYSSH_CONFDIR}"
|
||||
if ! ${PRINTKEY} "${TINYSSH_KEYDIR}" >/dev/null 2>&1; then
|
||||
${MAKEKEY} "${TINYSSH_KEYDIR}" || return 1
|
||||
fi
|
||||
fi
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
[Unit]
|
||||
Description=TinySSH Per-Connection Daemon
|
||||
Documentation=https://tinyssh.org
|
||||
After=tinyssh-makekey.service
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/tinysshd /etc/tinyssh/keys
|
||||
StandardInput=socket
|
||||
StandardError=journal
|
@ -1,13 +0,0 @@
|
||||
[Unit]
|
||||
Description=TinySSH service (socket-activated)
|
||||
Documentation=https://tinyssh.org
|
||||
Wants=tinyssh-makekey.service
|
||||
|
||||
[Socket]
|
||||
ListenStream=%i
|
||||
Accept=true
|
||||
KeepAlive=true
|
||||
IPTOS=low-delay
|
||||
|
||||
[Install]
|
||||
WantedBy=sockets.target
|
@ -1,40 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>contact@hacktivis.me</email>
|
||||
<name>Haelwenn (lanodan) Monnier</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">janmojzis/tinyssh</remote-id>
|
||||
<bugs-to>https://github.com/janmojzis/tinyssh/issues</bugs-to>
|
||||
</upstream>
|
||||
<longdescription lang="en">
|
||||
Features
|
||||
|
||||
easy auditable - TinySSH has less than 100000 words of code
|
||||
no dynamic memory allocation - TinySSH has all memory statically allocated (less than 1MB)
|
||||
simple configuration - TinySSH can’t be misconfigured
|
||||
reusing code - TinySSH is reusing libraries from CurveCP implementation
|
||||
reusing software - TinySSH is using tcpserver/systemd socket/inetd for TCP connection
|
||||
limited amount of features - TinySSH doesn’t have features such: SSH1 protocol, compression, …
|
||||
no older cryptographic primitives - rsa, dsa, classic diffie-hellman, hmac-md5, hmac-sha1, 3des, arcfour, …
|
||||
no copyright restrictions - TinySSH is in the public domain (see the licence)
|
||||
no dependency on OpenSSL - TinySSH has its own crypto library compatible with NaCl, Libsodium
|
||||
speed - TinySSH can be also compiled using high-speed NaCl library instead of internal.
|
||||
|
||||
Security features
|
||||
|
||||
cryptographic library (minimum 128-bit security, side-channel attack resistant, state-of-the-art crypto, …)
|
||||
public-key authentication only (no password or hostbased authentication)
|
||||
|
||||
Crypto primitives
|
||||
|
||||
State-of-the-art crypto: ssh-ed25519, curve25519-sha256@libssh.org, chacha20-poly1305@openssh.com
|
||||
Older standard: ecdsa-sha2-nistp256, ecdh-sha2-nistp256, aes256-ctr, hmac-sha2-256 removed in version 20190101
|
||||
Postquantum crypto: sntrup4591761x25519-sha512@tinyssh.org, chacha20-poly1305@openssh.com
|
||||
</longdescription>
|
||||
<use>
|
||||
<flag name="sodium">Use <pkg>dev-libs/libsodium</pkg> for cryptography</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
@ -1,71 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit systemd toolchain-funcs
|
||||
|
||||
DESCRIPTION="A small SSH server with state-of-the-art cryptography"
|
||||
HOMEPAGE="https://tinyssh.org"
|
||||
if [[ "${PV}" == "9999" ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/janmojzis/tinyssh.git"
|
||||
else
|
||||
SRC_URI="https://github.com/janmojzis/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="public-domain"
|
||||
SLOT="0"
|
||||
|
||||
IUSE="+sodium"
|
||||
|
||||
DEPEND="
|
||||
sodium? ( dev-libs/libsodium )
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
sys-apps/ucspi-tcp
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
# Leave optimization level to user CFLAGS
|
||||
sed -i 's/-Os -fomit-frame-pointer -funroll-loops//g' ./conf-cc || die
|
||||
|
||||
# Use make-tinysshcc.sh script, which has no tests and doesn't execute
|
||||
# binaries. See https://github.com/janmojzis/tinyssh/issues/2
|
||||
sed -i 's/make-tinyssh\.sh/make-tinysshcc.sh/g' ./Makefile || die
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
if use sodium
|
||||
then
|
||||
emake \
|
||||
CC="$(tc-getCC)"
|
||||
LIBS="-lsodium" \
|
||||
CFLAGS="${CFLAGS} -I/usr/include/sodium" \
|
||||
LDFLAGS="${LDFLAGS} -L/usr/lib"
|
||||
else
|
||||
emake CC="$(tc-getCC)"
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dosbin build/bin/tinysshd{,-makekey}
|
||||
dobin build/bin/tinysshd-printkey
|
||||
doman man/*
|
||||
|
||||
newinitd "${FILESDIR}/${PN}.initd" "${PN}"
|
||||
newconfd "${FILESDIR}/${PN}.confd" "${PN}"
|
||||
|
||||
systemd_newunit "${FILESDIR}/${PN}.service" "${PN}@.service"
|
||||
systemd_newunit "${FILESDIR}/${PN}.socket" "${PN}@.socket"
|
||||
systemd_dounit "${FILESDIR}/${PN}-makekey.service"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "TinySSH is in beta stage, and ready for production use."
|
||||
einfo "See https://tinyssh.org for more information."
|
||||
}
|
@ -1,71 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit systemd toolchain-funcs
|
||||
|
||||
DESCRIPTION="A small SSH server with state-of-the-art cryptography"
|
||||
HOMEPAGE="https://tinyssh.org"
|
||||
if [[ "${PV}" == "99999999" ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/janmojzis/tinyssh.git"
|
||||
else
|
||||
SRC_URI="https://github.com/janmojzis/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="CC0-1.0"
|
||||
SLOT="0"
|
||||
|
||||
IUSE="+sodium"
|
||||
|
||||
DEPEND="
|
||||
sodium? ( dev-libs/libsodium )
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
sys-apps/ucspi-tcp
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
# Leave optimization level to user CFLAGS
|
||||
sed -i 's/-Os -fomit-frame-pointer -funroll-loops//g' ./conf-cc || die
|
||||
|
||||
# Use make-tinysshcc.sh script, which has no tests and doesn't execute
|
||||
# binaries. See https://github.com/janmojzis/tinyssh/issues/2
|
||||
sed -i 's/make-tinyssh\.sh/make-tinysshcc.sh/g' ./Makefile || die
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
if use sodium
|
||||
then
|
||||
emake \
|
||||
CC="$(tc-getCC)"
|
||||
LIBS="-lsodium" \
|
||||
CFLAGS="${CFLAGS} -I/usr/include/sodium" \
|
||||
LDFLAGS="${LDFLAGS} -L/usr/lib"
|
||||
else
|
||||
emake CC="$(tc-getCC)"
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dosbin build/bin/tinysshd{,-makekey}
|
||||
dobin build/bin/tinysshd-printkey
|
||||
doman man/*
|
||||
|
||||
newinitd "${FILESDIR}/${PN}.initd" "${PN}"
|
||||
newconfd "${FILESDIR}/${PN}.confd" "${PN}"
|
||||
|
||||
systemd_newunit "${FILESDIR}/${PN}.service" "${PN}@.service"
|
||||
systemd_newunit "${FILESDIR}/${PN}.socket" "${PN}@.socket"
|
||||
systemd_dounit "${FILESDIR}/${PN}-makekey.service"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "TinySSH is in beta stage, and ready for production use."
|
||||
einfo "See https://tinyssh.org for more information."
|
||||
}
|
@ -1,71 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit systemd toolchain-funcs
|
||||
|
||||
DESCRIPTION="A small SSH server with state-of-the-art cryptography"
|
||||
HOMEPAGE="https://tinyssh.org"
|
||||
if [[ "${PV}" == "99999999" ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/janmojzis/tinyssh.git"
|
||||
else
|
||||
SRC_URI="https://github.com/janmojzis/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="CC0-1.0"
|
||||
SLOT="0"
|
||||
|
||||
IUSE="+sodium"
|
||||
|
||||
DEPEND="
|
||||
sodium? ( dev-libs/libsodium )
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
sys-apps/ucspi-tcp
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
# Leave optimization level to user CFLAGS
|
||||
sed -i 's/-Os -fomit-frame-pointer -funroll-loops//g' ./conf-cc || die
|
||||
|
||||
# Use make-tinysshcc.sh script, which has no tests and doesn't execute
|
||||
# binaries. See https://github.com/janmojzis/tinyssh/issues/2
|
||||
sed -i 's/make-tinyssh\.sh/make-tinysshcc.sh/g' ./Makefile || die
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
if use sodium
|
||||
then
|
||||
emake \
|
||||
CC="$(tc-getCC)"
|
||||
LIBS="-lsodium" \
|
||||
CFLAGS="${CFLAGS} -I/usr/include/sodium" \
|
||||
LDFLAGS="${LDFLAGS} -L/usr/lib"
|
||||
else
|
||||
emake CC="$(tc-getCC)"
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dosbin build/bin/tinysshd{,-makekey}
|
||||
dobin build/bin/tinysshd-printkey
|
||||
doman man/*
|
||||
|
||||
newinitd "${FILESDIR}/${PN}.initd" "${PN}"
|
||||
newconfd "${FILESDIR}/${PN}.confd" "${PN}"
|
||||
|
||||
systemd_newunit "${FILESDIR}/${PN}.service" "${PN}@.service"
|
||||
systemd_newunit "${FILESDIR}/${PN}.socket" "${PN}@.socket"
|
||||
systemd_dounit "${FILESDIR}/${PN}-makekey.service"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "TinySSH is in beta stage, and ready for production use."
|
||||
einfo "See https://tinyssh.org for more information."
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user