From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 667BE139085 for ; Sat, 4 Feb 2017 21:40:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 899FA21C1BB; Sat, 4 Feb 2017 21:40:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 664E321C1B9 for ; Sat, 4 Feb 2017 21:40:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5892B34162D for ; Sat, 4 Feb 2017 21:40:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3DB9B3DC6 for ; Sat, 4 Feb 2017 21:40:36 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1486244420.ecfb9287910ae8c158862a227abb7dfcda3f7219.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/rainbowcrack/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild X-VCS-Directories: app-crypt/rainbowcrack/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: ecfb9287910ae8c158862a227abb7dfcda3f7219 X-VCS-Branch: master Date: Sat, 4 Feb 2017 21:40:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0f126a34-a781-4056-841f-a3e165242e60 X-Archives-Hash: cd280cd1928486df3f84e743415a640b commit: ecfb9287910ae8c158862a227abb7dfcda3f7219 Author: Alon Bar-Lev gentoo org> AuthorDate: Sat Feb 4 21:00:32 2017 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Sat Feb 4 21:40:20 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecfb9287 app-crypt/rainbowcrack: eapi bump Package-Manager: portage-2.3.3 app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild b/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild index 6bde29f..315a8d0 100644 --- a/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild +++ b/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit eutils DESCRIPTION="Hash cracker that precomputes plaintext - ciphertext pairs in advance" @@ -24,12 +24,18 @@ QA_PRESTRIPPED="${RAINBOW_DESTDIR}/.*" DEPEND="app-arch/unzip" +DOCS=( + readme.txt +) + src_unpack() { unpack ${A} mv ${P}-linux* "${S}" } src_install() { + einstalldocs + local bin bins="rcrack rt2rtc rtc2rt rtgen rtsort" exeinto "/${RAINBOW_DESTDIR}" @@ -41,6 +47,4 @@ src_install() { insinto "/${RAINBOW_DESTDIR}" doins charset.txt - - dodoc readme.txt }