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 860A315ACFC for ; Mon, 8 May 2023 18:41:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8CB1E08AE; Mon, 8 May 2023 18:41:54 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AEC0AE08AE for ; Mon, 8 May 2023 18:41:54 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1F9A340E9D for ; Mon, 8 May 2023 18:41:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB8D4A68 for ; Mon, 8 May 2023 18:41:50 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1683571222.072402a17d51a02e6b26211203920a75a70fe2c9.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/farbfeld/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/farbfeld/farbfeld-9999.ebuild X-VCS-Directories: media-gfx/farbfeld/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 072402a17d51a02e6b26211203920a75a70fe2c9 X-VCS-Branch: master Date: Mon, 8 May 2023 18:41:50 +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: b12e1309-ce12-4404-9a1b-1b666a409a7e X-Archives-Hash: cc8b7315de8f5068d98abd0116716ba8 commit: 072402a17d51a02e6b26211203920a75a70fe2c9 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Apr 24 15:52:37 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon May 8 18:40:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=072402a1 media-gfx/farbfeld: remove live ebuild last upstream git commit was from 2018, no reason to keep a live ebuild Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> media-gfx/farbfeld/farbfeld-9999.ebuild | 40 --------------------------------- 1 file changed, 40 deletions(-) diff --git a/media-gfx/farbfeld/farbfeld-9999.ebuild b/media-gfx/farbfeld/farbfeld-9999.ebuild deleted file mode 100644 index 22c5798976ce..000000000000 --- a/media-gfx/farbfeld/farbfeld-9999.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit git-r3 toolchain-funcs - -DESCRIPTION="farbfeld simple image format tools" -HOMEPAGE="https://tools.suckless.org/farbfeld/" -EGIT_REPO_URI="https://git.suckless.org/farbfeld" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="" - -RDEPEND=" - media-libs/libjpeg-turbo - media-libs/libpng:* -" -DEPEND=" - ${RDEPEND} -" - -src_prepare() { - default - - sed -i \ - -e '/^CC/d' \ - -e 's|/usr/local|/usr|g' \ - -e 's|^CFLAGS.*|CFLAGS += -std=c99 -pedantic -Wall -Wextra $(INCS) $(CPPFLAGS)|g' \ - -e 's|^LDFLAGS.*|LDFLAGS += $(LIBS)|g' \ - config.mk || die -} - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - emake DESTDIR="${D}" install MANPREFIX=/usr/share/man -}