From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id 92B503858C31 for ; Sat, 19 Aug 2023 12:30:46 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 92B503858C31 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from csb.redhat.com (deer0x03.wildebeest.org [172.31.17.133]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 81225302BBEC; Sat, 19 Aug 2023 14:30:43 +0200 (CEST) Received: by csb.redhat.com (Postfix, from userid 10916) id 4D634E674C; Sat, 19 Aug 2023 14:30:43 +0200 (CEST) From: Mark Wielaard To: buildbot@sourceware.org Cc: Mark Wielaard Subject: [PATCH] Point sourceware and gcc revlinks to cgit Date: Sat, 19 Aug 2023 14:30:36 +0200 Message-Id: <20230819123036.1791296-1-mark@klomp.org> X-Mailer: git-send-email 2.39.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-3035.7 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,KAM_SHORT,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --- builder/master.cfg | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/builder/master.cfg b/builder/master.cfg index 5d3b1f7..00d5c8c 100644 --- a/builder/master.cfg +++ b/builder/master.cfg @@ -5045,13 +5045,13 @@ c['caches'] = { # http://docs.buildbot.net/current/manual/configuration/global.html#revision-links # sourcewareRevLink = util.RevlinkMatch( - repo_urls=[r'git://sourceware.org/git/(.*)', - r'https://sourceware.org/git/(.*)'], - revlink=r'https://sourceware.org/git?p=\1;a=commitdiff;h=%s') + repo_urls=[r'git://sourceware.org/git/(.*).git', + r'https://sourceware.org/git/(.*).git'], + revlink=r'https://sourceware.org/cgit/\1/commit/?id=%s') gccRevLink = util.RevlinkMatch( - repo_urls=[r'git://gcc.gnu.org/git/(.*)', - r'https://gcc.gnu.org/git/(.*)'], - revlink=r'https://gcc.gnu.org/git?p=\1;a=commitdiff;h=%s') + repo_urls=[r'git://gcc.gnu.org/git/(.*).git', + r'https://gcc.gnu.org/git/(.*).git'], + revlink=r'https://gcc.gnu.org/cgit/\1/commit/?id=%s') wildebeestRevLink = util.RevlinkMatch( repo_urls=[r'git://code.wildebeest.org/(.*).git', r'https://code.wildebeest.org/git/(.*)'], -- 2.39.3