app-misc/rdfind: New package
the build was successful Details

Package-Manager: Portage-2.3.62, Repoman-2.3.11
Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
This commit is contained in:
tastytea 2019-03-27 21:02:21 +01:00
parent 7266de06bb
commit ce526b00d5
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
3 changed files with 53 additions and 0 deletions

13
app-misc/rdfind/Manifest Normal file
View File

@ -0,0 +1,13 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
DIST 1.4.1.tar.gz 53708 BLAKE2B 18778fa65f9c5fda18a59e4021b6346bc5722c19a3796f2b4a85e5c8d919c5f8beeeb8fed572fcce0016e2939568f5e3dc3d3e567178a54ad9ac4e89a1ea77ff SHA512 00d34f46e8534074577a0cd32f71dd8da0b9a7c9a175a612a4a858693ca679de3b77fca1796b543ead796c806a693e97611c0a9fdc743229d317136b32ce89dc
EBUILD rdfind-1.4.1.ebuild 572 BLAKE2B c793de912822ecaaaca6f709ce8341825041d53ed5b77dcf3759bfba366e2a6298a08c35956f5bc92e8aebd75d1eb5ba92885d57989cf193131fa60cc5309ebe SHA512 f0d71f9e5f98f924f108e9b8902afaffbe7a00e2e374b82077096fdd3c9174511d7626085b8806227df124c41c59721d2fea89fbf4e2d1552d62133c72adc47a
MISC metadata.xml 341 BLAKE2B 669410cbbbd2cd8e96968bb82db8c99ed0b4b69340a298429cdc3dd634ba6967bc311f7ed788856db94fb3b40b79e84f9426bc1d3615b75b962222321f1a2428 SHA512 0875af47ef61db2d7460104a151dc53c6bc44de042e38516f6382d9ec0836cd54065ca935fe17c976ff2cfb9a162a61535a4f66a97ce030856766c5de0ea7692
-----BEGIN PGP SIGNATURE-----
iHUEAREIAB0WIQQ1VSZoZMptf/RapufPw5SX8bJuBwUCXJvWzQAKCRDPw5SX8bJu
ByEkAPkBHd3AqRHzRiLo0iOly/Rhoi8yMnK1Cd7lLmVqP22GOQD+NmrdT3r13jxW
P2jusqjdMh/uNyK7/9xrc+QAAfoysfE=
=HfbI
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,11 @@
<?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>tastytea</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/pauldreik/rdfind/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,29 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="Rdfind is a program that finds duplicate files."
HOMEPAGE="https://github.com/pauldreik/rdfind"
SRC_URI="https://github.com/pauldreik/rdfind/archive/releases/${PV}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/nettle"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}-releases-${PV}"
src_prepare() {
# NOTE: Commands are from bootstrap.sh.
eaclocal
eautoheader
eautomake
eautoconf
default
}