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 C2EB81581FB for ; Fri, 30 Aug 2024 13:11:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1B7CE29EE; Fri, 30 Aug 2024 13:11:53 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AEA70E29EA for ; Fri, 30 Aug 2024 13:11:53 +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 8E7CA343052 for ; Fri, 30 Aug 2024 13:11:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 009B014D6 for ; Fri, 30 Aug 2024 13:11:50 +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: <1725023481.41c21577f9d220344d85bc7c8f1ea72aa43df0c7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libfstrcmp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libfstrcmp/libfstrcmp-0.7-r1.ebuild X-VCS-Directories: dev-libs/libfstrcmp/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 41c21577f9d220344d85bc7c8f1ea72aa43df0c7 X-VCS-Branch: master Date: Fri, 30 Aug 2024 13:11: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: 2c549602-df8f-448b-b839-6a6b61857215 X-Archives-Hash: 277a1d549840867fd1c03bed402d0b09 commit: 41c21577f9d220344d85bc7c8f1ea72aa43df0c7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Aug 29 19:46:08 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 30 13:11:21 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41c21577 dev-libs/libfstrcmp: drop 0.7-r1 Bug: https://bugs.gentoo.org/926358 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/libfstrcmp/libfstrcmp-0.7-r1.ebuild | 44 ---------------------------- 1 file changed, 44 deletions(-) diff --git a/dev-libs/libfstrcmp/libfstrcmp-0.7-r1.ebuild b/dev-libs/libfstrcmp/libfstrcmp-0.7-r1.ebuild deleted file mode 100644 index 01f2a6f1a330..000000000000 --- a/dev-libs/libfstrcmp/libfstrcmp-0.7-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Make fuzzy comparisons of strings and byte arrays" -HOMEPAGE="http://fstrcmp.sourceforge.net/" - -LICENSE="GPL-3+" -IUSE="doc static-libs test" -SLOT="0" - -SRC_URI="http://fstrcmp.sourceforge.net/fstrcmp-0.7.D001.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/fstrcmp-0.7.D001" -KEYWORDS="amd64 ~arm arm64 x86" - -DEPEND=" - sys-apps/groff - doc? ( app-text/ghostscript-gpl ) - test? ( app-text/ghostscript-gpl ) -" -RESTRICT="!test? ( test )" - -src_prepare() { - default - eautoreconf -} - -src_compile() { - emake all-bin - use doc && emake all-doc -} - -src_install() { - emake DESTDIR="${D}" install-bin install-include install-libdir install-man - find "${D}" -name '*.la' -delete || die - if ! use static-libs ; then - find "${D}" -name '*.a' -delete || die - fi - use doc && emake DESTDIR="${D}" install-doc - einstalldocs -}