From owner-dev-commits-src-main@freebsd.org Wed Jan 20 08:29:54 2021 Return-Path: Delivered-To: dev-commits-src-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 788594EE50C; Wed, 20 Jan 2021 08:29:54 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from maybe.home.utahime.org (gate.home.utahime.org [183.180.29.210]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4DLJc20KfYz3swL; Wed, 20 Jan 2021 08:29:53 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by maybe.home.utahime.org (Postfix) with ESMTPS id B9CBF4C9D0; Wed, 20 Jan 2021 17:29:43 +0900 (JST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=utahime.org; s=maybe2019112701; t=1611131383; bh=tQgbemXDS/VOIIJIYluLFcEknqqDHzZIRfS2pa8pIds=; h=Date:To:Cc:Subject:From:In-Reply-To:References; b=b+nJkgRdHtqRBIc0NQzepQ2qCkYF1D12yRHj+q0ClMRojvdze3WWzTZTzhknKFFmZ 6lATrYlUOOpHezBKRChDducjcHlwZ1jouj+KqZGK/IBCPDtJNC/LoF6leMxlgT69xs /l/NjecQz61ZuNOqqEultnChpMZJIyoNYELx5SU9crTMV86Y3B9xj+cPjSGPRP6gEu qfx1kd5S2u/eo9Ta+Q5OL6Nu5YpdG7Oo1kf50QuISo7qONYrtbzmPRvgwSqrvZh13F EOgzN+cz3ocKYTe+yIFf7d7pikLG0qJqSGiMsXxBr6ma+iBsar6hF/zXv/hVCdzH/a 7GwmqDMPW7b8g== Received: from localhost (rolling.home.utahime.org [192.168.174.11]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by eastasia.home.utahime.org (Postfix) with ESMTPSA id 1708348673; Wed, 20 Jan 2021 17:29:43 +0900 (JST) X-Virus-Status: Clean X-Virus-Scanned: clamav-milter 0.103.0 at eastasia.home.utahime.org Date: Wed, 20 Jan 2021 17:29:33 +0900 (JST) Message-Id: <20210120.172933.1039050893851306070.yasu@utahime.org> To: gjb@FreeBSD.org Cc: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: Re: git: 041b28524a3c - main - release: Add workaround to use SVN for ports From: Yasuhiro Kimura In-Reply-To: <202101191838.10JIcorS044601@gitrepo.freebsd.org> References: <202101191838.10JIcorS044601@gitrepo.freebsd.org> X-Mailer: Mew version 6.8 on Emacs 27.1 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4DLJc20KfYz3swL X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: dev-commits-src-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for the main branch of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jan 2021 08:29:54 -0000 From: Glen Barber Subject: git: 041b28524a3c - main - release: Add workaround to use SVN for ports Date: Tue, 19 Jan 2021 18:38:50 GMT > The branch main has been updated by gjb: > > URL: https://cgit.FreeBSD.org/src/commit/?id=041b28524a3c69ff6e893067df156c3faabcac9a > > commit 041b28524a3c69ff6e893067df156c3faabcac9a > Author: Glen Barber > AuthorDate: 2021-01-19 18:38:33 +0000 > Commit: Glen Barber > CommitDate: 2021-01-19 18:38:33 +0000 > > release: Add workaround to use SVN for ports > > The ports tree is scheduled to be converted from Subversion to Git > after the currently-scheduled 13.0-RELEASE, so the source of truth > will be Subversion for the ports tree. > > Implement a hack specifically for this case. This change results in accessing 'svn://svn.freebsd.org/ports/head/head' and failing to check out ports tree. --- Yasuhiro Kimura