Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/duperemove: duperemove-0.09.5.ebuild ChangeLog
Date: Wed, 08 Jul 2015 19:19:06
Message-Id: 20150708191855.2AC71755@oystercatcher.gentoo.org
1 mgorny 15/07/08 19:18:55
2
3 Modified: ChangeLog
4 Added: duperemove-0.09.5.ebuild
5 Log:
6 Version bump with some bugfixes and improvements. The new version can deduplicate partial blocks.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.5 sys-fs/duperemove/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-fs/duperemove/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 2 Jul 2015 06:26:59 -0000 1.4
24 +++ ChangeLog 8 Jul 2015 19:18:55 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-fs/duperemove
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/duperemove/ChangeLog,v 1.4 2015/07/02 06:26:59 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/duperemove/ChangeLog,v 1.5 2015/07/08 19:18:55 mgorny Exp $
30 +
31 +*duperemove-0.09.5 (08 Jul 2015)
32 +
33 + 08 Jul 2015; Michał Górny <mgorny@g.o> +duperemove-0.09.5.ebuild:
34 + Version bump with some bugfixes and improvements. The new version can
35 + deduplicate partial blocks.
36
37 *duperemove-0.09.4 (02 Jul 2015)
38
39
40
41
42 1.1 sys-fs/duperemove/duperemove-0.09.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/duperemove-0.09.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/duperemove/duperemove-0.09.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: duperemove-0.09.5.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-fs/duperemove/duperemove-0.09.5.ebuild,v 1.1 2015/07/08 19:18:55 mgorny Exp $
52
53 EAPI=5
54
55 inherit eutils toolchain-funcs
56
57 DESCRIPTION="Btrfs deduplication utility"
58 HOMEPAGE="https://github.com/markfasheh/duperemove"
59 SRC_URI="https://github.com/markfasheh/duperemove/archive/v${PV}.tar.gz -> ${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE=""
65
66 RDEPEND="dev-libs/glib:2=
67 dev-libs/libgcrypt:0="
68 DEPEND="${RDEPEND}"
69
70 src_compile() {
71 # CC & CFLAGS are set via = so need to override them
72 # LIBRARY_FLAGS are set via += so need to pass them via env
73 export LIBRARY_FLAGS="${LDFLAGS}"
74 emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall"
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" PREFIX="/usr" install
79 }