Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/unar/
Date: Wed, 23 May 2018 14:59:47
Message-Id: 1527087568.61a451b940e2eb57db4227c6dffc8ca0e13e24b1.asturm@gentoo
1 commit: 61a451b940e2eb57db4227c6dffc8ca0e13e24b1
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 23 14:54:06 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed May 23 14:59:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61a451b9
7
8 app-arch/unar: EAPI 6, slot ops, sort deps, missing || die
9
10 Package-Manager: Portage-2.3.38, Repoman-2.3.9
11
12 app-arch/unar/unar-1.10.1.ebuild | 18 +++++++++++-------
13 1 file changed, 11 insertions(+), 7 deletions(-)
14
15 diff --git a/app-arch/unar/unar-1.10.1.ebuild b/app-arch/unar/unar-1.10.1.ebuild
16 index b482d11dbab..e81a5cd0542 100644
17 --- a/app-arch/unar/unar-1.10.1.ebuild
18 +++ b/app-arch/unar/unar-1.10.1.ebuild
19 @@ -1,7 +1,7 @@
20 -# Copyright 1999-2016 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 inherit toolchain-funcs
28
29 @@ -14,20 +14,24 @@ SLOT="0"
30 KEYWORDS="amd64"
31 IUSE=""
32
33 -RDEPEND="gnustep-base/gnustep-base
34 +RDEPEND="
35 + app-arch/bzip2:=
36 dev-libs/icu:=
37 - sys-libs/zlib
38 - app-arch/bzip2"
39 + gnustep-base/gnustep-base
40 + sys-libs/zlib:=
41 +"
42 DEPEND="${RDEPEND}
43 >=gnustep-base/gnustep-make-2.6.0[native-exceptions]
44 - sys-devel/gcc[objc]"
45 + sys-devel/gcc[objc]
46 +"
47
48 S="${WORKDIR}/The Unarchiver/XADMaster"
49
50 src_prepare() {
51 + default
52 # avoid jobserver warning, upstream bug:
53 # https://bitbucket.org/WAHa_06x36/theunarchiver/issues/918/dont-call-make-from-makefile
54 - sed -i -e 's:make:$(MAKE):g' Makefile.linux
55 + sed -i -e 's:make:$(MAKE):g' Makefile.linux || die
56 }
57
58 src_compile() {