commit: 11b7c4c500156fc37240f8fac18057310e0109e0 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me> AuthorDate: Thu May 1 21:59:56 2025 +0000 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> CommitDate: Thu May 15 17:47:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11b7c4c5
net-misc/tinyssh: drop 20250201 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me> Part-of: https://github.com/gentoo/gentoo/pull/41888 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org> net-misc/tinyssh/Manifest | 1 - net-misc/tinyssh/tinyssh-20250201.ebuild | 60 -------------------------------- 2 files changed, 61 deletions(-) diff --git a/net-misc/tinyssh/Manifest b/net-misc/tinyssh/Manifest index ff1f24244582..9587f30f7571 100644 --- a/net-misc/tinyssh/Manifest +++ b/net-misc/tinyssh/Manifest @@ -1,2 +1 @@ -DIST tinyssh-20250201.tar.gz 301543 BLAKE2B c5455f9c62717b5a29a741d8e296d5a9199319d492eb40cdafb8a61c2ef24cda4ad890d80d38e554e290f563749bd742df7dcfd1df1098f0a136fb37e689e6dd SHA512 3496967b72ee13ad22f30ba6877f58467ffc39adeb33005268f014c69615bd1c8a4e4bc2071345050e73409e9d064bb039316fb7300aa94d8f5917603f34fd2d DIST tinyssh-20250411.tar.gz 421627 BLAKE2B 36664a06815201a342891fdfaa4adf4d9225ca2254702a1a8f3d5e7c13ab78a28889cbf575241007a737e05b3758e8b67c6202e6f3f5db96b9e031cee626a622 SHA512 849fa29757b8f2967cabd1a86e36a2e89c512f1d4495e084e63d1245f6294d21612f792f7dc6924bad301338959219638bf1caa3cc35d4b8135fa1f764440b60 diff --git a/net-misc/tinyssh/tinyssh-20250201.ebuild b/net-misc/tinyssh/tinyssh-20250201.ebuild deleted file mode 100644 index 3ff059060c0b..000000000000 --- a/net-misc/tinyssh/tinyssh-20250201.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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 0BSD MIT-0 MIT )" -SLOT="0" - -RDEPEND=" - ${DEPEND} - sys-apps/ucspi-tcp -" - -src_prepare() { - default - - echo 'gentoo-autoheaders: $(AUTOHEADERS)' >> Makefile || die -} - -src_configure() { - tc-export CC - - emake gentoo-autoheaders - - local i - for i in has*.log - do - einfo "$i" - cat "$i" - done -} - -src_install() { - einstalldocs - emake install DESTDIR="${D}" PREFIX=/usr - - 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." -}