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: Tue, 09 Oct 2018 08:21:51
Message-Id: 1539073292.2330941f1384f181b87568a88db33a9df5403dac.alonbl@gentoo
1 commit: 2330941f1384f181b87568a88db33a9df5403dac
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 9 08:21:20 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 9 08:21:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2330941f
7
8 app-crypt/ssdeep: version bump
9
10 Signed-off-by: Alon Bar-Lev <alonbl <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 app-crypt/ssdeep/Manifest | 1 +
14 app-crypt/ssdeep/ssdeep-2.14.1.ebuild | 44 +++++++++++++++++++++++++++++++++++
15 2 files changed, 45 insertions(+)
16
17 diff --git a/app-crypt/ssdeep/Manifest b/app-crypt/ssdeep/Manifest
18 index f926965558b..7c523b282bc 100644
19 --- a/app-crypt/ssdeep/Manifest
20 +++ b/app-crypt/ssdeep/Manifest
21 @@ -1 +1,2 @@
22 DIST ssdeep-2.13.tar.gz 380712 BLAKE2B 8f5e81a7043fce72e05d45aed963067456c0f344ca66dc9c34cbf5206ba1a497315e0219344ac99815b342a811d2af16d2409421311102288e19084dafd80f22 SHA512 26473f1b8801398534c674d7fdd6e87cf4d7862ed91454bb22865f8b6cf885c777250d0d1cdf2c20a28fdf4961c3b21e505e82f37fb75486a9442902d96f5186
23 +DIST ssdeep-2.14.1.tar.gz 408831 BLAKE2B 7e0709a18876a192568e37d1deb63df11f2feadaff7b53c3bcb3a9f2566b18897e50b7543a29ec5cd3132981bcaf4609615793f31fa9cf654334e8fc5a90afac SHA512 a8f87e21f654d482a67709da273cf58808af377cfcb20f189986bad58530e382f8f1d3a5eaf33aa02284015a6fa7ccfc7fc383e487de6e0e4f57405a16537217
24
25 diff --git a/app-crypt/ssdeep/ssdeep-2.14.1.ebuild b/app-crypt/ssdeep/ssdeep-2.14.1.ebuild
26 new file mode 100644
27 index 00000000000..cd1c9c5b5c2
28 --- /dev/null
29 +++ b/app-crypt/ssdeep/ssdeep-2.14.1.ebuild
30 @@ -0,0 +1,44 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit autotools multilib-minimal
37 +
38 +DESCRIPTION="Computes context triggered piecewise hashes (fuzzy hashes)"
39 +HOMEPAGE="http://ssdeep.sourceforge.net/"
40 +SRC_URI="https://github.com/${PN}-project/${PN}/releases/download/release-${PV}/${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="static-libs"
46 +
47 +DOCS=(
48 + AUTHORS
49 + ChangeLog
50 + FILEFORMAT
51 + NEWS
52 + README
53 + TODO
54 +)
55 +
56 +PATCHES=(
57 + "${FILESDIR}/${PN}-2.10-shared.patch"
58 +)
59 +
60 +src_prepare() {
61 + default
62 + eautoreconf
63 +}
64 +
65 +multilib_src_configure() {
66 + ECONF_SOURCE="${S}" \
67 + econf \
68 + $(use_enable static-libs static)
69 +}
70 +
71 +multilib_src_install_all() {
72 + einstalldocs
73 + find "${D}" -name '*.la' -delete || die
74 +}