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/squashdelta: squashdelta-0.1.ebuild ChangeLog
Date: Sat, 29 Mar 2014 11:57:22
Message-Id: 20140329115719.D6FE820054@flycatcher.gentoo.org
1 mgorny 14/03/29 11:57:19
2
3 Modified: ChangeLog
4 Added: squashdelta-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.3 dev-util/squashdelta/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/squashdelta/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/squashdelta/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/squashdelta/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/squashdelta/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 24 Mar 2014 17:34:28 -0000 1.2
24 +++ ChangeLog 29 Mar 2014 11:57:19 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/squashdelta
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/squashdelta/ChangeLog,v 1.2 2014/03/24 17:34:28 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/squashdelta/ChangeLog,v 1.3 2014/03/29 11:57:19 mgorny Exp $
30 +
31 +*squashdelta-0.1 (29 Mar 2014)
32 +
33 + 29 Mar 2014; Michał Górny <mgorny@g.o> +squashdelta-0.1.ebuild:
34 + Bump to the release.
35
36 24 Mar 2014; Michał Górny <mgorny@g.o> squashdelta-9999.ebuild:
37 Enable LZO by default since it is going to be used by Gentoo, and require at
38
39
40
41 1.1 dev-util/squashdelta/squashdelta-0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/squashdelta/squashdelta-0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/squashdelta/squashdelta-0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: squashdelta-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/squashdelta/squashdelta-0.1.ebuild,v 1.1 2014/03/29 11:57:19 mgorny Exp $
51
52 EAPI=5
53
54 inherit autotools-utils
55
56 DESCRIPTION="Efficient (partially uncompressed) SquashFS binary delta tool"
57 HOMEPAGE="https://bitbucket.org/mgorny/squashdelta/"
58 SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2"
59
60 # uses public-domain murmurhash3
61 LICENSE="BSD public-domain"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="lz4 +lzo"
65
66 COMMON_DEPEND="
67 lz4? ( app-arch/lz4:0= )
68 lzo? ( dev-libs/lzo:2= )"
69 RDEPEND="${COMMON_DEPEND}
70 dev-util/xdelta:3"
71 DEPEND=${COMMON_DEPEND}
72
73 # SquashDelta does not make much sense without a compression algo.
74 REQUIRED_USE="|| ( lz4 lzo )"
75
76 src_configure() {
77 local myeconfargs=(
78 $(use_enable lz4)
79 $(use_enable lzo)
80 )
81
82 autotools-utils_src_configure
83 }