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 C07F8158099 for ; Wed, 29 Nov 2023 15:46:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6DFF12BC01A; Wed, 29 Nov 2023 15:46:42 +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 562B22BC01A for ; Wed, 29 Nov 2023 15:46: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 97009335D35 for ; Wed, 29 Nov 2023 15:46:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C455913F7 for ; Wed, 29 Nov 2023 15:46:39 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1701272772.038d6a355d2b4b7bbbf0a29a8a4fe0f284b5b47b.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/regex-markup/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/regex-markup/regex-markup-0.10.0-r1.ebuild X-VCS-Directories: app-misc/regex-markup/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 038d6a355d2b4b7bbbf0a29a8a4fe0f284b5b47b X-VCS-Branch: master Date: Wed, 29 Nov 2023 15:46: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: 2668017b-9123-449f-b3c1-d49754275909 X-Archives-Hash: b5454cd248d323ac1e0366092587353f commit: 038d6a355d2b4b7bbbf0a29a8a4fe0f284b5b47b Author: Ulrich Müller gentoo org> AuthorDate: Wed Nov 29 15:45:22 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Nov 29 15:46:12 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=038d6a35 app-misc/regex-markup: drop 0.10.0-r1 Signed-off-by: Ulrich Müller gentoo.org> .../regex-markup/regex-markup-0.10.0-r1.ebuild | 36 ---------------------- 1 file changed, 36 deletions(-) diff --git a/app-misc/regex-markup/regex-markup-0.10.0-r1.ebuild b/app-misc/regex-markup/regex-markup-0.10.0-r1.ebuild deleted file mode 100644 index 042bcb70aa2d..000000000000 --- a/app-misc/regex-markup/regex-markup-0.10.0-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic - -DESCRIPTION="A tool to color syslog files as well" -HOMEPAGE="http://www.nongnu.org/regex-markup/" -SRC_URI="https://savannah.nongnu.org/download/regex-markup/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="examples nls" - -PATCHES=( - "${FILESDIR}/${P}-locale.patch" -) - -src_configure() { - # fix #570960 by restoring pre-GCC5 inline semantics - append-cflags -std=gnu89 - - econf \ - --enable-largefile \ - $(use_enable nls) -} - -src_install() { - default - if use examples; then - cd examples || die - emake -f Makefile - fi -}