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 B0A36158089 for ; Sun, 1 Oct 2023 18:15:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04F5C2BC134; Sun, 1 Oct 2023 18:15:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E56EA2BC134 for ; Sun, 1 Oct 2023 18:15:04 +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 35E3F335C39 for ; Sun, 1 Oct 2023 18:15:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA4DC8D8 for ; Sun, 1 Oct 2023 18:15:02 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1696184080.32f9cba2a7381f366ffed6b5e86481df15025451.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ccze/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/ccze/ccze-0.2.1-r4.ebuild X-VCS-Directories: app-admin/ccze/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 32f9cba2a7381f366ffed6b5e86481df15025451 X-VCS-Branch: master Date: Sun, 1 Oct 2023 18:15:02 +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: 37a05d47-15fc-4a36-a5df-d1df39bc126f X-Archives-Hash: 8230e032f1ead6459192549025b7ada1 commit: 32f9cba2a7381f366ffed6b5e86481df15025451 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 1 18:12:28 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 1 18:14:40 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32f9cba2 app-admin/ccze: drop 0.2.1-r4 Bug: https://bugs.gentoo.org/914845 Signed-off-by: Andreas Sturmlechner gentoo.org> app-admin/ccze/ccze-0.2.1-r4.ebuild | 45 ------------------------------------- 1 file changed, 45 deletions(-) diff --git a/app-admin/ccze/ccze-0.2.1-r4.ebuild b/app-admin/ccze/ccze-0.2.1-r4.ebuild deleted file mode 100644 index b2374ea76464..000000000000 --- a/app-admin/ccze/ccze-0.2.1-r4.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools fixheadtails toolchain-funcs - -DESCRIPTION="A flexible and fast logfile colorizer" -HOMEPAGE="https://git.madhouse-project.org/archive/ccze" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ppc x86" - -RESTRICT="test" - -DEPEND="dev-libs/libpcre - sys-libs/ncurses:0=" -RDEPEND="${DEPEND}" - -DOCS=( AUTHORS ChangeLog ChangeLog-0.1 NEWS THANKS README FAQ ) - -PATCHES=( - "${FILESDIR}"/ccze-fbsd.patch - "${FILESDIR}"/ccze-segfault.patch - "${FILESDIR}"/ccze-ldflags.patch - "${FILESDIR}"/${P}-tinfo.patch -) - -src_prepare() { - default - - # GCC 4.x fixes - sed -e 's/-Wswitch -Wmulticharacter/-Wswitch/' \ - -i src/Makefile.in || die - sed -e '/AC_CHECK_TYPE(error_t, int)/d' \ - -i configure.ac || die - - eautoreconf - - ht_fix_file Rules.mk.in - - tc-export CC -}