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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9D54A138359 for ; Sat, 26 Sep 2020 19:40:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64214E082B; Sat, 26 Sep 2020 19:40:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4F0C4E0829 for ; Sat, 26 Sep 2020 19:40:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0A8E3340CF2 for ; Sat, 26 Sep 2020 19:40:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7884237B for ; Sat, 26 Sep 2020 19:40:33 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1601149212.bd9de21bbc3f79e7987b87d27d56e30775de1a63.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/fdupes/fdupes-1.6.1.ebuild X-VCS-Directories: app-misc/fdupes/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: bd9de21bbc3f79e7987b87d27d56e30775de1a63 X-VCS-Branch: master Date: Sat, 26 Sep 2020 19:40:33 +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: 2514899d-f23a-4024-b715-5ab5a0210ba1 X-Archives-Hash: f3515b4e55ebbe07af2f342b23e0085f commit: bd9de21bbc3f79e7987b87d27d56e30775de1a63 Author: Aaron Bauman gentoo org> AuthorDate: Sat Sep 26 19:11:24 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Sep 26 19:40:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd9de21b app-misc/fdupes: drop old EAPI=5 Signed-off-by: Aaron Bauman gentoo.org> app-misc/fdupes/fdupes-1.6.1.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/app-misc/fdupes/fdupes-1.6.1.ebuild b/app-misc/fdupes/fdupes-1.6.1.ebuild deleted file mode 100644 index 2858047c4d5..00000000000 --- a/app-misc/fdupes/fdupes-1.6.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="Identify/delete duplicate files residing within specified directories" -HOMEPAGE="https://github.com/adrianlopezroche/fdupes" -SRC_URI="https://github.com/adrianlopezroche/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" -IUSE="" - -src_prepare() { - append-lfs-flags -} - -src_compile() { - emake CC=$(tc-getCC) -} - -src_install() { - dobin fdupes - doman fdupes.1 - dodoc CHANGES CONTRIBUTORS README TODO -}