Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/md5deep/
Date: Wed, 15 Aug 2018 23:22:05
Message-Id: 1534375314.1f8c1629cb21629ebe46ed72a977587947e20215.blueness@gentoo
1 commit: 1f8c1629cb21629ebe46ed72a977587947e20215
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 15 23:21:28 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 15 23:21:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f8c1629
7
8 app-crypt/md5deep: bump to EAPI 6
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-crypt/md5deep/md5deep-4.4.ebuild | 12 ++++++++----
13 1 file changed, 8 insertions(+), 4 deletions(-)
14
15 diff --git a/app-crypt/md5deep/md5deep-4.4.ebuild b/app-crypt/md5deep/md5deep-4.4.ebuild
16 index b2488ffb059..1a6290cbfcd 100644
17 --- a/app-crypt/md5deep/md5deep-4.4.ebuild
18 +++ b/app-crypt/md5deep/md5deep-4.4.ebuild
19 @@ -1,10 +1,9 @@
20 -# Copyright 1999-2014 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=5
25 +EAPI=6
26
27 -AUTOTOOLS_AUTORECONF=1
28 -inherit autotools-utils
29 +inherit autotools
30
31 DESCRIPTION="Expanded md5sum program with recursive and comparison options"
32 HOMEPAGE="http://md5deep.sourceforge.net/"
33 @@ -19,3 +18,8 @@ IUSE=""
34 S=${WORKDIR}/hashdeep-release-${PV}
35
36 DOCS=( AUTHORS ChangeLog FILEFORMAT NEWS README.md TODO )
37 +
38 +src_prepare() {
39 + eapply_user
40 + eautoreconf
41 +}