From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1DB0B59CAF for ; Mon, 4 Apr 2016 23:15:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5F29E079B; Mon, 4 Apr 2016 23:15:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84800E079B for ; Mon, 4 Apr 2016 23:15:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E8F4A340D35 for ; Mon, 4 Apr 2016 23:15:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA67F82 for ; Mon, 4 Apr 2016 23:15:32 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1459811719.cd5778e739bfd469b5ca270d824663d394c5e7ca.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/nano/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/nano/nano-9999.ebuild X-VCS-Directories: app-editors/nano/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: cd5778e739bfd469b5ca270d824663d394c5e7ca X-VCS-Branch: master Date: Mon, 4 Apr 2016 23:15:32 +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-Archives-Salt: ea03ddba-7ae4-436f-851d-bf260379aa67 X-Archives-Hash: 98b94bba085dca3f7c5948a8527451f1 commit: cd5778e739bfd469b5ca270d824663d394c5e7ca Author: Mike Frysinger gentoo org> AuthorDate: Mon Apr 4 22:58:42 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Apr 4 23:15:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd5778e7 app-editors/nano: switch to git app-editors/nano/nano-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-editors/nano/nano-9999.ebuild b/app-editors/nano/nano-9999.ebuild index 58fa18e..50acfae 100644 --- a/app-editors/nano/nano-9999.ebuild +++ b/app-editors/nano/nano-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -6,8 +6,8 @@ EAPI="5" inherit eutils flag-o-matic if [[ ${PV} == "9999" ]] ; then - ESVN_REPO_URI="svn://svn.savannah.gnu.org/nano/trunk/nano" - inherit subversion autotools + EGIT_REPO_URI="git://git.sv.gnu.org/nano.git" + inherit git-r3 autotools else MY_P=${PN}-${PV/_} SRC_URI="http://www.nano-editor.org/dist/v${PV:0:3}/${MY_P}.tar.gz"