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 (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9B0DC1580FD for ; Tue, 24 Dec 2024 13:26:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DAA8E07BA; Tue, 24 Dec 2024 13:26:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 88836E07BA for ; Tue, 24 Dec 2024 13:26:42 +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 99E6233FD3F for ; Tue, 24 Dec 2024 13:26:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA60018F1 for ; Tue, 24 Dec 2024 13:26:39 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1735046745.7d71c2c304b828477994b69dee8616829a7f442d.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/utelnetd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/utelnetd/utelnetd-0.1.11-r3.ebuild X-VCS-Directories: net-misc/utelnetd/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 7d71c2c304b828477994b69dee8616829a7f442d X-VCS-Branch: master Date: Tue, 24 Dec 2024 13:26:39 +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: 822bbb89-b74c-4eaa-a41d-e0e1de038a2b X-Archives-Hash: c303b3356f78bd0d98c768a849535b03 commit: 7d71c2c304b828477994b69dee8616829a7f442d Author: Petr Vaněk gentoo org> AuthorDate: Tue Dec 24 13:25:45 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Tue Dec 24 13:25:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d71c2c3 net-misc/utelnetd: drop 0.1.11-r3 Bug: https://bugs.gentoo.org/897954 Signed-off-by: Petr Vaněk gentoo.org> net-misc/utelnetd/utelnetd-0.1.11-r3.ebuild | 34 ----------------------------- 1 file changed, 34 deletions(-) diff --git a/net-misc/utelnetd/utelnetd-0.1.11-r3.ebuild b/net-misc/utelnetd/utelnetd-0.1.11-r3.ebuild deleted file mode 100644 index 7c072e0d028a..000000000000 --- a/net-misc/utelnetd/utelnetd-0.1.11-r3.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="Small telnet daemon derived from the Axis tools" -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86" - -RDEPEND="sys-apps/shadow" - -src_prepare() { - default - - sed -e "/(STRIP)/d" \ - -e "/^CC/s|=.*|= $(tc-getCC)|" \ - -e "/fomit-frame-pointer/d" \ - -i Makefile || die - - append-cppflags -D_GNU_SOURCE #871195 -} - -src_install() { - dosbin utelnetd - einstalldocs - - newinitd "${FILESDIR}"/utelnetd.initd utelnetd -}