Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/jfsutils/
Date: Thu, 20 Aug 2020 17:50:45
Message-Id: 1597945817.38babfee16ab1c8ce57bed8d84fc00b452d77bef.whissi@gentoo
1 commit: 38babfee16ab1c8ce57bed8d84fc00b452d77bef
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 20 17:32:36 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 20 17:50:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38babfee
7
8 sys-fs/jfsutils: migrate to EAPI=7
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 sys-fs/jfsutils/jfsutils-1.1.15-r1.ebuild | 16 ++++++++--------
13 1 file changed, 8 insertions(+), 8 deletions(-)
14
15 diff --git a/sys-fs/jfsutils/jfsutils-1.1.15-r1.ebuild b/sys-fs/jfsutils/jfsutils-1.1.15-r1.ebuild
16 index 9d17529ffec..b618e667ca7 100644
17 --- a/sys-fs/jfsutils/jfsutils-1.1.15-r1.ebuild
18 +++ b/sys-fs/jfsutils/jfsutils-1.1.15-r1.ebuild
19 @@ -1,9 +1,9 @@
20 # Copyright 1999-2020 Gentoo Authors
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=5
24 +EAPI=7
25
26 -inherit flag-o-matic eutils
27 +inherit flag-o-matic
28
29 DESCRIPTION="IBM's Journaling Filesystem (JFS) Utilities"
30 HOMEPAGE="http://jfs.sourceforge.net/"
31 @@ -16,10 +16,10 @@ IUSE="static"
32
33 DOCS=( AUTHORS ChangeLog NEWS README )
34
35 -src_prepare() {
36 - epatch "${FILESDIR}"/${P}-linux-headers.patch #448844
37 - epatch "${FILESDIR}"/${P}-sysmacros.patch #580056
38 -}
39 +PATCHES=(
40 + "${FILESDIR}"/${P}-linux-headers.patch #448844
41 + "${FILESDIR}"/${P}-sysmacros.patch #580056
42 +)
43
44 src_configure() {
45 # It doesn't compile on alpha without this LDFLAGS
46 @@ -33,6 +33,6 @@ src_install() {
47 default
48
49 rm -f "${ED}"/sbin/{mkfs,fsck}.jfs || die
50 - dosym /sbin/jfs_mkfs /sbin/mkfs.jfs
51 - dosym /sbin/jfs_fsck /sbin/fsck.jfs
52 + dosym jfs_mkfs /sbin/mkfs.jfs
53 + dosym jfs_fsck /sbin/fsck.jfs
54 }