From 0830973559e6046d9903a647c0d07eb5c48ebf36 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Tue, 10 Aug 2021 07:31:35 +0200 Subject: sys-fs/duperemove: Bump to 0.11.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- sys-fs/duperemove/Manifest | 1 + sys-fs/duperemove/duperemove-0.11.3.ebuild | 35 ++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 sys-fs/duperemove/duperemove-0.11.3.ebuild (limited to 'sys-fs/duperemove') diff --git a/sys-fs/duperemove/Manifest b/sys-fs/duperemove/Manifest index 1ca6438a0737..cdb25bf834fe 100644 --- a/sys-fs/duperemove/Manifest +++ b/sys-fs/duperemove/Manifest @@ -1 +1,2 @@ DIST duperemove-0.11.2.tar.gz 158001 BLAKE2B 743f59319424f7fcd400bc24de056fb79fddcb2600a707446c2f1c13c26cdae2ae24e1a91d9edadef55aaafb01b7ca217defc4c939053981bddaca12fcc230e9 SHA512 d2b24c912a3ae4a5b9730ba1369b6174cc6fe252710dc7dae2971816e931558ea68d664bf4c9497630dd9002a71fccc26848ad848831fa45d7a7715ba65378e5 +DIST duperemove-0.11.3.tar.gz 158446 BLAKE2B 58b654517e1f69749e944aefd8f8784826f066c72686a2a61525e600ebbf42b14f0d7870727f1834e437ec2146a95022fa7efc644f1a2aa54bf573b3dc710b0b SHA512 e76154a7c01a8b7094d2b3bce77880ff90e42d365fc331fc409ddb5f775db7d51d86c2954cf7e0d6021c4a6dc609f525d657502c6aba7e8b9119482eeca45358 diff --git a/sys-fs/duperemove/duperemove-0.11.3.ebuild b/sys-fs/duperemove/duperemove-0.11.3.ebuild new file mode 100644 index 000000000000..116961235a22 --- /dev/null +++ b/sys-fs/duperemove/duperemove-0.11.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Btrfs and xfs deduplication utility" +HOMEPAGE="https://github.com/markfasheh/duperemove" +SRC_URI="https://github.com/markfasheh/duperemove/archive/v${PV/_/.}.tar.gz -> ${P/_/.}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-db/sqlite:3 + dev-libs/glib:2" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${P/_/.} + +src_prepare() { + sed -i -e "/VER/s:0.12.dev:${PV}:" Makefile || die + default +} + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall" +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} -- cgit v1.2.3-65-gdbad