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/rainbowcrack/
Date: Sat, 04 Feb 2017 21:40:55
Message-Id: 1486244420.ecfb9287910ae8c158862a227abb7dfcda3f7219.alonbl@gentoo
1 commit: ecfb9287910ae8c158862a227abb7dfcda3f7219
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 4 21:00:32 2017 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 4 21:40:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecfb9287
7
8 app-crypt/rainbowcrack: eapi bump
9
10 Package-Manager: portage-2.3.3
11
12 app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild | 12 ++++++++----
13 1 file changed, 8 insertions(+), 4 deletions(-)
14
15 diff --git a/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild b/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild
16 index 6bde29f..315a8d0 100644
17 --- a/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild
18 +++ b/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild
19 @@ -1,8 +1,8 @@
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 +EAPI=6
27 inherit eutils
28
29 DESCRIPTION="Hash cracker that precomputes plaintext - ciphertext pairs in advance"
30 @@ -24,12 +24,18 @@ QA_PRESTRIPPED="${RAINBOW_DESTDIR}/.*"
31
32 DEPEND="app-arch/unzip"
33
34 +DOCS=(
35 + readme.txt
36 +)
37 +
38 src_unpack() {
39 unpack ${A}
40 mv ${P}-linux* "${S}"
41 }
42
43 src_install() {
44 + einstalldocs
45 +
46 local bin bins="rcrack rt2rtc rtc2rt rtgen rtsort"
47
48 exeinto "/${RAINBOW_DESTDIR}"
49 @@ -41,6 +47,4 @@ src_install() {
50
51 insinto "/${RAINBOW_DESTDIR}"
52 doins charset.txt
53 -
54 - dodoc readme.txt
55 }