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: Sun, 02 Dec 2018 16:00:40
Message-Id: 1543766219.d2db5b5fda1da416ee27da1b205a61470bb49d02.mgorny@gentoo
1 commit: d2db5b5fda1da416ee27da1b205a61470bb49d02
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 2 15:07:54 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 2 15:56:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2db5b5f
7
8 sys-fs/duperemove: Bump to 0.11.1 (bugfix)
9
10 Closes: https://bugs.gentoo.org/672354
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.1.ebuild | 30 ++++++++++++++++++++++++++++++
15 2 files changed, 31 insertions(+)
16
17 diff --git a/sys-fs/duperemove/Manifest b/sys-fs/duperemove/Manifest
18 index b6a7f81bb59..45de93d439e 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.tar.gz 115307 BLAKE2B 39fa9f80c017583c8943a5cddd1c69f38216adad26548c248e1877548717995d7b80f03f0e1c1515648aaad90996c80c224bb36fa27f13fe14fb22a123facf48 SHA512 b1bc2beb92223f9b46f8838e2f983ec763a9dff302f4202a34cc5e10591b985519f0464b6eba566c56872e671ba80583c7fdf4a232325086141d011384a286cf
24
25 diff --git a/sys-fs/duperemove/duperemove-0.11.1.ebuild b/sys-fs/duperemove/duperemove-0.11.1.ebuild
26 new file mode 100644
27 index 00000000000..995cb2060b3
28 --- /dev/null
29 +++ b/sys-fs/duperemove/duperemove-0.11.1.ebuild
30 @@ -0,0 +1,30 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="Btrfs 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_compile() {
55 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall"
56 +}
57 +
58 +src_install() {
59 + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
60 +}