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 912671381F3 for ; Fri, 13 Sep 2013 15:10:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 750FBE0B41; Fri, 13 Sep 2013 15:10:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ED2CCE0B41 for ; Fri, 13 Sep 2013 15:10:36 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D74C533EB9E for ; Fri, 13 Sep 2013 15:10:35 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2279) id A08372004C; Fri, 13 Sep 2013 15:10:34 +0000 (UTC) From: "Michal Gorny (mgorny)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mgorny@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/llvm: llvm-9999.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: llvm-9999.ebuild ChangeLog X-VCS-Directories: sys-devel/llvm X-VCS-Committer: mgorny X-VCS-Committer-Name: Michal Gorny Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130913151034.A08372004C@flycatcher.gentoo.org> Date: Fri, 13 Sep 2013 15:10:34 +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: 84e0dfbd-aaff-42d5-b1ff-fa3a124809cc X-Archives-Hash: c132fe9738b89692e117e4f1a4b3d846 mgorny 13/09/13 15:10:34 Modified: llvm-9999.ebuild ChangeLog Log: Add github LLVM mirror as git backup URL. Requested in bug #484748. (Portage version: 2.2.4/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!) Revision Changes Path 1.54 sys-devel/llvm/llvm-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild?rev=1.54&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild?rev=1.54&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild?r1=1.53&r2=1.54 Index: llvm-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild,v retrieving revision 1.53 retrieving revision 1.54 diff -u -r1.53 -r1.54 --- llvm-9999.ebuild 10 Sep 2013 08:22:20 -0000 1.53 +++ llvm-9999.ebuild 13 Sep 2013 15:10:34 -0000 1.54 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild,v 1.53 2013/09/10 08:22:20 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/llvm-9999.ebuild,v 1.54 2013/09/13 15:10:34 mgorny Exp $ EAPI=5 @@ -12,7 +12,8 @@ DESCRIPTION="Low Level Virtual Machine" HOMEPAGE="http://llvm.org/" SRC_URI="" -EGIT_REPO_URI="http://llvm.org/git/llvm.git" +EGIT_REPO_URI="http://llvm.org/git/llvm.git + https://github.com/llvm-mirror/llvm.git" LICENSE="UoI-NCSA" SLOT="0/${PV}" @@ -130,8 +131,10 @@ src_unpack() { if use clang; then - git-r3_fetch http://llvm.org/git/compiler-rt.git - git-r3_fetch http://llvm.org/git/clang.git + git-r3_fetch "http://llvm.org/git/compiler-rt.git + https://github.com/llvm-mirror/compiler-rt.git" + git-r3_fetch "http://llvm.org/git/clang.git + https://github.com/llvm-mirror/clang.git" fi git-r3_fetch 1.137 sys-devel/llvm/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.137&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?rev=1.137&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/llvm/ChangeLog?r1=1.136&r2=1.137 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v retrieving revision 1.136 retrieving revision 1.137 diff -u -r1.136 -r1.137 --- ChangeLog 10 Sep 2013 08:22:20 -0000 1.136 +++ ChangeLog 13 Sep 2013 15:10:34 -0000 1.137 @@ -1,6 +1,9 @@ # ChangeLog for sys-devel/llvm # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.136 2013/09/10 08:22:20 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/llvm/ChangeLog,v 1.137 2013/09/13 15:10:34 mgorny Exp $ + + 13 Sep 2013; Michał Górny llvm-9999.ebuild: + Add github LLVM mirror as git backup URL. Requested in bug #484748. 10 Sep 2013; Michał Górny llvm-9999.ebuild: Declare EGIT_REPO_URI to make smart-live-rebuild a bit happier.