From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A353513835A for ; Tue, 3 Nov 2020 08:24:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03255E0AC0; Tue, 3 Nov 2020 08:24:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DE2DDE0ABE for ; Tue, 3 Nov 2020 08:24:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 105A2340D33 for ; Tue, 3 Nov 2020 08:24:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4F89436 for ; Tue, 3 Nov 2020 08:24:11 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1604391846.e32ef6e70e3121038cb3c22acdb4180421c41c05.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/duperemove/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/duperemove/Manifest sys-fs/duperemove/duperemove-0.11.2.ebuild X-VCS-Directories: sys-fs/duperemove/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e32ef6e70e3121038cb3c22acdb4180421c41c05 X-VCS-Branch: master Date: Tue, 3 Nov 2020 08:24:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9666b070-d489-4778-91e4-b1038838c2b1 X-Archives-Hash: 9ff9846a43570ffcb9bf603835339aa8 commit: e32ef6e70e3121038cb3c22acdb4180421c41c05 Author: Michał Górny gentoo org> AuthorDate: Tue Nov 3 08:15:33 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 3 08:24:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e32ef6e7 sys-fs/duperemove: Bump to 0.11.2 Closes: https://bugs.gentoo.org/707792 Signed-off-by: Michał Górny gentoo.org> sys-fs/duperemove/Manifest | 1 + sys-fs/duperemove/duperemove-0.11.2.ebuild | 35 ++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/sys-fs/duperemove/Manifest b/sys-fs/duperemove/Manifest index 06ec96bc426..c176fd3124c 100644 --- a/sys-fs/duperemove/Manifest +++ b/sys-fs/duperemove/Manifest @@ -1 +1,2 @@ DIST duperemove-0.11.1.tar.gz 115740 BLAKE2B 7804f1c98cdeb349ae12425636575c9b2468613dfe908d8c9f1d9fb74aefb412142002a0fc899b8448ed1b255257569555264b9d9c172899f856a919d02dd1a8 SHA512 3c344b00b8fb58a259840aea977ba2e5123b651bb58ec84177bdfd8337a377361984b85c6325271b7d3e4ea216017fa6fda793136c83e9837a13ec041df326b9 +DIST duperemove-0.11.2.tar.gz 158001 BLAKE2B 743f59319424f7fcd400bc24de056fb79fddcb2600a707446c2f1c13c26cdae2ae24e1a91d9edadef55aaafb01b7ca217defc4c939053981bddaca12fcc230e9 SHA512 d2b24c912a3ae4a5b9730ba1369b6174cc6fe252710dc7dae2971816e931558ea68d664bf4c9497630dd9002a71fccc26848ad848831fa45d7a7715ba65378e5 diff --git a/sys-fs/duperemove/duperemove-0.11.2.ebuild b/sys-fs/duperemove/duperemove-0.11.2.ebuild new file mode 100644 index 00000000000..245dba098bc --- /dev/null +++ b/sys-fs/duperemove/duperemove-0.11.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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 +}