Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/
Date: Sat, 10 Sep 2022 00:29:52
Message-Id: 1662769360.11a7378f0ce419a1fe5495c534a54e87b42fabcc.sam@gentoo
1 commit: 11a7378f0ce419a1fe5495c534a54e87b42fabcc
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 10 00:10:34 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 10 00:22:40 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11a7378f
7
8 app-misc/fdupes: add 2.2.1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-misc/fdupes/Manifest | 1 +
13 app-misc/fdupes/fdupes-2.2.1.ebuild | 43 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/app-misc/fdupes/Manifest b/app-misc/fdupes/Manifest
17 index 9deb6e1a8c25..15eaaa82b7c3 100644
18 --- a/app-misc/fdupes/Manifest
19 +++ b/app-misc/fdupes/Manifest
20 @@ -1,2 +1,3 @@
21 DIST fdupes-2.1.2.tar.gz 142266 BLAKE2B caf949b87baf0fecc87fef58f512d0a99e1219b57bc167992b0e40841ce67e5ddcf5307de7fc9c70f173e75aab4a12eb86abef0084084b5119f95326509ea665 SHA512 9c3761e7ce34f2d9d1b5ee49ebc3bf665e3d45e4146231bc77d7416801fbfa70415e80c81c64962897766ee068d1a103609895d783f20a765c351d4cd433323d
22 DIST fdupes-2.2.0.tar.gz 144763 BLAKE2B 26a6f003b6e1b536d02da1f4b5e9051c3da19ae67c6cbdfb3cf2060ae68288b9ebdf64ca911e60126a6646895f6a6d7158c23b28c20b415ee341a8dd29820aaf SHA512 83f7bb9c3dc44ef5356c02b1db7f7f0e5698f2b73dfbb8ea1176e9a7399167a7ffd8d416036792ede1ba106dfb221d72708f7e483ce96fb7faf6c23a4f43128b
23 +DIST fdupes-2.2.1.tar.gz 144719 BLAKE2B 904fd70650847e48e135e47ef77e244ee847151f6ff88ccda2aeba5158038de8507b2ea23a7172e9c1fcd634ae38601c66da225014b9cfd65fd506ce77e7d408 SHA512 4911d2f776480691e7bd7045c181d49159add5b479188b05f0878a7af365cee0e430093e71ff172c04b876c58efc3be0f24c9d25f0cdebf1c869931175bc8608
24
25 diff --git a/app-misc/fdupes/fdupes-2.2.1.ebuild b/app-misc/fdupes/fdupes-2.2.1.ebuild
26 new file mode 100644
27 index 000000000000..3578fdc09788
28 --- /dev/null
29 +++ b/app-misc/fdupes/fdupes-2.2.1.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="Identify/delete duplicate files residing within specified directories"
39 +HOMEPAGE="https://github.com/adrianlopezroche/fdupes"
40 +if [[ ${PV} == *9999 ]] ; then
41 + EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git"
42 + inherit autotools git-r3
43 +else
44 + SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz"
45 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
46 +fi
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +IUSE="+ncurses"
51 +
52 +RDEPEND="
53 + dev-libs/libpcre2[pcre32]
54 + ncurses? ( sys-libs/ncurses:= )
55 +"
56 +DEPEND="${RDEPEND}"
57 +BDEPEND="virtual/pkgconfig"
58 +
59 +DOCS=( CHANGES CONTRIBUTORS README )
60 +
61 +src_prepare() {
62 + default
63 +
64 + [[ ${PV} == *9999 ]] && eautoreconf
65 +}
66 +
67 +src_configure() {
68 + econf $(use_with ncurses)
69 +}
70 +
71 +src_compile() {
72 + emake CC="$(tc-getCC)"
73 +}