From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5878615806E for ; Sat, 3 Jun 2023 05:42:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82286E0885; Sat, 3 Jun 2023 05:42:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65C42E0885 for ; Sat, 3 Jun 2023 05:42:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5C1D93412EF for ; Sat, 3 Jun 2023 05:42:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B75D0A86 for ; Sat, 3 Jun 2023 05:42:03 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1685770879.04aac61dc416a21f4f9cd14e919e945b2b8e852e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/endlessh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/endlessh/endlessh-9999.ebuild X-VCS-Directories: net-misc/endlessh/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 04aac61dc416a21f4f9cd14e919e945b2b8e852e X-VCS-Branch: master Date: Sat, 3 Jun 2023 05:42:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c4378118-d0cd-498d-8e03-0c34c6da1537 X-Archives-Hash: 53ff4800b8ddca400cfeed03478bb42b commit: 04aac61dc416a21f4f9cd14e919e945b2b8e852e Author: Sam James gentoo org> AuthorDate: Sat Jun 3 05:41:19 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 3 05:41:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04aac61d net-misc/endlessh: drop 9999 ulm pointed out that there's not much point in this given low upstream activity, and he's right. Drop. Signed-off-by: Sam James gentoo.org> net-misc/endlessh/endlessh-9999.ebuild | 56 ---------------------------------- 1 file changed, 56 deletions(-) diff --git a/net-misc/endlessh/endlessh-9999.ebuild b/net-misc/endlessh/endlessh-9999.ebuild deleted file mode 100644 index 60a4cd2633ee..000000000000 --- a/net-misc/endlessh/endlessh-9999.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 2019-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit systemd toolchain-funcs - -DESCRIPTION="SSH tarpit that slowly sends and endless banner" -HOMEPAGE="https://github.com/skeeto/endlessh" - -if [[ ${PV} == "9999" ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/skeeto/${PN}.git" -else - SRC_URI="https://github.com/skeeto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm ~arm64 ppc64 x86" -fi - -LICENSE="Unlicense" -SLOT="0" - -src_prepare() { - default - - tc-export CC - - sed -i \ - -e 's/^CC/CC?/' \ - -e 's/^CFLAGS =/CFLAGS +=/' \ - -e 's/ -Os//' \ - -e 's/^LDFLAGS/LDFLAGS?/' \ - -e 's/^PREFIX/PREFIX?/' \ - Makefile || die - - sed -i -e "/^ExecStart=/ s:=/usr/local:=${EPREFIX}/usr:" \ - -e /InaccessiblePaths/d util/endlessh.service || die -} - -src_install() { - emake DESTDIR="${D}" PREFIX=/usr install - - einstalldocs - - newinitd "${FILESDIR}"/endlessh.initd endlessh - newconfd "${FILESDIR}"/endlessh.confd endlessh - - systemd_dounit util/endlessh.service - - insinto /usr/share/${PN} - doins util/{pivot.py,schema.sql} -} - -pkg_postinst() { - elog "Log parsing script installed to ${EPREFIX}/usr/share/${PN}" - elog "Install dev-python/pyrfc3339 if you are going to use it" -}