Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/duperemove/
Date: Tue, 03 Nov 2020 08:24:15
Message-Id: 1604391846.e32ef6e70e3121038cb3c22acdb4180421c41c05.mgorny@gentoo
1 commit: e32ef6e70e3121038cb3c22acdb4180421c41c05
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 3 08:15:33 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 3 08:24:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e32ef6e7
7
8 sys-fs/duperemove: Bump to 0.11.2
9
10 Closes: https://bugs.gentoo.org/707792
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 sys-fs/duperemove/Manifest | 1 +
14 sys-fs/duperemove/duperemove-0.11.2.ebuild | 35 ++++++++++++++++++++++++++++++
15 2 files changed, 36 insertions(+)
16
17 diff --git a/sys-fs/duperemove/Manifest b/sys-fs/duperemove/Manifest
18 index 06ec96bc426..c176fd3124c 100644
19 --- a/sys-fs/duperemove/Manifest
20 +++ b/sys-fs/duperemove/Manifest
21 @@ -1 +1,2 @@
22 DIST duperemove-0.11.1.tar.gz 115740 BLAKE2B 7804f1c98cdeb349ae12425636575c9b2468613dfe908d8c9f1d9fb74aefb412142002a0fc899b8448ed1b255257569555264b9d9c172899f856a919d02dd1a8 SHA512 3c344b00b8fb58a259840aea977ba2e5123b651bb58ec84177bdfd8337a377361984b85c6325271b7d3e4ea216017fa6fda793136c83e9837a13ec041df326b9
23 +DIST duperemove-0.11.2.tar.gz 158001 BLAKE2B 743f59319424f7fcd400bc24de056fb79fddcb2600a707446c2f1c13c26cdae2ae24e1a91d9edadef55aaafb01b7ca217defc4c939053981bddaca12fcc230e9 SHA512 d2b24c912a3ae4a5b9730ba1369b6174cc6fe252710dc7dae2971816e931558ea68d664bf4c9497630dd9002a71fccc26848ad848831fa45d7a7715ba65378e5
24
25 diff --git a/sys-fs/duperemove/duperemove-0.11.2.ebuild b/sys-fs/duperemove/duperemove-0.11.2.ebuild
26 new file mode 100644
27 index 00000000000..245dba098bc
28 --- /dev/null
29 +++ b/sys-fs/duperemove/duperemove-0.11.2.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="Btrfs and xfs deduplication utility"
39 +HOMEPAGE="https://github.com/markfasheh/duperemove"
40 +SRC_URI="https://github.com/markfasheh/duperemove/archive/v${PV/_/.}.tar.gz -> ${P/_/.}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +RDEPEND="
48 + dev-db/sqlite:3
49 + dev-libs/glib:2"
50 +DEPEND="${RDEPEND}"
51 +
52 +S=${WORKDIR}/${P/_/.}
53 +
54 +src_prepare() {
55 + sed -i -e "/VER/s:0.12.dev:${PV}:" Makefile || die
56 + default
57 +}
58 +
59 +src_compile() {
60 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall"
61 +}
62 +
63 +src_install() {
64 + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
65 +}