Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 Apr 2020 21:01:53 +0000 (UTC)
From:      Alan Somers <asomers@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r532045 - in head/shells/fish: . files
Message-ID:  <202004182101.03IL1rQx035014@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: asomers (src committer)
Date: Sat Apr 18 21:01:52 2020
New Revision: 532045
URL: https://svnweb.freebsd.org/changeset/ports/532045

Log:
  shells/fish: cherry-pick upstream fix for SVN performance
  
  Upstream bug #6681 causes fish to run _very_ slowly inside of large
  Subversion repositories.  The bug will be fixed in release 3.1.1.  But it's
  worthwhile to cherry-pick the fix since all FreeBSD developers use large
  Subversion repositories.
  
  https://github.com/fish-shell/fish-shell/issues/6681

Added:
  head/shells/fish/files/patch-share_functions_fish__vcs__prompt.fish   (contents, props changed)
Modified:
  head/shells/fish/Makefile

Modified: head/shells/fish/Makefile
==============================================================================
--- head/shells/fish/Makefile	Sat Apr 18 20:42:11 2020	(r532044)
+++ head/shells/fish/Makefile	Sat Apr 18 21:01:52 2020	(r532045)
@@ -3,6 +3,7 @@
 
 PORTNAME=	fish
 PORTVERSION=	3.1.0
+PORTREVISION=	1
 CATEGORIES=	shells
 MASTER_SITES=	https://github.com/fish-shell/fish-shell/releases/download/${PORTVERSION}/
 

Added: head/shells/fish/files/patch-share_functions_fish__vcs__prompt.fish
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/fish/files/patch-share_functions_fish__vcs__prompt.fish	Sat Apr 18 21:01:52 2020	(r532045)
@@ -0,0 +1,12 @@
+--- share/functions/fish_vcs_prompt.fish.orig	2020-04-18 20:32:19 UTC
++++ share/functions/fish_vcs_prompt.fish
+@@ -3,5 +3,8 @@ function fish_vcs_prompt --description "Print the prom
+     # This is so we don't try svn if git already worked.
+     fish_git_prompt
+     or fish_hg_prompt
+-    or fish_svn_prompt
++    # The svn prompt is disabled by default because it's quite slow on common svn repositories.
++    # To enable it uncomment it.
++    # You can also only use it in specific directories by checking $PWD.
++    # or fish_svn_prompt
+ end



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004182101.03IL1rQx035014>