Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/squashmerge: squashmerge-0.1.ebuild ChangeLog
Date: Sat, 29 Mar 2014 11:57:08
Message-Id: 20140329115705.5588720054@flycatcher.gentoo.org
1 mgorny 14/03/29 11:57:05
2
3 Modified: ChangeLog
4 Added: squashmerge-0.1.ebuild
5 Log:
6 Bump to the release.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.5 dev-util/squashmerge/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/squashmerge/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/squashmerge/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/squashmerge/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/squashmerge/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 24 Mar 2014 17:48:09 -0000 1.4
24 +++ ChangeLog 29 Mar 2014 11:57:05 -0000 1.5
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/squashmerge
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/squashmerge/ChangeLog,v 1.4 2014/03/24 17:48:09 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/squashmerge/ChangeLog,v 1.5 2014/03/29 11:57:05 mgorny Exp $
30 +
31 +*squashmerge-0.1 (29 Mar 2014)
32 +
33 + 29 Mar 2014; Michał Górny <mgorny@g.o> +squashmerge-0.1.ebuild:
34 + Bump to the release.
35
36 24 Mar 2014; Michał Górny <mgorny@g.o> squashmerge-9999.ebuild:
37 Install file format doc.
38
39
40
41 1.1 dev-util/squashmerge/squashmerge-0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/squashmerge/squashmerge-0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/squashmerge/squashmerge-0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: squashmerge-0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/squashmerge/squashmerge-0.1.ebuild,v 1.1 2014/03/29 11:57:05 mgorny Exp $
51
52 EAPI=5
53
54 inherit autotools-utils
55
56 DESCRIPTION="dev-util/squashdelta delta merge tool"
57 HOMEPAGE="https://bitbucket.org/mgorny/squashmerge/"
58 SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2"
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="lz4 +lzo"
64
65 COMMON_DEPEND="
66 lz4? ( app-arch/lz4:0= )
67 lzo? ( dev-libs/lzo:2= )"
68 RDEPEND="${COMMON_DEPEND}
69 dev-util/xdelta:3"
70 DEPEND=${COMMON_DEPEND}
71
72 # SquashDelta does not make much sense without a compression algo.
73 REQUIRED_USE="|| ( lz4 lzo )"
74
75 DOCS=( FORMAT )
76
77 src_configure() {
78 local myeconfargs=(
79 $(use_enable lz4)
80 $(use_enable lzo)
81 )
82
83 autotools-utils_src_configure
84 }