git: 69b6abb7b2bb - main - release: remove logic to locate the svn{, lite} binary

Glen Barber gjb at FreeBSD.org
Wed May 12 14:48:43 UTC 2021


The branch main has been updated by gjb:

URL: https://cgit.FreeBSD.org/src/commit/?id=69b6abb7b2bb2b07600b27660d864ddcd0b28cec

commit 69b6abb7b2bb2b07600b27660d864ddcd0b28cec
Author:     Glen Barber <gjb at FreeBSD.org>
AuthorDate: 2021-05-12 14:32:03 +0000
Commit:     Glen Barber <gjb at FreeBSD.org>
CommitDate: 2021-05-12 14:32:03 +0000

    release: remove logic to locate the svn{,lite} binary
    
    Sponsored by:   Rubicon Communications, LLC ("Netgate")
---
 release/release.sh | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/release/release.sh b/release/release.sh
index 87e22e669fd1..a448361b86a6 100755
--- a/release/release.sh
+++ b/release/release.sh
@@ -65,17 +65,6 @@ env_setup() {
 		[ ! -z "${VCSCMD}" ] && break 2
 	done
 
-	# Find the Subversion binary to use.  This is a workaround to use
-	# the source of truth for the ports tree, as the conversion to Git
-	# is targeted to occur slightly after the currently-scheduled 13.0
-	# release.
-	for _dir in /usr/bin /usr/local/bin; do
-		for _svn in svn svnlite; do
-			[ -x "${_dir}/${_svn}" ] && SVNCMD="${_dir}/${_svn}"
-			[ ! -z "${SVNCMD}" ] && break 2
-		done
-	done
-
 	if [ -z "${VCSCMD}" -a -z "${NOGIT}" ]; then
 		echo "*** The devel/git port/package is required."
 		exit 1


More information about the dev-commits-src-all mailing list