Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/ssdeep/
Date: Sat, 04 Feb 2017 01:32:21
Message-Id: 1486171854.70a7119d4351260accb6cd5c4827b60fa58aee87.alonbl@gentoo
1 commit: 70a7119d4351260accb6cd5c4827b60fa58aee87
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 4 00:54:22 2017 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 4 01:30:54 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70a7119d
7
8 app-crypt/ssdeep: eapi bump
9
10 Package-Manager: portage-2.3.3
11
12 app-crypt/ssdeep/ssdeep-2.13.ebuild | 25 +++++++++++++++++++------
13 1 file changed, 19 insertions(+), 6 deletions(-)
14
15 diff --git a/app-crypt/ssdeep/ssdeep-2.13.ebuild b/app-crypt/ssdeep/ssdeep-2.13.ebuild
16 index 718d5f7..44711c7 100644
17 --- a/app-crypt/ssdeep/ssdeep-2.13.ebuild
18 +++ b/app-crypt/ssdeep/ssdeep-2.13.ebuild
19 @@ -1,11 +1,10 @@
20 -# Copyright 1999-2015 Gentoo Foundation
21 +# Copyright 1999-2017 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 -EAPI=5
26 -AUTOTOOLS_AUTORECONF=1
27 +EAPI=6
28
29 -inherit autotools-multilib
30 +inherit autotools multilib-minimal
31
32 DESCRIPTION="Computes context triggered piecewise hashes (fuzzy hashes)"
33 HOMEPAGE="http://ssdeep.sourceforge.net/"
34 @@ -16,6 +15,20 @@ SLOT="0"
35 KEYWORDS="~amd64 ~x86"
36 IUSE="static-libs"
37
38 -DOCS=( AUTHORS ChangeLog FILEFORMAT NEWS README TODO )
39 +DOCS=(
40 + AUTHORS ChangeLog FILEFORMAT NEWS README TODO
41 +)
42
43 -PATCHES=( "${FILESDIR}"/${PN}-2.10-shared.patch )
44 +PATCHES=(
45 + "${FILESDIR}/${PN}-2.10-shared.patch"
46 +)
47 +
48 +src_prepare() {
49 + default
50 + eautoreconf
51 +}
52 +
53 +multilib_src_configure() {
54 + ECONF_SOURCE=${S} \
55 + econf
56 +}