Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jdupes/
Date: Tue, 21 Dec 2021 12:17:45
Message-Id: 1640089054.48906b93c9a5d6d46dcbee0ad7ca9584d07578d7.jsmolic@gentoo
1 commit: 48906b93c9a5d6d46dcbee0ad7ca9584d07578d7
2 Author: Jakov Petrina <jakov.petrina <AT> sartura <DOT> hr>
3 AuthorDate: Tue Dec 21 12:13:33 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 21 12:17:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48906b93
7
8 app-misc/jdupes: drop 1.20.2
9
10 Signed-off-by: Jakov Petrina <jakov.petrina <AT> sartura.hr>
11 Closes: https://github.com/gentoo/gentoo/pull/23455
12 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
13
14 app-misc/jdupes/jdupes-1.20.2.ebuild | 37 ------------------------------------
15 1 file changed, 37 deletions(-)
16
17 diff --git a/app-misc/jdupes/jdupes-1.20.2.ebuild b/app-misc/jdupes/jdupes-1.20.2.ebuild
18 deleted file mode 100644
19 index 681f1d0f1493..000000000000
20 --- a/app-misc/jdupes/jdupes-1.20.2.ebuild
21 +++ /dev/null
22 @@ -1,37 +0,0 @@
23 -# Copyright 2021 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=8
27 -
28 -inherit toolchain-funcs
29 -
30 -DESCRIPTION="Identify duplicate files on the filesystem"
31 -HOMEPAGE="https://github.com/jbruchon/jdupes"
32 -if [[ "${PV}" == *9999 ]] ; then
33 - EGIT_REPO_URI="https://github.com/jbruchon/jdupes.git"
34 - inherit git-r3
35 -else
36 - SRC_URI="https://github.com/jbruchon/jdupes/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
37 - KEYWORDS="~amd64"
38 -fi
39 -LICENSE="MIT"
40 -SLOT="0"
41 -
42 -# missing test.sh script
43 -# https://github.com/jbruchon/jdupes/issues/191
44 -RESTRICT="test"
45 -
46 -src_prepare() {
47 - sed -i -e '/PREFIX/s/=/?=/' Makefile || die
48 - default
49 -}
50 -
51 -src_compile() {
52 - tc-export CC
53 - default
54 -}
55 -
56 -src_install() {
57 - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
58 - einstalldocs
59 -}