Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: app-editors/dit/
Date: Sun, 27 Oct 2019 13:35:03
Message-Id: 1572183289.24b28e0c85ce58bbeeeddb8a705f2d663e262a0b.sping@gentoo
1 commit: 24b28e0c85ce58bbeeeddb8a705f2d663e262a0b
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 27 13:32:58 2019 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 27 13:34:49 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=24b28e0c
7
8 app-editors/dit: Migrate from subversion to git-r3 + EAPI 7
9
10 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
11
12 app-editors/dit/dit-9999.ebuild | 15 ++++++---------
13 1 file changed, 6 insertions(+), 9 deletions(-)
14
15 diff --git a/app-editors/dit/dit-9999.ebuild b/app-editors/dit/dit-9999.ebuild
16 index 89badc9..f917328 100644
17 --- a/app-editors/dit/dit-9999.ebuild
18 +++ b/app-editors/dit/dit-9999.ebuild
19 @@ -1,26 +1,23 @@
20 -# Copyright 1999-2011 Gentoo Foundation
21 +# Copyright 1999-2019 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI="3"
25 +EAPI=7
26
27 -inherit subversion
28 +inherit git-r3
29
30 DESCRIPTION="ncurses-based text editor for Unix systems"
31 HOMEPAGE="http://dit-editor.sourceforge.net/"
32 -ESVN_REPO_URI="https://dit-editor.svn.sourceforge.net/svnroot/dit-editor/trunk"
33 +EGIT_REPO_URI="https://github.com/hishamhm/dit.git"
34
35 LICENSE="|| ( GPL-2 GPL-3 )"
36 SLOT="0"
37 KEYWORDS=""
38 IUSE=""
39
40 -DEPEND="dev-lang/lua"
41 +DEPEND="dev-lang/lua:5.3"
42 RDEPEND="${DEPEND}"
43
44 src_prepare() {
45 + eapply_user
46 ./autogen.sh || die
47 }
48 -
49 -src_install() {
50 - emake DESTDIR="${D}" install || die
51 -}