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 3D93B138CC5 for ; Mon, 4 May 2015 09:51:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0BABE0930; Mon, 4 May 2015 09:51:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53DD7E0930 for ; Mon, 4 May 2015 09:51:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EBDC6340A38 for ; Mon, 4 May 2015 09:51:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5329A993 for ; Mon, 4 May 2015 09:51:46 +0000 (UTC) From: "Mike Pagano" 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 Pagano" Message-ID: <1430733082.bd9a888e856ee47a7b09907433265bd1e85569a4.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:genpatches-misc commit in: repo-doc/, web/ X-VCS-Repository: proj/linux-patches X-VCS-Files: repo-doc/00_intro repo-doc/10_scripts web/makesite.pl X-VCS-Directories: web/ repo-doc/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: bd9a888e856ee47a7b09907433265bd1e85569a4 X-VCS-Branch: genpatches-misc Date: Mon, 4 May 2015 09:51:46 +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: 9b574890-f0bf-4558-bf68-513c1bccfb20 X-Archives-Hash: c0bd0df896128be2fd807d5725301054 commit: bd9a888e856ee47a7b09907433265bd1e85569a4 Author: Mike Pagano gentoo org> AuthorDate: Mon May 4 09:51:22 2015 +0000 Commit: Mike Pagano gentoo org> CommitDate: Mon May 4 09:51:22 2015 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=bd9a888e Fix repo URL for auto site creation. repo-doc/00_intro | 2 +- repo-doc/10_scripts | 2 +- web/makesite.pl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/repo-doc/00_intro b/repo-doc/00_intro index ccbe1a2..fe1bad9 100644 --- a/repo-doc/00_intro +++ b/repo-doc/00_intro @@ -16,5 +16,5 @@ Checking out the working repository Most of the time, you will only need to work under trunk - there is no point checking out all the tagged and historical branches. -# git clone git+ssh://git@git.overlays.gentoo.org/proj/linux-patches.git +# git clone git+ssh://git@git.gentoo.org/proj/linux-patches.git diff --git a/repo-doc/10_scripts b/repo-doc/10_scripts index e73eb47..2227cb9 100644 --- a/repo-doc/10_scripts +++ b/repo-doc/10_scripts @@ -36,7 +36,7 @@ LOCAL_PATCHES_TRUNK="/home/mike/gentoo/linux-patches" LOCAL_TMP="/tmp" # Remote repository configuration -REMOTE_BASE="git+ssh://git@git.overlays.gentoo.org/proj/linux-patches.git" +REMOTE_BASE="git+ssh://git@git.gentoo.org/proj/linux-patches.git" TARBALL_BASENAME="genpatches" KERNEL_NAME="genpatches" diff --git a/web/makesite.pl b/web/makesite.pl index 766bfef..d389f28 100755 --- a/web/makesite.pl +++ b/web/makesite.pl @@ -19,7 +19,7 @@ print "makesite.pl called with arguments: @ARGV \n"; my $cmd = 'rm -rf /tmp/linux-patches'; $output = `$cmd`; -$cmd = 'git clone git+ssh://git@git.overlays.gentoo.org/proj/linux-patches.git /tmp/linux-patches'; +$cmd = 'git clone git+ssh://git@git.gentoo.org/proj/linux-patches.git /tmp/linux-patches'; $output = `$cmd`; make_index_page();