Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/zile/
Date: Sat, 01 Jul 2017 08:36:43
Message-Id: 1498898111.9e3aa0f3e4470acbf013d5048bef5c9230990a98.ulm@gentoo
1 commit: 9e3aa0f3e4470acbf013d5048bef5c9230990a98
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 1 08:34:04 2017 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 1 08:35:11 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e3aa0f3
7
8 app-editors/zile: Bump ebuild to EAPI 6.
9
10 Also add slot dependency on ncurses.
11
12 Package-Manager: Portage-2.3.6, Repoman-2.3.2
13
14 .../zile/{zile-2.3.24-r1.ebuild => zile-2.3.24-r2.ebuild} | 11 +++--------
15 1 file changed, 3 insertions(+), 8 deletions(-)
16
17 diff --git a/app-editors/zile/zile-2.3.24-r1.ebuild b/app-editors/zile/zile-2.3.24-r2.ebuild
18 similarity index 84%
19 rename from app-editors/zile/zile-2.3.24-r1.ebuild
20 rename to app-editors/zile/zile-2.3.24-r2.ebuild
21 index a826b16dc35..49d18af5637 100644
22 --- a/app-editors/zile/zile-2.3.24-r1.ebuild
23 +++ b/app-editors/zile/zile-2.3.24-r2.ebuild
24 @@ -1,9 +1,7 @@
25 # Copyright 1999-2017 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=4
29 -
30 -inherit eutils
31 +EAPI=6
32
33 DESCRIPTION="Zile is a small Emacs clone"
34 HOMEPAGE="https://www.gnu.org/software/zile/"
35 @@ -14,14 +12,11 @@ SLOT="0"
36 KEYWORDS="alpha amd64 ppc sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
37 IUSE="test valgrind"
38
39 -RDEPEND="sys-libs/ncurses"
40 +RDEPEND="sys-libs/ncurses:0"
41 DEPEND="${RDEPEND}
42 test? ( valgrind? ( dev-util/valgrind ) )"
43
44 -src_prepare() {
45 - epatch "${FILESDIR}/${P}-userhome.patch"
46 - epatch "${FILESDIR}/${P}-gets.patch"
47 -}
48 +PATCHES=("${FILESDIR}"/${P}-{userhome,gets}.patch)
49
50 src_configure() {
51 econf $(use test && use_with valgrind || echo "--without-valgrind")