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 648E5158089 for ; Sat, 7 Oct 2023 22:36:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CF802BC061; Sat, 7 Oct 2023 22:35:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 473872BC061 for ; Sat, 7 Oct 2023 22:35:56 +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 863EA335CB4 for ; Sat, 7 Oct 2023 22:35:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03CDB9EA for ; Sat, 7 Oct 2023 22:35:54 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1696718145.5d6d2d506eb442743459bb18f6b2670237112409.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/sent/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/sent/sent-9999.ebuild X-VCS-Directories: x11-misc/sent/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 5d6d2d506eb442743459bb18f6b2670237112409 X-VCS-Branch: master Date: Sat, 7 Oct 2023 22:35:54 +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: acd88036-da78-4a25-93e5-a4439012f8be X-Archives-Hash: d22a54553296bf4639fd75e28aa29a77 commit: 5d6d2d506eb442743459bb18f6b2670237112409 Author: David Seifert gentoo org> AuthorDate: Sat Oct 7 22:35:45 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Oct 7 22:35:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d6d2d50 x11-misc/sent: drop 9999 Signed-off-by: David Seifert gentoo.org> x11-misc/sent/sent-9999.ebuild | 44 ------------------------------------------ 1 file changed, 44 deletions(-) diff --git a/x11-misc/sent/sent-9999.ebuild b/x11-misc/sent/sent-9999.ebuild deleted file mode 100644 index 08ec94ec84d1..000000000000 --- a/x11-misc/sent/sent-9999.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit git-r3 savedconfig toolchain-funcs - -DESCRIPTION="Simple plaintext presentation tool" -HOMEPAGE="https://tools.suckless.org/sent/" -EGIT_REPO_URI="https://git.suckless.org/sent/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" - -DEPEND=" - media-libs/fontconfig - x11-libs/libX11 - x11-libs/libXft -" -RDEPEND=" - ${DEPEND} - !savedconfig? ( media-gfx/farbfeld ) -" - -src_prepare() { - default - - sed -i \ - -e 's|^ @| |g' \ - -e 's|@${CC}|$(CC)|g' \ - -e '/^ echo/d' \ - Makefile || die - - restore_config config.h -} - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="/usr" install - save_config config.h -}