public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: app-misc/rdfind/
@ 2020-04-21 10:20 Andrew Ammerlaan
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2020-04-21 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     27b9b97eaf4b87a9365dd2dca469cde909540af8
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon Apr 20 20:07:27 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Apr 20 20:15:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=27b9b97e

app-misc/rdfind: New package.

Rdfind is a command line tool that finds duplicate files.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-misc/rdfind/Manifest            |  1 +
 app-misc/rdfind/metadata.xml        | 18 ++++++++++++++++++
 app-misc/rdfind/rdfind-1.4.1.ebuild | 29 +++++++++++++++++++++++++++++
 3 files changed, 48 insertions(+)

diff --git a/app-misc/rdfind/Manifest b/app-misc/rdfind/Manifest
new file mode 100644
index 0000000..6b72256
--- /dev/null
+++ b/app-misc/rdfind/Manifest
@@ -0,0 +1 @@
+DIST rdfind-1.4.1.tar.gz 53708 BLAKE2B 18778fa65f9c5fda18a59e4021b6346bc5722c19a3796f2b4a85e5c8d919c5f8beeeb8fed572fcce0016e2939568f5e3dc3d3e567178a54ad9ac4e89a1ea77ff SHA512 00d34f46e8534074577a0cd32f71dd8da0b9a7c9a175a612a4a858693ca679de3b77fca1796b543ead796c806a693e97611c0a9fdc743229d317136b32ce89dc

diff --git a/app-misc/rdfind/metadata.xml b/app-misc/rdfind/metadata.xml
new file mode 100644
index 0000000..507fa3a
--- /dev/null
+++ b/app-misc/rdfind/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>gentoo@tastytea.de</email>
+		<name>Ronny (tastytea) Gutbrod</name>
+	</maintainer>
+	<longdescription lang="en">
+		Rdfind is a command line tool that finds duplicate files. It is
+		useful for compressing backup directories or just finding
+		duplicate files. It compares files based on their content, NOT
+		on their file names.
+	</longdescription>
+	<upstream>
+		<bugs-to>https://github.com/pauldreik/rdfind/issues</bugs-to>
+		<doc>https://rdfind.pauldreik.se/rdfind.1.html</doc>
+	</upstream>
+</pkgmetadata>

diff --git a/app-misc/rdfind/rdfind-1.4.1.ebuild b/app-misc/rdfind/rdfind-1.4.1.ebuild
new file mode 100644
index 0000000..5b0396f
--- /dev/null
+++ b/app-misc/rdfind/rdfind-1.4.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Find duplicate files"
+HOMEPAGE="https://github.com/pauldreik/rdfind"
+SRC_URI="https://github.com/pauldreik/rdfind/archive/releases/${PV}.tar.gz -> ${PN}-${PV}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm"
+IUSE=""
+
+DEPEND="dev-libs/nettle"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}-releases-${PV}"
+
+src_configure() {
+	# NOTE: Commands are from bootstrap.sh.
+	eaclocal
+	eautoheader
+	eautomake --add-missing
+	eautoconf
+	default
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-misc/rdfind/
@ 2020-04-21 14:20 Andrew Ammerlaan
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2020-04-21 14:20 UTC (permalink / raw
  To: gentoo-commits

commit:     ab0a38628e7508edaec436075c4c1d8caab995ab
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue Apr 21 13:04:41 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 21 13:07:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ab0a3862

app-misc/rdfind: Move autoconf from configure to prepare phase.

Reported-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-misc/rdfind/rdfind-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/rdfind/rdfind-1.4.1.ebuild b/app-misc/rdfind/rdfind-1.4.1.ebuild
index 5b0396f..336b048 100644
--- a/app-misc/rdfind/rdfind-1.4.1.ebuild
+++ b/app-misc/rdfind/rdfind-1.4.1.ebuild
@@ -19,7 +19,7 @@ RDEPEND="${DEPEND}"
 
 S="${WORKDIR}/${PN}-releases-${PV}"
 
-src_configure() {
+src_prepare() {
 	# NOTE: Commands are from bootstrap.sh.
 	eaclocal
 	eautoheader


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: app-misc/rdfind/
@ 2020-11-28 13:57 Andrew Ammerlaan
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2020-11-28 13:57 UTC (permalink / raw
  To: gentoo-commits

commit:     f553050324189d8733922cfb7f371252de6f59d9
Author:     Theo Anderson <telans <AT> posteo <DOT> de>
AuthorDate: Sat Nov 28 07:53:41 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Nov 28 07:53:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f5530503

app-misc/rdfind: add bdepend sys-devel/autoconf-archive

fixes:
./configure:line <snip>: syntax error near unexpected token 11,noext,mandatory

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Theo Anderson <telans <AT> posteo.de>

 app-misc/rdfind/rdfind-1.4.1.ebuild | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/app-misc/rdfind/rdfind-1.4.1.ebuild b/app-misc/rdfind/rdfind-1.4.1.ebuild
index 336b0483..4158dee8 100644
--- a/app-misc/rdfind/rdfind-1.4.1.ebuild
+++ b/app-misc/rdfind/rdfind-1.4.1.ebuild
@@ -12,18 +12,14 @@ SRC_URI="https://github.com/pauldreik/rdfind/archive/releases/${PV}.tar.gz -> ${
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~arm"
-IUSE=""
 
-DEPEND="dev-libs/nettle"
-RDEPEND="${DEPEND}"
+RDEPEND="dev-libs/nettle"
+DEPEND="${RDEPEND}"
+BDEPEND="sys-devel/autoconf-archive"
 
 S="${WORKDIR}/${PN}-releases-${PV}"
 
 src_prepare() {
-	# NOTE: Commands are from bootstrap.sh.
-	eaclocal
-	eautoheader
-	eautomake --add-missing
-	eautoconf
 	default
+	eautoreconf
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-11-28 13:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-28 13:57 [gentoo-commits] repo/proj/guru:master commit in: app-misc/rdfind/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2020-04-21 14:20 Andrew Ammerlaan
2020-04-21 10:20 Andrew Ammerlaan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox