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/mhash/
Date: Fri, 21 Sep 2018 20:02:59
Message-Id: 1537555211.732cdf7f0505e97e8bb18dc394ee7be419e3c778.alonbl@gentoo
1 commit: 732cdf7f0505e97e8bb18dc394ee7be419e3c778
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Sep 21 18:35:59 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 21 18:40:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=732cdf7f
7
8 app-crypt/mhash: ebuild cleanups
9
10 Closes: https://bugs.gentoo.org/666724
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Package-Manager: Portage-2.3.49, Repoman-2.3.10
13
14 app-crypt/mhash/mhash-0.9.9.9-r2.ebuild | 5 ++---
15 1 file changed, 2 insertions(+), 3 deletions(-)
16
17 diff --git a/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild b/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild
18 index 300d6c81abe..0c3993c9d67 100644
19 --- a/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild
20 +++ b/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild
21 @@ -2,7 +2,6 @@
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=6
25 -inherit ltprune
26
27 DESCRIPTION="library providing a uniform interface to a large number of hash algorithms"
28 HOMEPAGE="http://mhash.sourceforge.net/"
29 @@ -39,7 +38,7 @@ src_prepare() {
30 default
31 sed -i \
32 -e 's/--netscape//' \
33 - "${S}"/doc/Makefile.in
34 + "${S}"/doc/Makefile.in || die
35 }
36
37 src_configure() {
38 @@ -56,5 +55,5 @@ src_compile() {
39
40 src_install() {
41 default
42 - prune_libtool_files
43 + find "${D}" -name '*.la' -delete || die
44 }