Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/
Date: Tue, 01 Aug 2017 21:38:13
Message-Id: 1501623490.2ca53b27dfc551d66895c96bdfc0bad3cbacd596.monsieurp@gentoo
1 commit: 2ca53b27dfc551d66895c96bdfc0bad3cbacd596
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 1 21:36:39 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 1 21:38:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ca53b27
7
8 app-misc/fdupes: EAPI 6 bump.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 app-misc/fdupes/fdupes-1.6.1-r1.ebuild | 29 +++++++++++++++++++++++++++++
13 1 file changed, 29 insertions(+)
14
15 diff --git a/app-misc/fdupes/fdupes-1.6.1-r1.ebuild b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
16 new file mode 100644
17 index 00000000000..b127dfcbd85
18 --- /dev/null
19 +++ b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
20 @@ -0,0 +1,29 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit eutils flag-o-matic toolchain-funcs
27 +
28 +DESCRIPTION="Identify/delete duplicate files residing within specified directories"
29 +HOMEPAGE="https://github.com/adrianlopezroche/fdupes"
30 +SRC_URI="https://github.com/adrianlopezroche/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
31 +
32 +LICENSE="MIT"
33 +SLOT="0"
34 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
35 +
36 +src_prepare() {
37 + default
38 + append-lfs-flags
39 +}
40 +
41 +src_compile() {
42 + emake CC=$(tc-getCC)
43 +}
44 +
45 +src_install() {
46 + dobin "${PN}"
47 + doman "${PN}.1"
48 + einstalldocs
49 +}