public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jakov Smolić" <jsmolic@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jdupes/
Date: Mon, 27 Mar 2023 20:17:04 +0000 (UTC)	[thread overview]
Message-ID: <1679947228.f479a16158f4a3ab8edd5388418eeb7ba38ec606.jsmolic@gentoo> (raw)

commit:     f479a16158f4a3ab8edd5388418eeb7ba38ec606
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 27 20:00:28 2023 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Mar 27 20:00:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f479a161

app-misc/jdupes: drop 1.21.0, 1.21.1

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 app-misc/jdupes/Manifest             |  2 --
 app-misc/jdupes/jdupes-1.21.0.ebuild | 44 ------------------------------------
 app-misc/jdupes/jdupes-1.21.1.ebuild | 44 ------------------------------------
 3 files changed, 90 deletions(-)

diff --git a/app-misc/jdupes/Manifest b/app-misc/jdupes/Manifest
index 2b49fddc2fea..f35e6827e877 100644
--- a/app-misc/jdupes/Manifest
+++ b/app-misc/jdupes/Manifest
@@ -1,3 +1 @@
-DIST jdupes-1.21.0.tar.gz 96407 BLAKE2B e1c770826654b7db058b1f311f73cb00f3ef71aa99a71ebd192a73f4f420c5cef8b979af96081c826f7c2b0487710afc6db15df921a9a6dba3816641acab545a SHA512 1671e33175bba16499f5e8a82a1e99e63fd763eb9b195c1e11117e65efbf7a27156b160b86dde6f9d538d6e9690f50e49f8387c4992171f4467c08a866b7d554
-DIST jdupes-1.21.1.tar.gz 97397 BLAKE2B 1d59707fdd0c821ca1bb21333a485deac08bfe66d3d0c5c70f616f8bfc8cce4e6310b2ecc0906fb5caf7031688b49f795d03c4ac4a431d1de4134a960d3167bd SHA512 41419e3947af6bafdf13b787c5c51f59f31db97b8b4a1da47d8c92de31a9a9c9cd6880a38ffdbc9e7dffc821371efee6b2474afd8ce25524a4c015f9465a687f
 DIST jdupes-1.21.3.tar.gz 155979 BLAKE2B b7d978aa8cc4574ce3a201e283a1cfccf6751689725f5307b78e47a9f1defd360d58be3ba2f558a6f40e7108a1ea4f0dd3c14d2332d14278c4114d303da3eea6 SHA512 22284adb1650dc44dfc74320799ac68e02e8d31685dd376d5f938d10308d117ae8af39273fbfec73f7e5a22e9685be96c92f0e12d9ebc81f11c255ada60abe83

diff --git a/app-misc/jdupes/jdupes-1.21.0.ebuild b/app-misc/jdupes/jdupes-1.21.0.ebuild
deleted file mode 100644
index a7b4d25824fd..000000000000
--- a/app-misc/jdupes/jdupes-1.21.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Identify duplicate files on the filesystem"
-HOMEPAGE="https://github.com/jbruchon/jdupes"
-if [[ "${PV}" == *9999 ]] ; then
-	EGIT_REPO_URI="https://github.com/jbruchon/jdupes.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/jbruchon/jdupes/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-LICENSE="MIT"
-SLOT="0"
-
-IUSE="+dedupe lowmem hardened"
-
-# missing test.sh script
-# https://github.com/jbruchon/jdupes/issues/191
-RESTRICT="test"
-
-src_prepare() {
-	sed -i -e '/PREFIX/s/=/?=/' Makefile || die
-	default
-}
-
-src_compile() {
-	tc-export CC
-	local myconf=(
-		$(usex dedupe 'ENABLE_DEDUPE=1' '')
-		$(usex lowmem 'LOW_MEMORY=1' '')
-		$(usex hardened 'HARDEN=1' '')
-	)
-	emake ${myconf[@]}
-}
-
-src_install() {
-	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
-	einstalldocs
-}

diff --git a/app-misc/jdupes/jdupes-1.21.1.ebuild b/app-misc/jdupes/jdupes-1.21.1.ebuild
deleted file mode 100644
index a7b4d25824fd..000000000000
--- a/app-misc/jdupes/jdupes-1.21.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Identify duplicate files on the filesystem"
-HOMEPAGE="https://github.com/jbruchon/jdupes"
-if [[ "${PV}" == *9999 ]] ; then
-	EGIT_REPO_URI="https://github.com/jbruchon/jdupes.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/jbruchon/jdupes/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-LICENSE="MIT"
-SLOT="0"
-
-IUSE="+dedupe lowmem hardened"
-
-# missing test.sh script
-# https://github.com/jbruchon/jdupes/issues/191
-RESTRICT="test"
-
-src_prepare() {
-	sed -i -e '/PREFIX/s/=/?=/' Makefile || die
-	default
-}
-
-src_compile() {
-	tc-export CC
-	local myconf=(
-		$(usex dedupe 'ENABLE_DEDUPE=1' '')
-		$(usex lowmem 'LOW_MEMORY=1' '')
-		$(usex hardened 'HARDEN=1' '')
-	)
-	emake ${myconf[@]}
-}
-
-src_install() {
-	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
-	einstalldocs
-}


             reply	other threads:[~2023-03-27 20:17 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-27 20:17 Jakov Smolić [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-10  7:05 [gentoo-commits] repo/gentoo:master commit in: app-misc/jdupes/ Arthur Zamarin
2025-01-10  7:05 Arthur Zamarin
2024-06-28 14:29 Yixun Lan
2024-06-28 12:59 Sam James
2024-06-18 18:55 Jakov Smolić
2023-11-22 17:10 Jakov Smolić
2023-11-17 12:07 Sam James
2023-10-12 12:38 Jakov Smolić
2023-10-12 12:35 Jakov Smolić
2023-10-12  0:13 Sam James
2023-10-11 21:07 Jakov Smolić
2023-10-11 21:07 Jakov Smolić
2023-10-08  6:44 Sam James
2023-08-27 18:09 Jakov Smolić
2023-08-27 17:18 Sam James
2023-07-25  8:28 Jakov Smolić
2023-07-25  4:55 Joonas Niilola
2023-07-10 12:19 Jakov Smolić
2023-06-27  9:40 Jakov Smolić
2023-06-10 16:38 Jakov Smolić
2023-06-10 16:38 Jakov Smolić
2023-04-27 21:29 Sam James
2023-03-27 20:17 Jakov Smolić
2022-12-11 11:53 Jakov Smolić
2022-12-11 11:53 Jakov Smolić
2022-10-04 15:42 Jakov Smolić
2021-12-21 12:17 Jakov Smolić
2021-12-08 11:26 Jakov Smolić
2021-11-09  8:46 Jakov Smolić
2021-11-04 12:36 Jakov Smolić
2021-10-24  9:21 Jakov Smolić
2021-10-23 14:59 Jakov Smolić
2021-10-23 14:59 Jakov Smolić
2021-10-22 14:23 Jakov Smolić
2021-10-19 11:29 Jakov Smolić
2021-10-19 10:51 Jakov Smolić

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1679947228.f479a16158f4a3ab8edd5388418eeb7ba38ec606.jsmolic@gentoo \
    --to=jsmolic@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox