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 7B7CE139694 for ; Tue, 1 Aug 2017 21:38:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2D0E1FC059; Tue, 1 Aug 2017 21:38:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 B4F831FC059 for ; Tue, 1 Aug 2017 21:38:12 +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 B9CEF341845 for ; Tue, 1 Aug 2017 21:38:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A7D975D0 for ; Tue, 1 Aug 2017 21:38:10 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1501623490.2ca53b27dfc551d66895c96bdfc0bad3cbacd596.monsieurp@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-r1.ebuild X-VCS-Directories: app-misc/fdupes/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 2ca53b27dfc551d66895c96bdfc0bad3cbacd596 X-VCS-Branch: master Date: Tue, 1 Aug 2017 21:38:10 +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-Archives-Salt: d2c7b19c-6bf5-49e7-8d96-a1dfd306102e X-Archives-Hash: 4430545141bd81eeab35eebb908944b6 commit: 2ca53b27dfc551d66895c96bdfc0bad3cbacd596 Author: Patrice Clement gentoo org> AuthorDate: Tue Aug 1 21:36:39 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Aug 1 21:38:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ca53b27 app-misc/fdupes: EAPI 6 bump. Package-Manager: Portage-2.3.6, Repoman-2.3.1 app-misc/fdupes/fdupes-1.6.1-r1.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/app-misc/fdupes/fdupes-1.6.1-r1.ebuild b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild new file mode 100644 index 00000000000..b127dfcbd85 --- /dev/null +++ b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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" + +src_prepare() { + default + append-lfs-flags +} + +src_compile() { + emake CC=$(tc-getCC) +} + +src_install() { + dobin "${PN}" + doman "${PN}.1" + einstalldocs +}