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