From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F1AAA138334 for ; Sun, 27 Oct 2019 13:35:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 296EDE08D3; Sun, 27 Oct 2019 13:35:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C1BCE08D3 for ; Sun, 27 Oct 2019 13:35:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A98BF34C382 for ; Sun, 27 Oct 2019 13:35:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 314A1883 for ; Sun, 27 Oct 2019 13:34:59 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1572183289.24b28e0c85ce58bbeeeddb8a705f2d663e262a0b.sping@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: app-editors/dit/ X-VCS-Repository: proj/betagarden X-VCS-Files: app-editors/dit/dit-9999.ebuild X-VCS-Directories: app-editors/dit/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 24b28e0c85ce58bbeeeddb8a705f2d663e262a0b X-VCS-Branch: master Date: Sun, 27 Oct 2019 13:34:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b479b1c2-edbf-4aa6-adff-30d387535b35 X-Archives-Hash: 99f65af1fd4931e94f8ca85e21278c0b commit: 24b28e0c85ce58bbeeeddb8a705f2d663e262a0b Author: Sebastian Pipping gentoo org> AuthorDate: Sun Oct 27 13:32:58 2019 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Oct 27 13:34:49 2019 +0000 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=24b28e0c app-editors/dit: Migrate from subversion to git-r3 + EAPI 7 Signed-off-by: Sebastian Pipping gentoo.org> app-editors/dit/dit-9999.ebuild | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/app-editors/dit/dit-9999.ebuild b/app-editors/dit/dit-9999.ebuild index 89badc9..f917328 100644 --- a/app-editors/dit/dit-9999.ebuild +++ b/app-editors/dit/dit-9999.ebuild @@ -1,26 +1,23 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="3" +EAPI=7 -inherit subversion +inherit git-r3 DESCRIPTION="ncurses-based text editor for Unix systems" HOMEPAGE="http://dit-editor.sourceforge.net/" -ESVN_REPO_URI="https://dit-editor.svn.sourceforge.net/svnroot/dit-editor/trunk" +EGIT_REPO_URI="https://github.com/hishamhm/dit.git" LICENSE="|| ( GPL-2 GPL-3 )" SLOT="0" KEYWORDS="" IUSE="" -DEPEND="dev-lang/lua" +DEPEND="dev-lang/lua:5.3" RDEPEND="${DEPEND}" src_prepare() { + eapply_user ./autogen.sh || die } - -src_install() { - emake DESTDIR="${D}" install || die -}