Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnustep-apps/gemas/
Date: Sat, 06 Nov 2021 22:35:17
Message-Id: 1636238100.2665e86cb449382a293ec9f8d58502679f1c6bf8.voyageur@gentoo
1 commit: 2665e86cb449382a293ec9f8d58502679f1c6bf8
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 6 22:32:58 2021 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 6 22:35:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2665e86c
7
8 gnustep-apps/gemas: bump EAPI
9
10 Closes: https://bugs.gentoo.org/819999
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
13
14 gnustep-apps/gemas/{gemas-0.4.ebuild => gemas-0.4-r1.ebuild} | 12 +++++-------
15 1 file changed, 5 insertions(+), 7 deletions(-)
16
17 diff --git a/gnustep-apps/gemas/gemas-0.4.ebuild b/gnustep-apps/gemas/gemas-0.4-r1.ebuild
18 similarity index 79%
19 rename from gnustep-apps/gemas/gemas-0.4.ebuild
20 rename to gnustep-apps/gemas/gemas-0.4-r1.ebuild
21 index 779333075a6..276c00b2e2f 100644
22 --- a/gnustep-apps/gemas/gemas-0.4.ebuild
23 +++ b/gnustep-apps/gemas/gemas-0.4-r1.ebuild
24 @@ -1,8 +1,8 @@
25 # Copyright 1999-2021 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=5
29 -inherit epatch gnustep-2
30 +EAPI=7
31 +inherit gnustep-2
32
33 MY_P=${P/g/G}
34 DESCRIPTION="a simple code editor for GNUstep"
35 @@ -21,15 +21,13 @@ RDEPEND="${DEPEND}"
36
37 S=${WORKDIR}/${MY_P}
38
39 -src_prepare() {
40 - epatch "${FILESDIR}"/${P}-bundle_makefile.patch
41 -}
42 +PATCHES=( "${FILESDIR}"/${P}-bundle_makefile.patch )
43
44 src_compile() {
45 gnustep-base_src_compile
46 if use projectcenter;
47 then
48 - cd Bundle/Gemas || die "compile cd failed"
49 + cd Bundle/Gemas || die
50 egnustep_make
51 fi
52 }
53 @@ -38,7 +36,7 @@ src_install() {
54 gnustep-base_src_install
55 if use projectcenter;
56 then
57 - cd Bundle/Gemas || die "install cd failed"
58 + cd Bundle/Gemas || die
59 egnustep_install
60 fi
61 }