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 52A6F1581FB for ; Thu, 29 Aug 2024 19:03:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1ED142BC01C; Thu, 29 Aug 2024 19:03:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 069632BC01C for ; Thu, 29 Aug 2024 19:03:09 +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 52EAD342FA0 for ; Thu, 29 Aug 2024 19:03:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13B6A1F36 for ; Thu, 29 Aug 2024 19:03:05 +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: <1724958154.668487a46c1a3d25246370eaf0af86f804698686.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.ebuild X-VCS-Directories: dev-libs/libfstrcmp/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 668487a46c1a3d25246370eaf0af86f804698686 X-VCS-Branch: master Date: Thu, 29 Aug 2024 19:03:05 +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: 7a23ffd5-b9fa-447d-a342-e2652bb04711 X-Archives-Hash: 9c7ac0ceca38f318eafb6b5c52426860 commit: 668487a46c1a3d25246370eaf0af86f804698686 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Aug 29 17:22:52 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Aug 29 19:02:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=668487a4 dev-libs/libfstrcmp: drop 0.7 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/libfstrcmp/libfstrcmp-0.7.ebuild | 40 ------------------------------- 1 file changed, 40 deletions(-) diff --git a/dev-libs/libfstrcmp/libfstrcmp-0.7.ebuild b/dev-libs/libfstrcmp/libfstrcmp-0.7.ebuild deleted file mode 100644 index 91ebc6ed8a52..000000000000 --- a/dev-libs/libfstrcmp/libfstrcmp-0.7.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2018 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 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 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 - use doc && emake DESTDIR="${D}" install-doc - einstalldocs -}